From e37ee8c7cde2eefb295b219ffddaee0626cbdb53 Mon Sep 17 00:00:00 2001 From: xiepengfei Date: Thu, 16 Jan 2025 21:25:38 +0800 Subject: [PATCH] fix: Fixed the issue that Chinese parts could not be selected Fixed the issue that Chinese parts could not be selected Bug: https://pms.uniontech.com/bug-view-300521.html, https://pms.uniontech.com/bug-view-300603.html Log: Fixed the issue that Chinese parts could not be selected --- src/music-player/dialogs/FileDialog.qml | 5 +- src/music-player/mainwindow/MainWindow.qml | 4 + src/music-player/playlist/CurrentPlayList.qml | 2 + translations/deepin-music_ady.ts | 773 ++++++++++++------ translations/deepin-music_af.ts | 699 +++++++++++----- translations/deepin-music_am_ET.ts | 515 +++++++++--- translations/deepin-music_ar.ts | 391 +++++++-- translations/deepin-music_az.ts | 299 ++++++- translations/deepin-music_bg.ts | 497 ++++++++--- translations/deepin-music_bn.ts | 667 ++++++++++----- translations/deepin-music_bo.ts | 303 ++++++- translations/deepin-music_bqi.ts | 773 ++++++++++++------ translations/deepin-music_br.ts | 429 ++++++++-- translations/deepin-music_ca.ts | 299 ++++++- translations/deepin-music_cs.ts | 303 ++++++- translations/deepin-music_da.ts | 389 +++++++-- translations/deepin-music_de.ts | 331 +++++++- translations/deepin-music_el.ts | 431 ++++++++-- translations/deepin-music_en.ts | 265 +++++- translations/deepin-music_en_AU.ts | 673 ++++++++++----- translations/deepin-music_en_US.ts | 283 ++++++- translations/deepin-music_eo.ts | 677 ++++++++++----- translations/deepin-music_es.ts | 303 ++++++- translations/deepin-music_fa.ts | 555 +++++++++---- translations/deepin-music_fi.ts | 299 ++++++- translations/deepin-music_fil.ts | 763 +++++++++++------ translations/deepin-music_fr.ts | 361 ++++++-- translations/deepin-music_gl_ES.ts | 377 +++++++-- translations/deepin-music_he.ts | 515 +++++++++--- translations/deepin-music_hi_IN.ts | 507 +++++++++--- translations/deepin-music_hr.ts | 369 +++++++-- translations/deepin-music_hu.ts | 299 ++++++- translations/deepin-music_hy.ts | 603 ++++++++++---- translations/deepin-music_id.ts | 445 +++++++--- translations/deepin-music_it.ts | 361 ++++++-- translations/deepin-music_ja.ts | 455 ++++++++--- translations/deepin-music_ka.ts | 725 ++++++++++------ translations/deepin-music_km_KH.ts | 741 +++++++++++------ translations/deepin-music_ko.ts | 381 +++++++-- translations/deepin-music_krl.ts | 773 ++++++++++++------ translations/deepin-music_ku.ts | 749 +++++++++++------ translations/deepin-music_ku_IQ.ts | 599 ++++++++++---- translations/deepin-music_ky.ts | 755 +++++++++++------ translations/deepin-music_lt.ts | 445 +++++++--- translations/deepin-music_ml.ts | 715 ++++++++++------ translations/deepin-music_mn.ts | 583 +++++++++---- translations/deepin-music_mr.ts | 773 ++++++++++++------ translations/deepin-music_ms.ts | 303 ++++++- translations/deepin-music_nb.ts | 437 ++++++++-- translations/deepin-music_ne.ts | 715 ++++++++++------ translations/deepin-music_nl.ts | 299 ++++++- translations/deepin-music_pl.ts | 299 ++++++- translations/deepin-music_ps.ts | 751 +++++++++++------ translations/deepin-music_pt.ts | 303 ++++++- translations/deepin-music_pt_BR.ts | 373 +++++++-- translations/deepin-music_ro.ts | 385 +++++++-- translations/deepin-music_ru.ts | 363 ++++++-- translations/deepin-music_ru_UA.ts | 773 ++++++++++++------ translations/deepin-music_sc.ts | 773 ++++++++++++------ translations/deepin-music_si.ts | 695 +++++++++++----- translations/deepin-music_sk.ts | 495 ++++++++--- translations/deepin-music_sl.ts | 299 ++++++- translations/deepin-music_sq.ts | 299 ++++++- translations/deepin-music_sr.ts | 373 +++++++-- translations/deepin-music_sv.ts | 501 +++++++++--- translations/deepin-music_sw.ts | 713 +++++++++++----- translations/deepin-music_ta.ts | 687 +++++++++++----- translations/deepin-music_th.ts | 727 ++++++++++------ translations/deepin-music_tlh.ts | 773 ++++++++++++------ translations/deepin-music_tr.ts | 363 ++++++-- translations/deepin-music_ug.ts | 363 ++++++-- translations/deepin-music_uk.ts | 299 ++++++- translations/deepin-music_ur.ts | 773 ++++++++++++------ translations/deepin-music_vi.ts | 669 ++++++++++----- translations/deepin-music_zh_CN.ts | 265 +++++- translations/deepin-music_zh_HK.ts | 299 ++++++- translations/deepin-music_zh_TW.ts | 297 ++++++- 77 files changed, 28138 insertions(+), 8985 deletions(-) diff --git a/src/music-player/dialogs/FileDialog.qml b/src/music-player/dialogs/FileDialog.qml index 79b6f0f12..dc8f9158b 100644 --- a/src/music-player/dialogs/FileDialog.qml +++ b/src/music-player/dialogs/FileDialog.qml @@ -12,13 +12,16 @@ FileDialog { folder: StandardPaths.writableLocation(StandardPaths.MusicLocation) nameFilters: { var suffix = Presenter.supportedSuffixList() - var string = suffix[0] + var string = qsTr("All Music") + string += "(" + string += suffix[0] var suffixList = [] for (var i = 1; i < suffix.length; i++) { string += " " string += suffix[i] } + string += ")" suffixList.push(string) //console.log(string) diff --git a/src/music-player/mainwindow/MainWindow.qml b/src/music-player/mainwindow/MainWindow.qml index 80e473a13..d3ee5d3ab 100644 --- a/src/music-player/mainwindow/MainWindow.qml +++ b/src/music-player/mainwindow/MainWindow.qml @@ -247,6 +247,10 @@ ApplicationWindow { playlistLoader.item.playlistHided.connect(function(){ toolbox.updatePlaylistBtnStatus(false) }) + playlistLoader.item.playlistEmpty.connect(function(){ + if (isLyricShow) + lrcWindowLoader.item.lyricWindowUp() + }) toolbox.updatePlayControlBtnStatus() } } diff --git a/src/music-player/playlist/CurrentPlayList.qml b/src/music-player/playlist/CurrentPlayList.qml index 0b5a4acf9..70358b26d 100644 --- a/src/music-player/playlist/CurrentPlayList.qml +++ b/src/music-player/playlist/CurrentPlayList.qml @@ -20,6 +20,7 @@ CurrentFloatingPanel { property Menu selectMenu: MulitSelectMenu{pageHash: "play"} property MusicInfoDialog infoDialog: MusicInfoDialog{musicData: playlistView.model.get(0)} signal playlistHided() + signal playlistEmpty() id: playlistRoot visible: isPlaylistShow @@ -136,6 +137,7 @@ CurrentFloatingPanel { } onClicked: { + playlistEmpty() listmodel.clear() Presenter.clearPlayList("play") } diff --git a/translations/deepin-music_ady.ts b/translations/deepin-music_ady.ts index 47bc002af..1cc4aa559 100644 --- a/translations/deepin-music_ady.ts +++ b/translations/deepin-music_ady.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_af.ts b/translations/deepin-music_af.ts index bd8f1ee35..3b82b9618 100644 --- a/translations/deepin-music_af.ts +++ b/translations/deepin-music_af.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Kanselleer @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel Kanselleer + Confirm Bevestig @@ -309,63 +382,76 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Verwyder + Cancel Kanselleer @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Verwyder + Cancel Kanselleer @@ -400,105 +492,138 @@ EqualizerDialog + Custom Verspersoonlik + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save Stoor + Reset Terugstel + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musiek + Play/Pause Speel/Pouse + Previous Vorige + Next Volgende + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type Tipe + Size Grootte + Duration - + + Path - + MusicMoreMenu + Pause Pouse + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Musiek + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Musiek + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause Speel/Pouse + Previous Vorige + Next Volgende + Volume up Volume op + Volume down Volume af + Favorite - + + Cancel Kanselleer + Replace Vervang + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause Speel/Pouse + Previous Vorige + Next Volgende + Volume Up - + + Volume Down - + + Mute Demp + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete Verwyder @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom Verspersoonlik + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous Vorige + Play/Pause Speel/Pouse + Next Volgende + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music Musiek + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - Sluit + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_am_ET.ts b/translations/deepin-music_am_ET.ts index e4cbe99d4..761a5a093 100644 --- a/translations/deepin-music_am_ET.ts +++ b/translations/deepin-music_am_ET.ts @@ -1,86 +1,105 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album አልበም + Artist ከያኒ + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title አርእስት + Artist ከያኒ + Duration የሚፈጀው ጊዜ @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title አርእስት + Artist ከያኒ + Duration የሚፈጀው ጊዜ @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title አርእስት + Artist ከያኒ + Album አልበም + Duration የሚፈጀው ጊዜ @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title አርእስት + Album አልበም + Duration የሚፈጀው ጊዜ @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel መሰረዣ @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray ወደ ስርአቱ ትሪ ማሳነሻ + Exit መውጫ + Do not ask again - + + Cancel መሰረዣ + Confirm ማረጋገጫ @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty ባዶ @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete ማጥፊያ + Cancel መሰረዣ @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete ማጥፊያ + Cancel መሰረዣ @@ -400,105 +492,138 @@ EqualizerDialog + Custom ማስተካከያ + Monophony - + + Classical ክላሲካል + Club ክለብ + Dance ዳንስ + Full Bass ሙሉ ባስ + Full Bass and Treble ሙሉ ባስ እና ቴሬብል + Full Treble ሙሉ ቴሬብል + Headphones በጆሮ ማድመጫ + Hall - + + Live በቀጥታ + Party ፓርቲ + Pop ፖፕ + Reggae ሬጌ + Rock ሮክ + Ska ስካ + Soft ለስላሳ + Soft Rock ለስላሳ ሮክ + Techno - + + Equalizer ማስተካከያ + Save ማስቀመጫ + Reset እንደ ነበር መመለሻ + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK እሺ @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites የምወዳቸው + Create new playlist - + + New playlist አዲስ የ ማጫወቻ ዝርዝር @@ -525,80 +654,98 @@ LyricPage + Artist ከያኒ + Album አልበም + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music ሙዚቃ + Play/Pause ማጫወቻ/ማስቆሚያ + Previous ቀደም ያለው + Next ይቀጥሉ + Exit መውጫ + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist ከ ዝርዝር ማጫወቻ ማስወገጃ + Delete from local disk ከ አካባቢ ዲስክ ውስጥ ማጥፊያ @@ -606,30 +753,37 @@ MusicBaselistview + Library መጻህፍት ቤት + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist አዲስ የ ማጫወቻ ዝርዝር @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title አርእስት + Artist ከያኒ + Album አልበም + Type አይነት + Size መጠን + Duration የሚፈጀው ጊዜ + Path መንገድ @@ -675,34 +837,42 @@ MusicMoreMenu + Pause ማስቆሚያ + Play ማጫወቻ + Add to - + + Open in file manager - + + Remove from playlist ከ ዝርዝር ማጫወቻ ማስወገጃ + Delete from local disk ከ አካባቢ ዲስክ ውስጥ ማጥፊያ + Encoding Encoding + Song info የ ዘፈን መረጃ @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music ሙዚቃ + Unknown album ያልታወቀ አልበም + Unknown artist ያልታወቀ ከያኒ @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results ምንም መፈለጊያ የለም + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music ሙዚቃ + Artist ከያኒ + Album አልበም @@ -779,157 +964,195 @@ SettingsDialog + Basic መሰረታዊ + Play ማጫወቻ + Autoplay በራሱ ማጫወቻ + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window ዋናውን መስኮት መዝጊያ + Minimize to system tray ወደ ስርአቱ ትሪ ማሳነሻ + Exit መውጫ + Ask me always - + + Shortcuts አቋራጭ + Play/Pause ማጫወቻ/ማስቆሚያ + Previous ቀደም ያለው + Next ይቀጥሉ + Volume up መጠን መጨመሪያ + Volume down መጠን መቀነሻ + Favorite የምወዳቸው + Cancel መሰረዣ + Replace መቀየሪያ + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play ማጫወቻ + Songs - + + Playlists - + + Settings ማሰናጃዎች + Play/Pause ማጫወቻ/ማስቆሚያ + Previous ቀደም ያለው + Next ይቀጥሉ + Volume Up መጠን መጨመሪያ + Volume Down መጠን መቀነሻ + Mute መቀነሻ + Favorite የምወዳቸው + Unfavorite - + + Song info የ ዘፈን መረጃ + New playlist አዲስ የ ማጫወቻ ዝርዝር + Add music - + + Rename playlist - + + Remove from playlist ከ ዝርዝር ማጫወቻ ማስወገጃ + Help እርዳታ + Display shortcuts አቋራጭ ማሳያ @@ -937,29 +1160,35 @@ Shortcuts + New playlist አዲስ የ ማጫወቻ ዝርዝር + My Favorites - + SidebarMenu + Play ማጫወቻ + Add songs - + + Rename እንደገና መሰየሚያ + Delete ማጥፊያ @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom ማስተካከያ + + + Date added - + + + Album አልበም + + Artist ከያኒ + Title አርእስት @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All ሁሉንም ማጫወቻ @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All ሁሉንም ማጫወቻ @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle መበወዣ + Unfavorite - + + Favorite የምወዳቸው + My Favorites - + + Previous ቀደም ያለው + Play/Pause ማጫወቻ/ማስቆሚያ + Next ይቀጥሉ + Lyrics ግጥሞች + Play Queue - + WindowTitlebar + Add playlist - + + New playlist አዲስ የ ማጫወቻ ዝርዝር + + Add music - + + Equalizer ማስተካከያ + Settings ማሰናጃዎች + Music ሙዚቃ + Music is a local music player with beautiful design and simple functions. - + + Version: እትም - Quit - ማጥፊያ - - + Previous page - + + Next page - + + Search መፈለጊያ - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ar.ts b/translations/deepin-music_ar.ts index eca2b7984..ceaf179bc 100644 --- a/translations/deepin-music_ar.ts +++ b/translations/deepin-music_ar.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 مقطع صوتي + %1 songs %1 مقاطع صوتية @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album الألبوم + Artist فنان + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title عنوان + Artist فنان + Duration المدة @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites مفضلاتي @@ -95,14 +115,17 @@ AlbumSublistView + Title عنوان + Artist فنان + Duration المدة @@ -110,10 +133,12 @@ AlbumView + Albums الإلبومات + %1 albums - %2 songs %1 إلبومات - %2 مقاطع صوتية @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 مقطع صوتي + %1 songs %1 مقاطع صوتية @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites مفضلاتي @@ -174,18 +220,22 @@ AllMusicListView + Title عنوان + Artist فنان + Album الألبوم + Duration المدة @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 مقطع صوتي + %1 songs %1 مقاطع صوتية @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites مفضلاتي @@ -245,14 +305,17 @@ ArtistSublistView + Title عنوان + Album الألبوم + Duration المدة @@ -260,10 +323,12 @@ ArtistView + Artists الفنّانين + %1 artists - %2 songs %1 فنّانين - %2 مقاطع صوتية @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed - + + Cancel إلغاء @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray تصغير إلى منطقة اﻹعلام + Exit خروج + Do not ask again عدم العرض مرة أخرى + Cancel إلغاء + Confirm تأكيد @@ -309,18 +382,22 @@ CurrentPlayList + Play queue تشغيل المقاطع بالترتيب + 1 song 1 مقطع صوتي + %1 songs %1 مقاطع صوتية + Empty فارغ @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites مفضلاتي @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites مفضلاتي + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? هل أنت متأكد من حذف %1؟ + Are you sure you want to delete the selected %1 songs? هل أنت متأكد من حذف الأغاني %1 المختارة؟ + The song files contained will also be deleted سيتم أيضًا حذف المقاطع الصوتية الموجودة + Delete حذف + Cancel إلغاء @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? هل أنت متأكد من حذف %1؟ + Are you sure you want to remove the selected %1 songs? هل أنت متأكد من حذف المقاطع الصوتية الـ %1 المحددة؟ + Are you sure you want to delete this playlist? هل أنت متأكد من حذف هذه القائمة؟ + Remove إزالة + Delete حذف + Cancel إلغاء @@ -400,105 +492,138 @@ EqualizerDialog + Custom مخصص + Monophony - + + Classical تقليدي + Club نادي + Dance رقص + Full Bass صوت عميق كامل + Full Bass and Treble صوت عميق كامل وثلاثي + Full Treble ثلاثي كامل + Headphones السماعات + Hall - + + Live مباشر + Party جزئي + Pop بوب + Reggae ريغي + Rock روك + Ska سكا + Soft هادئ + Soft Rock روك هادئ + Techno Tec + Equalizer تعادل + Save حفظ + Reset إعادة تعيين + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found فشل الاستيراد، لم يتم إيجاد مقطع صوتي صالح + OK موافق @@ -506,18 +631,22 @@ ImportMenu + Play queue تشغيل المقاطع بالترتيب + My favorites مفضلاتي + Create new playlist - + + New playlist قائمة تشغيل جديدة @@ -525,80 +654,98 @@ LyricPage + Artist فنان + Album الألبوم + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music موسيقى + Play/Pause تشغيل/إيقاف مؤقت + Previous السابق + Next التالي + Exit خروج + Already added to the playlist تم إضافتة مسبقاً إلى قائمة التشغيل + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites مفضلاتي + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist إزالة من قائمة التشغيل + Delete from local disk حذف من القرص المحلي @@ -606,30 +753,37 @@ MusicBaselistview + Library المكتبة + Albums الإلبومات + Artists الفنّانين + All Songs - + + Playlists قوائم التشغيل + Create playlist - + + New playlist قائمة تشغيل جديدة @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites مفضلاتي @@ -644,30 +799,37 @@ MusicInfoDialog + Title عنوان + Artist فنان + Album الألبوم + Type النوع + Size الحجم + Duration المدة + Path مسار @@ -675,34 +837,42 @@ MusicMoreMenu + Pause إيقاف مؤقت + Play تشغيل + Add to - + + Open in file manager فتح في مدير الملفات + Remove from playlist إزالة من قائمة التشغيل + Delete from local disk حذف من القرص المحلي + Encoding الترميز + Song info معلومات الاغنية @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. موسيقى: هو مشغّل مقاطع صوتية محلي مع تصميم جميل ووظائف بسيطة. + Music موسيقى + Unknown album ألبوم غير معروف + Unknown artist فنان غير معروف @@ -729,14 +903,17 @@ SearchResultDialog + Songs الاغاني + Artists الفنّانين + Albums الإلبومات @@ -744,34 +921,42 @@ SearchResultWindow + No search results لا توجد نتائج للبحث + Search Results نتائج البحث + %1 albums - %2 songs %1 إلبومات - %2 مقاطع صوتية + 1 album - 1 song 1 إلبوم - 1 مقطع صوتي + %1 album - %2 songs %1 إلبوم - %2 مقاطع صوتية + Music موسيقى + Artist فنان + Album الألبوم @@ -779,157 +964,195 @@ SettingsDialog + Basic أساسي + Play تشغيل + Autoplay تشغيل تلقائي + Remember playback position on exit - + + Enable fade in/out تفعيل تأثير دخول/خروج + Close Main Window إغلاق النافذة الرئيسية + Minimize to system tray تصغير إلى منطقة اﻹعلام + Exit خروج + Ask me always - + + Shortcuts الإختصارات + Play/Pause تشغيل/إيقاف مؤقت + Previous السابق + Next التالي + Volume up رفع الصوت + Volume down خفض الصوت + Favorite المفضلة + Cancel إلغاء + Replace استبدال + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play تشغيل + Songs الاغاني + Playlists قوائم التشغيل + Settings الإعدادات + Play/Pause تشغيل/إيقاف مؤقت + Previous السابق + Next التالي + Volume Up رفع الصوت + Volume Down خفض الصوت + Mute صامت + Favorite المفضلة + Unfavorite غير المفضلة + Song info معلومات الاغنية + New playlist قائمة تشغيل جديدة + Add music إضافة مقاطع صوتية + Rename playlist إعادة تسمية قائمة التشغيل + Remove from playlist إزالة من قائمة التشغيل + Help مساعدة + Display shortcuts عرض الإختصارات @@ -937,10 +1160,12 @@ Shortcuts + New playlist قائمة تشغيل جديدة + My Favorites مفضلاتي @@ -948,18 +1173,22 @@ SidebarMenu + Play تشغيل + Add songs - + + Rename إعادة تسمية + Delete حذف @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom مخصص + + + Date added - + + + Album الألبوم + + Artist فنان + Title عنوان @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 مقطع صوتي + %1 songs %1 مقاطع صوتية + Play All تشغيل الكل @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All تشغيل الكل @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop تكرار القائمة + Single loop تكرار مفرد + Shuffle خلط + Unfavorite غير المفضلة + Favorite المفضلة + My Favorites مفضلاتي + Previous السابق + Play/Pause تشغيل/إيقاف مؤقت + Next التالي + Lyrics كلمات + Play Queue تشغيل المقاطع بالترتيب @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist أضف قائمة تشغيل + New playlist قائمة تشغيل جديدة + + Add music إضافة مقاطع صوتية + Equalizer تعادل + Settings الإعدادات + Music موسيقى + Music is a local music player with beautiful design and simple functions. موسيقى: هو مشغّل مقاطع صوتية محلي مع تصميم جميل ووظائف بسيطة. + Version: الإصدار : - Quit - خروج - - + Previous page - + + Next page - + + Search بحث - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_az.ts b/translations/deepin-music_az.ts index 87bdbfa8d..f7ffba018 100644 --- a/translations/deepin-music_az.ts +++ b/translations/deepin-music_az.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Mahnı əlavə edin + Open Folders Qovluqları açın + Drag music files here or Musiqi fayllarını buraya atın və ya - scan the Music directory - Musiqi qovluğu tərkibini axtar + + scan the Music directory + Musiqi qovluğundakıları axtarın AlbumGridDelegate + 1 song 1 mahnı + %1 songs %1 mahnı @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Albom + Artist İfaçı + Tracks Mahnılar + Date added Tarix əlavə olundu @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Təfərrüatlara bax + Play all Hamısını oxut + Add to Əlavə edin @@ -73,14 +89,17 @@ AlbumSublist + Title Başlıq + Artist İfaçı + Duration Müddət @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mənim sevimlilərim @@ -95,14 +115,17 @@ AlbumSublistView + Title Başlıq + Artist İfaçı + Duration Müddət @@ -110,10 +133,12 @@ AlbumView + Albums Albomlar + %1 albums - %2 songs %1 albom - %2 mahnı @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Mahnı əlavə edin + Open Folders Qovluqları açın + Drag music files here or Musiqi fayllarını buraya atın və ya - Your favorite songs will be displayed here. - Sevimli mahnılarınız burada görünəcək. + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - Mahnını "Seçilmişlər" siyahısına əlavə etmək üçün" ♥️ "nişanına vurun + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Hələlik mahnı yoxdur. Siyahıya mahnı əlavə etmək üçün" ➕ "nişanına vurun. + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory Musiqi qovluğundakıları axtarın @@ -152,14 +194,17 @@ AllMusicList + All Songs Bütün mahnılar + 1 song 1 mahnı + %1 songs %1 mahnı @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mənim sevimlilərim @@ -174,18 +220,22 @@ AllMusicListView + Title Başlıq + Artist İfaçı + Album Albom + Duration Müddət @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Mahnı əlavə edin + Open Folders Qovluqları açın + Drag music files here or Musiqi fayllarını buraya atın və ya - scan the Music directory - Musiqi qovluğu tərkibini axtar + + scan the Music directory + Musiqi qovluğundakıları axtarın ArtistGridDelegate + 1 song 1 mahnı + %1 songs %1 mahnı @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Təfərrüatlara bax + Play all Hamısını oxut + Add to Əlavə edin @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Mənim sevimlilərim @@ -245,14 +305,17 @@ ArtistSublistView + Title Başlıq + Album Albom + Duration Müddət @@ -260,10 +323,12 @@ ArtistView + Artists İfaçılar + %1 artists - %2 songs %1 ifaçı - %2 mahnı @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD çıxarıldı + Cancel İmtina @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Nə edəcəyinizi seçin + Minimize to system tray Sistem çubuğuna yığmaq + Exit Çıxış + Do not ask again Yenidən soruşulmasın + Cancel İmtina + Confirm Təsdiqlə @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Oxutma növbəsi + 1 song 1 mahnı + %1 songs %1 mahnı + Empty Boş @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mənim sevimlilərim @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Mənim sevimlilərim + CD playlist CD-dəki mahnı siyahısı + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? %1 silmək istədiyinizə əminsiniz? + Are you sure you want to delete the selected %1 songs? Seçilmiş %1 mahnını silmək istədiyinizə əminsiniz? + The song files contained will also be deleted Həmçinin tərkibindəki mahnı faylları siliniəcəkdir + Delete Sil + Cancel İmtina @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? %1 silmək istədiyinizə əminsiniz? + Are you sure you want to remove the selected %1 songs? Seçilmiş %1 mahnını silmək istədiyinizə əminsiniz? + Are you sure you want to delete this playlist? Bu mahnı siyahısını silmək istədiyinizə əminsiniz? + Remove Silmək + Delete Sil + Cancel İmtina @@ -400,105 +492,138 @@ EqualizerDialog + Custom Şəxsi + Monophony Tək tonlu + Classical Klassik + Club Klub + Dance Rəqs + Full Bass Aşağı tezlik + Full Bass and Treble Aşağı və yuxarı tezlik + Full Treble Yüksək tezlik + Headphones Qulaqlıq + Hall Geniş otaq + Live Canlı + Party Zİyafət + Pop Pop + Reggae Reqqi + Rock Rok + Ska Ska + Soft Yumşaq + Soft Rock Yumşaq rok + Techno Texno + Equalizer Ekvalayzer + Save Saxla + Reset Sıfırlayın + Preamplifier Ön gücləndirici + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found İdxal etmək alınmadı, düzgün musiqi faylı tapılmadı + OK OLDU @@ -506,18 +631,22 @@ ImportMenu + Play queue Oxutma növbəsi + My favorites Mənim sevimlilərim + Create new playlist Yeni siyahı yaradın + New playlist Yeni mahnı siyahısı @@ -525,18 +654,22 @@ LyricPage + Artist İfaçı + Album Albom + No lyrics found Mahnının sözləri tapılmadı + Please put the lyric file (same name as the song) and the song file in the same folder Lütfən mahnı sözləri olan faylı (lyric faylının adı mahnının adı ilə eyni olmalıdır) və mahnını eyni qovluğa yerləşdirin @@ -544,46 +677,57 @@ MainWindow + Music Musiqi + Play/Pause Oxut/Fasilə + Previous Əvvəlki + Next Sonrakı + Exit Çıxış + Already added to the playlist Artıq mahnı siyahısına əlavə edilib + Added to "%1" "%1"-a əlavə et + Removed from "My Favorites" "Seçilmişlər" siyahısından çıxart + A disc is connected Disk qoşuldu + My Favorites Mənim sevimlilərim + All Songs Bütün mahnılar @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Əlavə edin + Remove from playlist Oynatma siyahısından çıxart + Delete from local disk Yerli diskdən silin @@ -606,30 +753,37 @@ MusicBaselistview + Library Kitabxana + Albums Albomlar + Artists İfaçılar + All Songs Bütün mahnılar + Playlists Mahnı siyahıları + Create playlist Mahnı siyahısı yarat + New playlist Yeni mahnı siyahısı @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mənim sevimlilərim @@ -644,30 +799,37 @@ MusicInfoDialog + Title Başlıq + Artist İfaçı + Album Albom + Type Növ + Size Ölçü + Duration Müddət + Path Yol @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Fasilə + Play Oxut + Add to Əlavə edin + Open in file manager Fayl menecerində açmaq + Remove from playlist Oynatma siyahısından çıxart + Delete from local disk Yerli diskdən silin + Encoding Kodlaşma: + Song info Mahnı haqqında @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Musiqi gözəl görünüşü və sadə funksiyaları ilə bir musiqi pleyeridir. + Music Musiqi + Unknown album Naməlum albom + Unknown artist Naməlum ifaçı @@ -729,14 +903,17 @@ SearchResultDialog + Songs Mahnılar + Artists İfaçılar + Albums Albomlar @@ -744,34 +921,42 @@ SearchResultWindow + No search results Axtarış nəticəsiz oldu + Search Results Axtarış nəticələri + %1 albums - %2 songs %1 albom - %2 mahnı + 1 album - 1 song 1 albom - 1 mahnı + %1 album - %2 songs %1 albom - %2 mahnı + Music Musiqi + Artist İfaçı + Album Albom @@ -779,78 +964,97 @@ SettingsDialog + Basic Əsas + Play Oxut + Autoplay Avtomatik başlatmaq + Remember playback position on exit Çıxışda oxutma yeri yadda saxlanılsın + Enable fade in/out Mahnı dəyişərkən səsin tədricən artması/azalması + Close Main Window Əsas pəncərəni bağlamaq + Minimize to system tray Sistem çubuğuna yığmaq + Exit Çıxış + Ask me always Həmişə söruşsun + Shortcuts Qısayollar + Play/Pause Oxut/Fasilə + Previous Əvvəlki + Next Sonrakı + Volume up Səsi çoxalt + Volume down Səsi azalt + Favorite Sevimli + Cancel İmtina + Replace Əvəz et + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Bu qısayol düyməsi [%1] ilə ziddiyyətlidir, bu qısayolun dərhal qüvvəyə minməsi üçün "Əvəz edin" vurun @@ -858,78 +1062,97 @@ Shortcut + Play Oxut + Songs Mahnılar + Playlists Mahnı siyahıları + Settings Tənzimləmələr + Play/Pause Oxut/Fasilə + Previous Əvvəlki + Next Sonrakı + Volume Up Səsi Çoxalt + Volume Down Səsi azaldın + Mute Səssiz + Favorite Sevimli + Unfavorite Sevilməyən + Song info Mahnı haqqında + New playlist Yeni mahnı siyahısı + Add music Musiqi əlavə edin + Rename playlist Mahnı siyahısının adını dəyişmək + Remove from playlist Oynatma siyahısından çıxart + Help Kömək + Display shortcuts Qısayolları göstərmək @@ -937,10 +1160,12 @@ Shortcuts + New playlist Yeni mahnı siyahısı + My Favorites Mənim sevimlilərim @@ -948,18 +1173,22 @@ SidebarMenu + Play Oxut + Add songs Mahnılar əlavə et + Rename Yenidən adlandır + Delete Sil @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD-dəki mahnı siyahısı + Custom Şəxsi + + + Date added Tarix əlavə olundu + + Album Albom + + Artist İfaçı + Title Başlıq @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 mahnı + %1 songs %1 mahnı + Play All Hamısını Oxut @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Hamısını Oxut @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Ardıcıl oxutmaq + List loop Siyahını təkrar + Single loop Birini təkrarlamaq + Shuffle Qarışıq + Unfavorite Sevilməyən + Favorite Sevimli + My Favorites Mənim sevimlilərim + Previous Əvvəlki + Play/Pause Oxut/Fasilə + Next Sonrakı + Lyrics Mahnının sözləri + Play Queue Səsləndirmə növbəsi @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Mahnı siyahısı əlavə edin + New playlist Yeni mahnı siyahısı + + Add music Musiqi əlavə edin + Equalizer Ekvalayzer + Settings Tənzimləmələr + Music Musiqi + Music is a local music player with beautiful design and simple functions. Musiqi gözəl görünüşü və sadə funksiyaları ilə bir musiqi pleyeridir. + Version: Versiya: - Quit - Çıx - - + Previous page Əvvəlki səhifə + Next page Sonrakı səhifə + Search Axtar - - %1 is released under %2 - %1, %2 altında buraxılır - - \ No newline at end of file + diff --git a/translations/deepin-music_bg.ts b/translations/deepin-music_bg.ts index 4cf5cd190..cfe12347a 100644 --- a/translations/deepin-music_bg.ts +++ b/translations/deepin-music_bg.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Албум + Artist Изпълнител + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Заглавие + Artist Изпълнител + Duration Продължителност @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Заглавие + Artist Изпълнител + Duration Продължителност @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Заглавие + Artist Изпълнител + Album Албум + Duration Продължителност @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Заглавие + Album Албум + Duration Продължителност @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Отказ @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Минимизирай в зоната за уведомяване + Exit Изход + Do not ask again Повече не ме питай + Cancel Отказ + Confirm Потвърждение @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Празно @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Наистина ли искате да изтривате %1? + Are you sure you want to delete the selected %1 songs? Сигурни ли се в изтриването на %1 песни? + The song files contained will also be deleted - + + Delete Изтриване + Cancel Отказ @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? Сигурен ли сте, че искате да изтриете този списък? + Remove - + + Delete Изтриване + Cancel Отказ @@ -400,105 +492,138 @@ EqualizerDialog + Custom Потребителски + Monophony - + + Classical Класически + Club Клуб + Dance Денс + Full Bass Фулл Бас + Full Bass and Treble Фулл Бас и Требъл + Full Treble Фулл Требъл + Headphones Слушалки + Hall - + + Live На Живо + Party Парти + Pop Поп + Reggae Реге + Rock Рок + Ska Ска + Soft Меко + Soft Rock Мек Рок + Techno - + + Equalizer Еквалайзер + Save Запазване + Reset Рестартиране + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ОК @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Любимите ми + Create new playlist - + + New playlist Нов списък @@ -525,80 +654,98 @@ LyricPage + Artist Изпълнител + Album Албум + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Музика + Play/Pause Изпълнение/Пауза + Previous Предишен + Next Следващ + Exit Изход + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Премахване от списъка + Delete from local disk Изтриване от диска @@ -606,30 +753,37 @@ MusicBaselistview + Library Библиотека + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist Нов списък @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Заглавие + Artist Изпълнител + Album Албум + Type Тип + Size Размер + Duration Продължителност + Path Път @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Задържане + Play Изпълнение + Add to - + + Open in file manager Отвори във файловия мениджър + Remove from playlist Премахване от списъка + Delete from local disk Изтриване от диска + Encoding Кодировка + Song info Информация за песента @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Музика + Unknown album Неизвестен албум + Unknown artist Неизвестен изпълнител @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Търсенето е без резултат + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Музика + Artist Изпълнител + Album Албум @@ -779,157 +964,195 @@ SettingsDialog + Basic Основен + Play Изпълнение + Autoplay Автоматично изпълнение + Remember playback position on exit - + + Enable fade in/out Разреши заглъхване + Close Main Window Затвори основния прозорец + Minimize to system tray Минимизирай в зоната за уведомяване + Exit Изход + Ask me always - + + Shortcuts Бързи клавиши + Play/Pause Изпълнение/Пауза + Previous Предишен + Next Следващ + Volume up Увеличаване + Volume down Намаляване + Favorite Любими + Cancel Отказ + Replace Замяна + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Изпълнение + Songs - + + Playlists - + + Settings Настройки + Play/Pause Изпълнение/Пауза + Previous Предишен + Next Следващ + Volume Up Увеличаване на звука + Volume Down Намаляване на звука + Mute Заглушаване + Favorite Любими + Unfavorite - + + Song info Информация за песента + New playlist Нов списък + Add music Добави музика + Rename playlist - + + Remove from playlist Премахване от списъка + Help Помощ + Display shortcuts Комбинации за екрана @@ -937,29 +1160,35 @@ Shortcuts + New playlist Нов списък + My Favorites - + SidebarMenu + Play Изпълнение + Add songs - + + Rename Преименуване + Delete Изтриване @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Потребителски + + + Date added - + + + Album Албум + + Artist Изпълнител + Title Заглавие @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Изпълни всички @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Изпълни всички @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Разбъркано + Unfavorite - + + Favorite Любими + My Favorites - + + Previous Предишен + Play/Pause Изпълнение/Пауза + Next Следващ + Lyrics Текстове на песни + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Нов списък + + Add music Добави музика + Equalizer Еквалайзер + Settings Настройки + Music Музика + Music is a local music player with beautiful design and simple functions. - + + Version: Версия: - Quit - Изход - - + Previous page - + + Next page - + + Search Търсене - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_bn.ts b/translations/deepin-music_bn.ts index a506c7a18..22a2a116e 100644 --- a/translations/deepin-music_bn.ts +++ b/translations/deepin-music_bn.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,242 +48,300 @@ AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel বাতিল করুন @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit বের হয়ে যান + Do not ask again - + + Cancel বাতিল করুন + Confirm নিশ্চিত করুন @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty খালি করুন @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete মুছে ফেলুন + Cancel বাতিল করুন @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete মুছে ফেলুন + Cancel বাতিল করুন @@ -400,105 +492,138 @@ EqualizerDialog + Custom প্রথা + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save সংরক্ষণ করুন + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ঠিক আছে @@ -506,168 +631,205 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music মিউজিক + Play/Pause চালান/থামুন + Previous পূর্ববর্তী + Next পরবর্তী + Exit বের হয়ে যান + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size সাইজ + Duration - + + Path পথ @@ -675,291 +837,358 @@ MusicMoreMenu + Pause থামুন + Play চালু করুন + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music মিউজিক + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results অনুসন্ধানের কোন ফলাফল নেই + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music মিউজিক + Artist - + + Album - + SettingsDialog + Basic প্রাথমিক + Play চালু করুন + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit বের হয়ে যান + Ask me always - + + Shortcuts শর্টকাট + Play/Pause চালান/থামুন + Previous পূর্ববর্তী + Next পরবর্তী + Volume up শব্দ বাড়ান + Volume down শব্দ কমান + Favorite - + + Cancel বাতিল করুন + Replace প্রতিস্থাপন করুন + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play চালু করুন + Songs - + + Playlists - + + Settings সেটিংস + Play/Pause চালান/থামুন + Previous পূর্ববর্তী + Next পরবর্তী + Volume Up - + + Volume Down - + + Mute নীরব + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help সাহায্য করুন + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play চালু করুন + Add songs - + + Rename - + + Delete মুছে ফেলুন @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom প্রথা + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous পূর্ববর্তী + Play/Pause চালান/থামুন + Next পরবর্তী + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings সেটিংস + Music মিউজিক + Music is a local music player with beautiful design and simple functions. - + + Version: সংস্করন - Quit - - - + Previous page - + + Next page - + + Search খুঁজুন - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_bo.ts b/translations/deepin-music_bo.ts index 76e9ba919..72ddb087b 100644 --- a/translations/deepin-music_bo.ts +++ b/translations/deepin-music_bo.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs གླུ་གཞས་སྣོན་པ། + Open Folders གླུ་གཞས་དཀར་ཆག་སྣོན་པ། + Drag music files here or གླུ་གཞས་ཡིག་ཁུག་འཐེན་ནས་གླུ་གཞས་སྣོན་པའམ་ - scan the Music directory - གླུ་གཞས་དཀར་ཆག་བཤེར་བ། + + scan the Music directory + AlbumGridDelegate + 1 song གླུ་གཞས་1 + %1 songs གླུ་གཞས་%1 @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album ཆེད་བསྒྲིགས། + Artist གླུ་བ། + Tracks གླུ་གཞས་གྲངས། + Date added སྣོན་པའི་དུས་ཚོད། @@ -58,14 +71,17 @@ AlbumMoreMenu + View details ཞིབ་ཕྲའི་གནས་ཚུལ། + Play all ཚང་མ་གཏོང་བ། + Add to སྣོན་པ། @@ -73,14 +89,17 @@ AlbumSublist + Title གླུ་གཞས་མིང་། + Artist གླུ་པ། + Duration དུས་ཡུན། @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites ངའི་ཉར་ཚགས། @@ -95,14 +115,17 @@ AlbumSublistView + Title གླུ་གཞས་མིང་། + Artist གླུ་པའི་མིང་། + Duration དུས་ཡུན། @@ -110,10 +133,12 @@ AlbumView + Albums ཆེད་བསྒྲིགས། + %1 albums - %2 songs ཆེད་བསྒྲིགས་%1 - གླུ་གཞས་%2 @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs གླུ་གཞས་སྣོན་པ། + Open Folders གླུ་གཞས་དཀར་ཆག་སྣོན་པ། + Drag music files here or གླུ་གཞས་ཡིག་ཁུག་འཐེན་ནས་གླུ་གཞས་སྣོན་པའམ་ - Your favorite songs will be displayed here. - ཁྱེད་ཀྱིས་དགའ་བའི་གླུ་གཞས་འདི་རུ་འཆར་སྲིད། + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - “♥”བསྣན་ནས་གླུ་གཞས་“ངའི་དགའ་ཤོས་”ནང་བསྣན་སྲིད། + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - གཞས་ཐོའི་ནང་མེད་པའི་གླུ་གཞས། རི་མོ་“➕”འདི་བསྣན་ནས་གླུ་གཞས་གཞས་ཐོའི་ནང་བསྣན་ཆོག + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs གླུ་གཞས་ཡོངས། + 1 song གླུ་གཞས་1 + %1 songs གླུ་གཞས་%1 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites ངའི་ཉར་ཚགས། @@ -174,18 +220,22 @@ AllMusicListView + Title གླུ་གཞས་མིང་། + Artist གླུ་པ། + Album ཆེད་བསྒྲིགས། + Duration དུས་ཡུན། @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs གླུ་གཞས་སྣོན་པ། + Open Folders གླུ་གཞས་དཀར་ཆག་སྣོན་པ། + Drag music files here or གླུ་གཞས་ཡིག་ཁུག་འཐེན་ནས་གླུ་གཞས་སྣོན་པའམ་ - scan the Music directory - གླུ་གཞས་དཀར་ཆག་བཤེར་བ། + + scan the Music directory + ArtistGridDelegate + 1 song གླུ་གཞས་1 + %1 songs གླུ་གཞས་%1 @@ -223,14 +279,17 @@ ArtistMoreMenu + View details ཞིབ་ཕྲའི་གནས་ཚུལ། + Play all ཚང་མ་གཏོང་བ། + Add to སྣོན་པ། @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites ངའི་ཉར་ཚགས། @@ -245,14 +305,17 @@ ArtistSublistView + Title གླུ་གཞས་མིང་། + Album ཆེད་བསྒྲིགས་མིང་། + Duration དུས་ཡུན། @@ -260,10 +323,12 @@ ArtistView + Artists གླུ་པ། + %1 artists - %2 songs གཞས་པ་%1 - གླུ་གཞས་%2 @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed ཁྱེད་ཀྱི་CDཕྱིར་འབུད་བྱས་འདུག + Cancel འདོར་བ། @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action ཁྱེད་ཀྱི་བཀོལ་སྤྱོད་འདེམས་རོགས། + Minimize to system tray མ་ལག་གཞོང་ལ་ཆུང་སྒྱུར་བྱོས། + Exit ཕྱིར་འཐོན། + Do not ask again འདྲི་རྩད་མི་བྱེད། + Cancel འདོར་བ། + Confirm གཏན་ཁེལ། @@ -309,18 +382,22 @@ CurrentPlayList + Play queue གཏོང་བའི་རུ་སྒྲིག + 1 song གླུ་གཞས་1 + %1 songs གླུ་གཞས་%1 + Empty གསལ་ཐོ་གཙང་སེལ། @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites ངའི་ཉར་ཚགས། @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites ངའི་ཉར་ཚགས། + CD playlist CDགཞས་ཐོ། + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? ཁྱོད་ཀྱིས་ %1སུབ་རྒྱུ་གཏན་ཁེལ་ལམ། + Are you sure you want to delete the selected %1 songs? ཁྱེད་ཀྱིས་འདེམས་ཟིན་པའི་གླུ་གཞས་%1སུབ་རྒྱུ་གཏན་ཁེལ་ལམ། + The song files contained will also be deleted གླུ་གཞས་འདི་དག་ནང་ཚུད་པའི་གླུ་གཞས་ཡིག་ཆ་ཡང་སུབ་སྲིད། + Delete སུབ་པ། + Cancel འདོར་བ། @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? ཁྱོད་ཀྱི་སྤོ་འབུད་%1བྱེད་རྒྱུ་གཏན་ཁེལ་ལམ། + Are you sure you want to remove the selected %1 songs? ཁྱེད་ཀྱིས་འདེམས་ཟིན་པའི་གླུ་གཞས་%1སྤོ་འབུད་བྱེད་རྒྱུ་གཏན་ཁེལ་ལམ། + Are you sure you want to delete this playlist? ཁྱེད་ཀྱིས་གཞས་ཐོ་འདི་དངོས་གནས་སུབ་བམ། + Remove སྤོ་འབུད། + Delete སུབ་པ། + Cancel འདོར་བ། @@ -400,105 +492,138 @@ EqualizerDialog + Custom རང་སྒྲུབ། + Monophony རྐྱང་འགྱུར། + Classical གནའ་གཞུང་། + Club སྤྲོ་སྐྱིད་ཁང་། + Dance བྲོ་གཞས། + Full Bass ཚང་མ་སྒྲ་གདངས་དམའ་བ། + Full Bass and Treble ཚང་མ་སྒྲ་གདངས་དམའ་བ་དང་མཐོ་བ། + Full Treble ཚང་མ་སྒྲ་གདངས་མཐོ་བ། + Headphones ཉན་ཆས། + Hall ཚོམས་ཆེན། + Live གནས་ཚུལ་དངོས། + Party འདུ་ཚོགས། + Pop དར་ཁྱབ། + Reggae རེ་ཀེ། + Rock རོག་ཁ། + Ska སི་ཀ + Soft འཇམ་པ། + Soft Rock རོག་ཁ་འཇམ་པ། + Techno གློག་རྡུལ་རོལ་ཆ། + Equalizer ངོ་སྙོམས་སྒྲིག་ཆས། + Save ཉར་ཚགས། + Reset བསྐྱར་སྒྲིག + Preamplifier མདུན་བཀོད་ཆེར་སྒྱུར། + + FileDialog + + + All Music + རོལ་དབྱངས་ཡོད་ཚད། + + ImportFailedDialog + Import failed, no valid music file found འདྲེན་འཇུག་མི་ཐུབ། གོ་ཆོད་པའི་རོལ་མོའི་ཡིག་ཆ་རྙེད་མ་བྱུང་། + OK གཏན་ཁེལ། @@ -506,18 +631,22 @@ ImportMenu + Play queue གཏོང་བའི་རུ་སྒྲིག + My favorites ངའི་ཉར་ཚགས། + Create new playlist གཞས་ཐོ་གསར་པར་སྣོན་པ། + New playlist གཞས་ཐོ་གསར་བཟོ། @@ -525,18 +654,22 @@ LyricPage + Artist གླུ་པའི་མིང་། + Album ཆེད་བསྒྲིགས་མིང་། + No lyrics found གླུ་གཞས་འདི་ལ་གནས་སྐབས་གཞས་ཚིག་མེད། + Please put the lyric file (same name as the song) and the song file in the same folder མིང་གཅིག་པའི་LRCཡིག་ཆ་གླུ་གཞས་ཡིག་ཆའི་དཀར་ཆག་འོག་ཏུ་འཇོག་དང་། @@ -544,46 +677,57 @@ MainWindow + Music རོལ་མོ། + Play/Pause གཏོང་བ།/སྐབས་སྡོད། + Previous སྔོན་མ། + Next རྗེས་མ། + Exit ཕྱིར་དོན། + Already added to the playlist རོལ་མོ་དེ་བསྣན་ཟིན། + Added to "%1" “%1”བསྣན་ཟིན། + Removed from "My Favorites" "ངའི་དགའ་ཤོས་"ནས་ཕུད་ཟིན། + A disc is connected CDཪྙེད་བྱུང་། + My Favorites ངའི་ཉར་ཚགས། + All Songs གླུ་གཞས་ཡོངས། @@ -591,14 +735,17 @@ MulitSelectMenu + Add to སྣོན་པ། + Remove from playlist གཞས་ཐོ་ནས་སུབ་པ། + Delete from local disk རང་གནས་ནས་སུབ་པ། @@ -606,30 +753,37 @@ MusicBaselistview + Library མཛོད། + Albums ཆེད་བསྒྲིགས། + Artists གླུ་པ། + All Songs གླུ་གཞས་ཡོངས། + Playlists གཞས་ཐོ། + Create playlist གཞས་ཐོ་བཟོ་བ། + New playlist གཞས་ཐོ་གསར་བཟོ། @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites ངའི་ཉར་ཚགས། @@ -644,30 +799,37 @@ MusicInfoDialog + Title གླུ་གཞས་མིང་། + Artist གླུ་པའི་མིང་། + Album ཆེད་བསྒྲིགས་མིང་། + Type རིགས་གྲས། + Size ཆེ་ཆུང་། + Duration དུས་ཡུན། + Path ཉར་བའི་འགྲོ་ལམ། @@ -675,34 +837,42 @@ MusicMoreMenu + Pause སྐབས་སྡོད། + Play གཏོང་བ། + Add to སྣོན་པ། + Open in file manager ཡིག་ཆ་དོ་དམ་ཆས་ནང་དུ་ཁ་ཕྱེ། + Remove from playlist གཞས་ཐོ་ནས་སུབ་པ། + Delete from local disk རང་གནས་ནས་སུབ་པ། + Encoding ཨང་སྒྲིག་བྱེད་སྟངས། + Song info གླུ་གཞས་ཆ་འཕྲིན། @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. རོལ་མོ་ནི་ཇུས་འགོད་སྙིང་རྗེ་བ་དང་། བྱེད་ནུས་སྟབས་བདེ་བའི་རང་གནས་རོལ་མོ་གཏོང་ཆས་ཞིག་རེད། + Music རོལ་མོ། + Unknown album མ་ཤེས་པའི་ཆེད་བསྒྲིགས། + Unknown artist ངོ་མ་ཤེས་པའི་གླུ་པ། @@ -729,14 +903,17 @@ SearchResultDialog + Songs གླུ་གཞས། + Artists གླུ་པ། + Albums ཆེད་བསྒྲིགས། @@ -744,34 +921,42 @@ SearchResultWindow + No search results འཚོལ་ཞིབ་བྱས་འབྲས་མེད། + Search Results འཚོལ་ཞིབ་བྱས་འབྲས། + %1 albums - %2 songs ཆེད་བསྒྲིགས་%1 - གླུ་གཞས་%2 + 1 album - 1 song ཆེད་བསྒྲིགས་1 - གླུ་གཞས་1 + %1 album - %2 songs ཆེད་བསྒྲིགས་%1 - གླུ་གཞས་%2 + Music རོལ་མོ། + Artist གླུ་པའི་མིང་། + Album ཆེད་བསྒྲིགས་མིང་། @@ -779,157 +964,195 @@ SettingsDialog + Basic རྨང་གཞིའི་སྒྲིག་འགོད། + Play གཏོང་བ། + Autoplay འགོ་སློང་དུས་རང་འགུལ་ངང་གཏོང་བ། + Remember playback position on exit ཕྱིར་འཐེན་བྱེད་དུས་གཏོང་ཐེངས་གོང་མའི་གཏོང་ཚད་ངེས་དང་། + Enable fade in/out རིམ་ཡལ་རིམ་གསལ་ཁ་ཕྱེ་བ། + Close Main Window སྒེའུ་ཁུང་གཙོ་བོ་ཁ་རྒྱག་པ། + Minimize to system tray མ་ལག་གཞོང་ལ་ཆུང་སྒྱུར་བྱོས། + Exit ཕྱིར་དོན། + Ask me always རྟག་ཏུ་འདྲི་རྩད་བྱེད། + Shortcuts མྱུར་མཐེབ། + Play/Pause གཏོང་བ།/སྐབས་སྡོད། + Previous སྔོན་མ། + Next རྗེས་མ། + Volume up སྒྲ་ཤུགས་ཆེར་གཏོང་། + Volume down སྒྲ་ཤུགས་ཆུང་གཏོང་། + Favorite ཉར་ཚགས། + Cancel འདོར་བ། + Replace བརྗེ་བ། + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play གཏོང་བ། + Songs གླུ་གཞས། + Playlists གཞས་ཐོ། + Settings སྒྲིག་འགོད། + Play/Pause གཏོང་བ།/སྐབས་སྡོད། + Previous སྔོན་མ། + Next རྗེས་མ། + Volume Up སྒྲ་ཤུགས་ཆེར་གཏོང་། + Volume Down སྒྲ་ཤུགས་ཆུང་གཏོང་། + Mute སྒྲ་མེད། + Favorite ཉར་ཚགས། + Unfavorite ཉར་ཚགས་འདོར་བ། + Song info གླུ་གཞས་ཆ་འཕྲིན། + New playlist གཞས་ཐོ་གསར་བཟོ། + Add music རོལ་མོ་སྣོན་པ། + Rename playlist གཞས་ཐོ་མིང་བསྐྱར་བཏགས། + Remove from playlist གཞས་ཐོ་ནས་སུབ་པ། + Help རོགས་རམ། + Display shortcuts མྱུར་མཐེབ་མངོན་པ། @@ -937,10 +1160,12 @@ Shortcuts + New playlist གཞས་ཐོ་གསར་བཟོ། + My Favorites ངའི་ཉར་ཚགས། @@ -948,18 +1173,22 @@ SidebarMenu + Play གཏོང་བ། + Add songs གླུ་གཞས་སྣོན་པ། + Rename མིང་བསྐྱར་འདོགས། + Delete སུབ་པ། @@ -967,26 +1196,36 @@ SortMenu + CD playlist CDགཞས་ཐོ། + Custom རང་སྒྲུབ། + + + Date added སྣོན་པའི་དུས་ཚོད། + + Album ཆེད་བསྒྲིགས་མིང་། + + Artist གླུ་པའི་མིང་། + Title གླུ་གཞས་མིང་། @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song གླུ་གཞས་1 + %1 songs གླུ་གཞས་%1 + Play All ཚང་མ་གཏོང་བ། @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All ཚང་མ་གཏོང་བ། @@ -1016,50 +1259,62 @@ Toolbar + Sequential play གོ་རིམ་ལྟར་གཏོང་བ། + List loop རེའུ་མིག་རྒྱུན་འཁོར། + Single loop གཞས་གཅིག་རྒྱུན་འཁོར། + Shuffle སྐབས་བསྟུན་གཏོང་བ། + Unfavorite ཉར་ཚགས་འདོར་བ། + Favorite ཉར་ཚགས། + My Favorites ངའི་ཉར་ཚགས། + Previous སྔོན་མ། + Play/Pause གཏོང་བ།/སྐབས་སྡོད། + Next རྗེས་མ། + Lyrics གཞས་ཚིག + Play Queue གཏོང་བའི་རུ་སྒྲིག @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist གླུ་གཞས་པ་སྣོན་པ། + New playlist གཞས་ཐོ་གསར་བཟོ། + + Add music རོལ་མོ་སྣོན་པ། + Equalizer ངོ་སྙོམས་སྒྲིག་ཆས། + Settings སྒྲིག་འགོད། + Music རོལ་མོ། + Music is a local music player with beautiful design and simple functions. རོལ་མོ་ནི་ཇུས་འགོད་སྙིང་རྗེ་བ་དང་། བྱེད་ནུས་སྟབས་བདེ་བའི་རང་གནས་རོལ་མོ་གཏོང་ཆས་ཞིག་རེད། + Version: པར་གཞིའི་ཨང་གྲངས། - Quit - ཕྱིར་འཐེན། - - + Previous page ཤོག་ངོས་གོང་མ། + Next page གཞས་རྗེས་མ། + Search བཤེར་འཚོལ། - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_bqi.ts b/translations/deepin-music_bqi.ts index 9c7ad2f22..61e9f0de4 100644 --- a/translations/deepin-music_bqi.ts +++ b/translations/deepin-music_bqi.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_br.ts b/translations/deepin-music_br.ts index 4db9b217a..b7cde4e44 100644 --- a/translations/deepin-music_br.ts +++ b/translations/deepin-music_br.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 ganaouenn + %1 songs %1 a ganaouennoù @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Albom + Artist Arzour + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Titl + Artist Arzour + Duration Padelezh @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Ma re muiañ-karet @@ -95,14 +115,17 @@ AlbumSublistView + Title Titl + Artist Arzour + Duration Padelezh @@ -110,10 +133,12 @@ AlbumView + Albums Albomoù + %1 albums - %2 songs %1 a albomioù - %2 a ganaouennoù @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 ganaouenn + %1 songs %1 a ganaouennoù @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Ma re muiañ-karet @@ -174,18 +220,22 @@ AllMusicListView + Title Titl + Artist Arzour + Album Albom + Duration Padelezh @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 ganaouenn + %1 songs %1 a ganaouennoù @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Ma re muiañ-karet @@ -245,14 +305,17 @@ ArtistSublistView + Title Titl + Album Albom + Duration Padelezh @@ -260,10 +323,12 @@ ArtistView + Artists Arzourien + %1 artists - %2 songs %1 a arzourien - %2 a ganaouennoù @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed - + + Cancel Nullañ @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Bihanaat e barrenn statud ar sistem + Exit Kuitaat + Do not ask again Na c'houlenn ken + Cancel Nullañ + Confirm Kadarnaat @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Lenn ar steudad-c'hortoz + 1 song 1 ganaouenn + %1 songs %1 a ganaouennoù + Empty Goullo @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Ma re muiañ-karet @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Ma re muiañ-karet + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Ha sur oc'h ho peus c'hoant dilemel %1? + Are you sure you want to delete the selected %1 songs? Ha fellout a ra deoc'h dilemel an/ar %1 a ganaouennoù diuzet? + The song files contained will also be deleted Restroù ar c'hanaouennoù endalc'het a vo dilemet ivez + Delete Dilemel + Cancel Nullañ @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Ha fellout a ra deoc'h dilemel da vat %1? + Are you sure you want to remove the selected %1 songs? Ha fellout a ra deoc'h dilemel da vat an/ar %1 a ganaouennoù? + Are you sure you want to delete this playlist? Ha fellout a ra deoc'h dilemel ar roll-lenn-mañ? + Remove Dilemel + Delete Dilemel + Cancel Nullañ @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personnelaet + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save Enrollañ + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found C'hwitet ez eus bet war an emporzhiañ, n'eus bet kavet restr sonerezhel ebet + OK Mat eo @@ -506,18 +631,22 @@ ImportMenu + Play queue Lenn ar steudad-c'hortoz + My favorites Ma re muiañ-karet + Create new playlist - + + New playlist Roll-lenn nevez @@ -525,80 +654,98 @@ LyricPage + Artist Arzour + Album Albom + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Sonerezh + Play/Pause Lenn/Ehanañ + Previous Kent + Next Da-heul + Exit Kuitaat + Already added to the playlist Ouzhpennet endeo d'ar roll-lenn + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Ma re muiañ-karet + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Dilemel diwar ar roll-lenn + Delete from local disk Dilemel diwar an disk lec'hel @@ -606,30 +753,37 @@ MusicBaselistview + Library Levraoueg + Albums Albomoù + Artists Arzourien + All Songs - + + Playlists Rolloù-lenn + Create playlist - + + New playlist Roll-lenn nevez @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Ma re muiañ-karet @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titl + Artist Arzour + Album Albom + Type Doare + Size Ment + Duration Padelezh + Path Hent @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Ehanet + Play Lenn + Add to - + + Open in file manager Digeriñ ar merer restroù + Remove from playlist Dilemel diwar ar roll-lenn + Delete from local disk Dilemel diwar an disk lec'hel + Encoding Enkodañ + Song info Titouroù ar roll-lenn @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Sonerezh a zo ul lenner aodio c'hwek d'an daoulagad hag aeset eo d'ober gantañ. + Music Sonerezh + Unknown album Albom dianav + Unknown artist Arzour dianav @@ -729,14 +903,17 @@ SearchResultDialog + Songs Kanaouennoù + Artists Arzourien + Albums Albomoù @@ -744,34 +921,42 @@ SearchResultWindow + No search results Disoc'h ebet kavet + Search Results Disoc'hoù an enklask + %1 albums - %2 songs %1 a albomioù - %2 a ganaouennoù + 1 album - 1 song 1 albom - 1 ganaouenn + %1 album - %2 songs %1 albom - %2 a ganaouennoù + Music Sonerezh + Artist Arzour + Album Albom @@ -779,157 +964,195 @@ SettingsDialog + Basic Eeun + Play Lenn + Autoplay Em-lenn + Remember playback position on exit - + + Enable fade in/out Enaouiñ ar steuziañ enmont/ezvont + Close Main Window Serriñ ar prenestr-pennañ + Minimize to system tray Bihanaat e barrenn statud ar sistem + Exit Kuitaat + Ask me always - + + Shortcuts Berradurioù + Play/Pause Lenn/Ehanañ + Previous Kent + Next Da-heul + Volume up Lakaat da greskiñ al live-son + Volume down Izelaat al live-son + Favorite Muiañ-karet + Cancel Nullañ + Replace Erlec'hiañ + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Lenn + Songs Kanaouennoù + Playlists Rolloù-lenn + Settings Arventennoù + Play/Pause Lenn/Ehanañ + Previous Kent + Next Da-heul + Volume Up Lakaat da greskiñ al live-son + Volume Down Izelaat al live-son + Mute Mut + Favorite Muiañ-karet + Unfavorite Disinedet + Song info Titouroù ar roll-lenn + New playlist Roll-lenn nevez + Add music Ouzhpennañ sonerezh + Rename playlist Adeñvel ar roll-lenn + Remove from playlist Dilemel diwar ar roll-lenn + Help Skoazell + Display shortcuts Diskouez ar berradurioù @@ -937,10 +1160,12 @@ Shortcuts + New playlist Roll-lenn nevez + My Favorites Ma re muiañ-karet @@ -948,18 +1173,22 @@ SidebarMenu + Play Lenn + Add songs - + + Rename Adenvel + Delete Dilemel @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Personnelaet + + + Date added - + + + Album Albom + + Artist Arzour + Title Titl @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 ganaouenn + %1 songs %1 a ganaouennoù + Play All Lenn pep-tra @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Lenn pep-tra @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Roll-lenn e bouklenn + Single loop Lenn e bouklenn + Shuffle Dre-zegouezh + Unfavorite Disinedet + Favorite Muiañ-karet + My Favorites Ma re muiañ-karet + Previous Kent + Play/Pause Lenn/Ehanañ + Next Da-heul + Lyrics Komzoù + Play Queue Lenn ar steudad-c'hortoz @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Ouzhpennañ d'ar roll-lenn + New playlist Roll-lenn nevez + + Add music Ouzhpennañ sonerezh + Equalizer - + + Settings Arventennoù + Music Sonerezh + Music is a local music player with beautiful design and simple functions. Sonerezh a zo ul lenner aodio c'hwek d'an daoulagad hag aeset eo d'ober gantañ. + Version: Stumm: - Quit - - - + Previous page - + + Next page - + + Search Klask - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ca.ts b/translations/deepin-music_ca.ts index 1f458d668..c10e8ec6c 100644 --- a/translations/deepin-music_ca.ts +++ b/translations/deepin-music_ca.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Afegeix cançons + Open Folders Obre carpetes + Drag music files here or Arrossegueu fitxers de música aquí o - scan the Music directory - escanegeu el directori de música + + scan the Music directory + escaneja el directori de música AlbumGridDelegate + 1 song 1 cançó + %1 songs %1 cançons @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Disc + Artist Artista + Tracks Pistes + Date added Data d'addició @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Mostra els detalls + Play all Reprodueix tot + Add to Afegeix a @@ -73,14 +89,17 @@ AlbumSublist + Title Títol + Artist Artista + Duration Duració @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Els favorits @@ -95,14 +115,17 @@ AlbumSublistView + Title Títol + Artist Artista + Duration Duració @@ -110,10 +133,12 @@ AlbumView + Albums Àlbums + %1 albums - %2 songs %1 àlbums - %2 cançons @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Afegeix cançons + Open Folders Obre carpetes + Drag music files here or Arrossegueu fitxers de música aquí o - Your favorite songs will be displayed here. - Les vostres cançons preferides es mostraran aquí. + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - Feu clic a «♥» per afegir una cançó a els Meus preferits + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Encara no hi ha cançons. Feu clic a «➕» per afegir cançons a la llista de reproducció. + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory escaneja el directori de música @@ -152,14 +194,17 @@ AllMusicList + All Songs Totes les cançons + 1 song 1 cançó + %1 songs %1 cançons @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Els favorits @@ -174,18 +220,22 @@ AllMusicListView + Title Títol + Artist Artista + Album Disc + Duration Duració @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Afegeix cançons + Open Folders Obre carpetes + Drag music files here or Arrossegueu fitxers de música aquí o - scan the Music directory - escanegeu el directori de música + + scan the Music directory + escaneja el directori de música ArtistGridDelegate + 1 song 1 cançó + %1 songs %1 cançons @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Mostra els detalls + Play all Reprodueix tot + Add to Afegeix a @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Els favorits @@ -245,14 +305,17 @@ ArtistSublistView + Title Títol + Album Disc + Duration Duració @@ -260,10 +323,12 @@ ArtistView + Artists Artistes + %1 artists - %2 songs %1 artistes - %2 cançons @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed S'ha expulsat el CD. + Cancel Cancel·la @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Si us plau, trieu l'acció. + Minimize to system tray Minimitza a la safata del sistema + Exit Surt + Do not ask again No ho tornis a preguntar. + Cancel Cancel·la + Confirm Confirmeu-ho @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Reprodueix la cua + 1 song 1 cançó + %1 songs %1 cançons + Empty Buit @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Els favorits @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Els favorits + CD playlist Llista de reproducció de CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Segur que voleu eliminar %1? + Are you sure you want to delete the selected %1 songs? Segur que voleu eliminar les %1 cançons seleccionades? + The song files contained will also be deleted Els fitxers de cançons continguts també s'eliminaran. + Delete Elimina + Cancel Cancel·la @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Segur que voleu eliminar %1? + Are you sure you want to remove the selected %1 songs? Segur que voleu eliminar les %1 cançons seleccionades? + Are you sure you want to delete this playlist? Segur que voleu eliminar aquesta llista de reproducció? + Remove Elimina + Delete Elimina + Cancel Cancel·la @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalitzat + Monophony Monofonia + Classical Clàssica + Club Club + Dance Dance + Full Bass Baix complet + Full Bass and Treble Baix complet i agudesa + Full Treble Agudesa completa + Headphones Auriculars + Hall Sala + Live Directe + Party Festa + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Suau + Soft Rock Rock suau + Techno Tecno + Equalizer Equalitzador + Save Desa + Reset Restableix + Preamplifier Preamplificador + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Ha fallat la importació. No s'ha trobat cap fitxer de música vàlid! + OK D'acord @@ -506,18 +631,22 @@ ImportMenu + Play queue Reprodueix la cua + My favorites Els favorits + Create new playlist Crea una llista de reproducció + New playlist Llista de reproducció nova @@ -525,18 +654,22 @@ LyricPage + Artist Artista + Album Disc + No lyrics found No s'ha trobat cap lletra + Please put the lyric file (same name as the song) and the song file in the same folder Poseu el fitxer de la lletra (amb el mateix nom que la cançó) i el fitxer de la cançó a la mateixa carpeta @@ -544,46 +677,57 @@ MainWindow + Music Música + Play/Pause Reprodueix / Pausa + Previous Anterior + Next Següent + Exit Surt + Already added to the playlist Ja s'ha afegit a la llista de reproducció. + Added to "%1" S'ha afegit a "%1" + Removed from "My Favorites" S'ha eliminat dels favorits. + A disc is connected Hi ha un disc connectat + My Favorites Els favorits + All Songs Totes les cançons @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Afegeix a + Remove from playlist Elimina de la llista de reproducció + Delete from local disk Elimina del disc local @@ -606,30 +753,37 @@ MusicBaselistview + Library Llibreria + Albums Àlbums + Artists Artistes + All Songs Totes les cançons + Playlists Llistes de reproducció + Create playlist Crea una llista de reproducció + New playlist Llista de reproducció nova @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Els favorits @@ -644,30 +799,37 @@ MusicInfoDialog + Title Títol + Artist Artista + Album Disc + Type Tipus + Size Mida + Duration Duració + Path Camí @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausa + Play Reprodueix + Add to Afegeix a + Open in file manager Obre al gestor de fitxers + Remove from playlist Elimina de la llista de reproducció + Delete from local disk Elimina del disc local + Encoding Codificació + Song info Informació de la cançó @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. La Música és un reproductor de música local amb un disseny bonic i funcions senzilles. + Music Música + Unknown album Àlbum desconegut + Unknown artist Artista desconegut @@ -729,14 +903,17 @@ SearchResultDialog + Songs Cançons + Artists Artistes + Albums Àlbums @@ -744,34 +921,42 @@ SearchResultWindow + No search results No hi ha resultats de la cerca. + Search Results Resultats de la cerca + %1 albums - %2 songs %1 àlbums - %2 cançons + 1 album - 1 song 1 àlbum - 1 cançó + %1 album - %2 songs %1 àlbum - %2 cançons + Music Música + Artist Artista + Album Disc @@ -779,78 +964,97 @@ SettingsDialog + Basic Bàsic + Play Reprodueix + Autoplay Reprodueix automàticament + Remember playback position on exit Recorda la posició de reproducció en sortir + Enable fade in/out Habilita l'esvaïment + Close Main Window Tanca la finestra principal + Minimize to system tray Minimitza a la safata del sistema + Exit Surt + Ask me always Pregunta-m'ho sempre. + Shortcuts Dreceres + Play/Pause Reprodueix / Pausa + Previous Anterior + Next Següent + Volume up Volum amunt + Volume down Volum avall + Favorite Favorit + Cancel Cancel·la + Replace Reemplaça + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Aquesta tecla de drecera entra en conflicte amb [%1], cliqueu a Reemplaça per fer que aquesta tecla de drecera tingui efecte immediatament. @@ -858,78 +1062,97 @@ Shortcut + Play Reprodueix + Songs Cançons + Playlists Llistes de reproducció + Settings Configuració + Play/Pause Reprodueix / Pausa + Previous Anterior + Next Següent + Volume Up Volum amunt + Volume Down Volum avall + Mute Silencia + Favorite Favorit + Unfavorite Elimina dels favorits + Song info Informació de la cançó + New playlist Llista de reproducció nova + Add music Afegiu música + Rename playlist Reanomena la llista de reproducció + Remove from playlist Elimina de la llista de reproducció + Help Ajuda + Display shortcuts Mostra les dreceres @@ -937,10 +1160,12 @@ Shortcuts + New playlist Llista de reproducció nova + My Favorites Els favorits @@ -948,18 +1173,22 @@ SidebarMenu + Play Reprodueix + Add songs Afegeix cançons + Rename Canvia'n el nom + Delete Elimina @@ -967,26 +1196,36 @@ SortMenu + CD playlist Llista de reproducció de CD + Custom Personalitzat + + + Date added Data d'addició + + Album Disc + + Artist Artista + Title Títol @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 cançó + %1 songs %1 cançons + Play All Reprodueix-ho tot @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reprodueix-ho tot @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Reproducció seqüencial + List loop Repetició de la llista + Single loop Repetició simple + Shuffle Aleatòria + Unfavorite Elimina dels favorits + Favorite Favorit + My Favorites Els favorits + Previous Anterior + Play/Pause Reprodueix / Pausa + Next Següent + Lyrics Lletres + Play Queue Cua de reproducció @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Afegiu una llista de reproducció + New playlist Llista de reproducció nova + + Add music Afegiu música + Equalizer Equalitzador + Settings Configuració + Music Música + Music is a local music player with beautiful design and simple functions. La Música és un reproductor de música local amb un disseny bonic i funcions senzilles. + Version: Versió: - Quit - Sortir - - + Previous page Pàgina anterior + Next page Pàgina següent + Search Cerca - - %1 is released under %2 - %1 es publica d'acord amb %2 - - \ No newline at end of file + diff --git a/translations/deepin-music_cs.ts b/translations/deepin-music_cs.ts index 696c18b98..3bb65f48a 100644 --- a/translations/deepin-music_cs.ts +++ b/translations/deepin-music_cs.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Přidat skladby + Open Folders Otevřít složky + Drag music files here or Přetáhněte soubory s hudbou sem nebo - scan the Music directory - prohledejte adresář s hudbou + + scan the Music directory + AlbumGridDelegate + 1 song 1 skladba + %1 songs %1 skladeb @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Umělec + Tracks Skladby + Date added Datum přidání @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Zobrazit podrobnosti + Play all Přehrát vše + Add to Přidat do @@ -73,14 +89,17 @@ AlbumSublist + Title Název + Artist Umělec + Duration Doba trvání @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Moje oblíbené @@ -95,14 +115,17 @@ AlbumSublistView + Title Název + Artist Umělec + Duration Doba trvání @@ -110,10 +133,12 @@ AlbumView + Albums Alba + %1 albums - %2 songs %1 alba %2 skladeb @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs Přidat skladby + Open Folders Otevřít složky + Drag music files here or Přetáhněte soubory s hudbou sem nebo - Your favorite songs will be displayed here. - Zde se zobrazí vaše oblíbené skladby. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - Klepněte na " ♥ " pro přidání skladby do oblíbených. + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Zatím žádné skladby. Klepněte na " ➕ " pro přidání skladeb do seznamu skladeb. + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs Všechny skladby + 1 song 1 skladba + %1 songs %1 skladeb @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Moje oblíbené @@ -174,18 +220,22 @@ AllMusicListView + Title Název + Artist Umělec + Album Album + Duration Doba trvání @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Přidat skladby + Open Folders Otevřít složky + Drag music files here or Přetáhněte soubory s hudbou sem nebo - scan the Music directory - prohledejte adresář s hudbou + + scan the Music directory + ArtistGridDelegate + 1 song 1 skladba + %1 songs %1 skladeb @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Zobrazit podrobnosti + Play all Přehrát vše + Add to Přidat do @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Moje oblíbené @@ -245,14 +305,17 @@ ArtistSublistView + Title Název + Album Album + Duration Doba trvání @@ -260,10 +323,12 @@ ArtistView + Artists Umělců + %1 artists - %2 songs %1 umělců %2 skladeb @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD bylo vysunuto + Cancel Zrušit @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Prosím zvolte činnost + Minimize to system tray Zmenšit do oznamovací oblasti panelu + Exit Ukončit + Do not ask again Znovu se neptat + Cancel Zrušit + Confirm Potvrdit @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Zařazené skladby + 1 song 1 skladba + %1 songs %1 skladeb + Empty Prázdný @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Moje oblíbené @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Moje oblíbené + CD playlist Seznam stop na CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Opravdu chcete %1 smazat? + Are you sure you want to delete the selected %1 songs? Opravdu chcete smazat vybraných %1 skladeb? + The song files contained will also be deleted Zahrnuté soubory s písněmi budou smazány také + Delete Smazat + Cancel Zrušit @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Opravdu je chcete odstranit %1? + Are you sure you want to remove the selected %1 songs? Opravdu chcete smazat vybraných %1 skladeb? + Are you sure you want to delete this playlist? Opravdu chcete tento seznam skladeb smazat? + Remove Odstranit + Delete Smazat + Cancel Zrušit @@ -400,105 +492,138 @@ EqualizerDialog + Custom Uživatelsky určené + Monophony Monofonní + Classical Klasická + Club Klub + Dance Taneční + Full Bass Plné hloubky + Full Bass and Treble Plné hloubky a výšky + Full Treble Plné výšky + Headphones Sluchátka + Hall Hala + Live Živě + Party Večírek + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Ekvalizér + Save Uložit + Reset Nastavit znovu + Preamplifier Předzesilovač + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Nepodařilo se naimportovat. Nenalezen žádný platný hudební soubor + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Zařazené skladby + My favorites Moje oblíbené + Create new playlist Vytvořit nový seznam skladeb + New playlist Nový seznam skladeb @@ -525,18 +654,22 @@ LyricPage + Artist Umělec + Album Album + No lyrics found Nenalezeny žádné zpěvní texty + Please put the lyric file (same name as the song) and the song file in the same folder Vložte, prosím, soubor se zpěvním textem (stejný název jako skladba) a soubor se skladbou do stejné složky. @@ -544,46 +677,57 @@ MainWindow + Music Hudba + Play/Pause Přehrát/Pozastavit + Previous Předchozí + Next Další + Exit Ukončit + Already added to the playlist Už přidáno do seznamu skladeb + Added to "%1" Přidáno do %1 + Removed from "My Favorites" Odstraněno z oblíbených + A disc is connected Je připojen disk + My Favorites Moje oblíbené + All Songs Všechny skladby @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Přidat do + Remove from playlist Odstranit ze seznamu skladeb + Delete from local disk Smazat z místního disku @@ -606,30 +753,37 @@ MusicBaselistview + Library Knihovna + Albums Alba + Artists Umělců + All Songs Všechny skladby + Playlists Seznamy skladeb + Create playlist Vytvořit seznam skladeb + New playlist Nový seznam skladeb @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Moje oblíbené @@ -644,30 +799,37 @@ MusicInfoDialog + Title Název + Artist Umělec + Album Album + Type Typ + Size Velikost + Duration Doba trvání + Path Popis umístění @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pozastavit + Play Přehrát + Add to Přidat do + Open in file manager Otevřít ve správci souborů + Remove from playlist Odstranit ze seznamu skladeb + Delete from local disk Smazat z místního disku + Encoding Kódování znaků + Song info Údaje o skladbě @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Hudba je pěkný přehrávač hudby na místním disku s jednoduchými funkcemi. + Music Hudba + Unknown album Neznámé album + Unknown artist Neznámý umělec @@ -729,14 +903,17 @@ SearchResultDialog + Songs Skladby + Artists Umělců + Albums Alba @@ -744,34 +921,42 @@ SearchResultWindow + No search results Nic nenalezeno + Search Results Výsledek hledání + %1 albums - %2 songs %1 alba %2 skladeb + 1 album - 1 song 1 album 1 skladba + %1 album - %2 songs %1 album %2 skladeb + Music Hudba + Artist Umělec + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Základní + Play Přehrát + Autoplay Automatické přehrávání + Remember playback position on exit Zapamatovat si při ukončení místo v přehrávání + Enable fade in/out Zapnout postupné zesílení/zeslabení + Close Main Window Zavřít hlavní okno + Minimize to system tray Zmenšit do oznamovací oblasti panelu + Exit Ukončit + Ask me always Vždy se dotázat + Shortcuts Klávesové zkratky + Play/Pause Přehrát/Pozastavit + Previous Předchozí + Next Další + Volume up Hlasitěji + Volume down Tišeji + Favorite Oblíbené + Cancel Zrušit + Replace Nahradit + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Přehrát + Songs Skladby + Playlists Seznamy skladeb + Settings Nastavení + Play/Pause Přehrát/Pozastavit + Previous Předchozí + Next Další + Volume Up Hlasitěji + Volume Down Tišeji + Mute Ztlumit + Favorite Oblíbené + Unfavorite Odebrat z oblíbených + Song info Údaje o skladbě + New playlist Nový seznam skladeb + Add music Přidat hudbu + Rename playlist Přejmenovat seznam skladeb + Remove from playlist Odstranit ze seznamu skladeb + Help Nápověda + Display shortcuts Zobrazit klávesové zkratky @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nový seznam skladeb + My Favorites Moje oblíbené @@ -948,18 +1173,22 @@ SidebarMenu + Play Přehrát + Add songs Přidat skladby + Rename Přejmenovat + Delete Smazat @@ -967,26 +1196,36 @@ SortMenu + CD playlist Seznam stop na CD + Custom Uživatelsky určené + + + Date added Datum přidání + + Album Album + + Artist Umělec + Title Název @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 skladba + %1 songs %1 skladeb + Play All Přehrát vše @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Přehrát vše @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Postupné přehrávání + List loop Smyčka nad seznamem + Single loop Jediná smyčka + Shuffle Zamíchat + Unfavorite Odebrat z oblíbených + Favorite Oblíbené + My Favorites Moje oblíbené + Previous Předchozí + Play/Pause Přehrát/Pozastavit + Next Další + Lyrics Text písně + Play Queue Přehrát zařazené @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Nový seznam skladeb + New playlist Nový seznam skladeb + + Add music Přidat hudbu + Equalizer Ekvalizér + Settings Nastavení + Music Hudba + Music is a local music player with beautiful design and simple functions. Hudba je pěkný přehrávač hudby na místním disku s jednoduchými funkcemi. + Version: Verze: - Quit - Ukončit - - + Previous page Předchozí strana + Next page Další strana + Search Hledat - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_da.ts b/translations/deepin-music_da.ts index 166054d15..6123cc79a 100644 --- a/translations/deepin-music_da.ts +++ b/translations/deepin-music_da.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 sang + %1 songs %1 sange @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Kunstner + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Titel + Artist Kunstner + Duration Varrighed @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mine favoritter @@ -95,14 +115,17 @@ AlbumSublistView + Title Titel + Artist Kunstner + Duration Varrighed @@ -110,10 +133,12 @@ AlbumView + Albums Albums + %1 albums - %2 songs %1 albums - %2 sange @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 sang + %1 songs %1 sange @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mine favoritter @@ -174,18 +220,22 @@ AllMusicListView + Title Titel + Artist Kunstner + Album Album + Duration Varrighed @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 sang + %1 songs %1 sange @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Mine favoritter @@ -245,14 +305,17 @@ ArtistSublistView + Title Titel + Album Album + Duration Varrighed @@ -260,10 +323,12 @@ ArtistView + Artists Kunstnere + %1 artists - %2 songs %1 kunstner - %2 sange @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed - + + Cancel Annuller @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Minimer til systembakke + Exit Afslut + Do not ask again Spørg ikke igen + Cancel Annuller + Confirm Bekræft @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Afspilningskø + 1 song 1 sang + %1 songs %1 sange + Empty Tomt @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mine favoritter @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Mine favoritter + CD playlist - + + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Er du sikker på, at du vil slette %1? + Are you sure you want to delete the selected %1 songs? Er du sikker på, at du vil slette de %1 valgte sange? + The song files contained will also be deleted De sangfiler som er i slettes ogsåDe sangfiler som er i slettes også + Delete Slet + Cancel Annuller @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Er du sikker på, at du vil fjerne %1? + Are you sure you want to remove the selected %1 songs? Er du sikker på, at du vil fjerne de %1 valgte sange? + Are you sure you want to delete this playlist? Er du sikker på, at du vil slette afspilningslisten? + Remove Fjern + Delete Slet + Cancel Annuller @@ -400,105 +492,138 @@ EqualizerDialog + Custom Tilpasset + Monophony - + + Classical Klassisk + Club Klub + Dance Dance + Full Bass Fuld bas + Full Bass and Treble Fuld bas og diskant + Full Treble Fuld diskant + Headphones Hovedtelefoner + Hall - + + Live Live + Party Fest + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Blød + Soft Rock Blød rock + Techno Techno + Equalizer Equalizer + Save Gem + Reset Nulstil + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found Import mislykkedes - der blev ikke fundet nogen gyldig musikfil + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Afspilningskø + My favorites Mine favoritter + Create new playlist - + + New playlist Ny afspilningsliste @@ -525,80 +654,98 @@ LyricPage + Artist Kunstner + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musik + Play/Pause Afspil/pause + Previous Forrige + Next Næste + Exit Afslut + Already added to the playlist Allerede tilføjet til afspilningslisten + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Mine favoritter + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Fjern fra afspilningsliste + Delete from local disk Slet fra lokal disk @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliotek + Albums Albums + Artists Kunstnere + All Songs - + + Playlists Afspilningsliste + Create playlist - + + New playlist Ny afspilningsliste @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mine favoritter @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titel + Artist Kunstner + Album Album + Type Type + Size Størrelse + Duration Varrighed + Path Sti @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pause + Play Afspil + Add to - + + Open in file manager Åbn i filhåndtering + Remove from playlist Fjern fra afspilningsliste + Delete from local disk Slet fra lokal disk + Encoding Kodning + Song info Sanginfo @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Musik er en lokal musikafspiller med smukt design og simple funktioner. + Music Musik + Unknown album Ukendt album + Unknown artist Ukendt kunstner @@ -729,14 +903,17 @@ SearchResultDialog + Songs Sange + Artists Kunstnere + Albums Albums @@ -744,34 +921,42 @@ SearchResultWindow + No search results Ingen søgeresultater + Search Results Søgeresultater + %1 albums - %2 songs %1 albums - %2 sange + 1 album - 1 song 1 album - 1 sang + %1 album - %2 songs %1 album - %2 sange + Music Musik + Artist Kunstner + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Grundlæggende + Play Afspil + Autoplay Automatisk afspilning + Remember playback position on exit - + + Enable fade in/out Aktivér fade ind/ud + Close Main Window Luk hovedvindue + Minimize to system tray Minimer til systembakke + Exit Afslut + Ask me always - + + Shortcuts Genveje + Play/Pause Afspil/pause + Previous Forrige + Next Næste + Volume up Højere + Volume down Lavere + Favorite Favorit + Cancel Annuller + Replace Erstat + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Afspil + Songs Sange + Playlists Afspilningsliste + Settings Indstillinger + Play/Pause Afspil/pause + Previous Forrige + Next Næste + Volume Up Højere + Volume Down Lavere + Mute Lydløs + Favorite Favorit + Unfavorite Fjern fra favorit + Song info Sanginfo + New playlist Ny afspilningsliste + Add music Tilføj musik + Rename playlist Omdøb afspilningsliste + Remove from playlist Fjern fra afspilningsliste + Help Hjælp + Display shortcuts Vis genveje @@ -937,10 +1160,12 @@ Shortcuts + New playlist Ny afspilningsliste + My Favorites Mine favoritter @@ -948,18 +1173,22 @@ SidebarMenu + Play Afspil + Add songs - + + Rename Omdøb + Delete Slet @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Tilpasset + + + Date added - + + + Album Album + + Artist Kunstner + Title Titel @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 sang + %1 songs %1 sange + Play All Afspil alle @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Afspil alle @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Listeløkke + Single loop Én løkke + Shuffle Bland + Unfavorite Fjern fra favorit + Favorite Favorit + My Favorites Mine favoritter + Previous Forrige + Play/Pause Afspil/pause + Next Næste + Lyrics Sangtekster + Play Queue Afspilningskø @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Tilføj afspilningsliste + New playlist Ny afspilningsliste + + Add music Tilføj musik + Equalizer Equalizer + Settings Indstillinger + Music Musik + Music is a local music player with beautiful design and simple functions. Musik er en lokal musikafspiller med smukt design og simple funktioner. + Version: Version: - Quit - Afslut - - + Previous page - + + Next page - + + Search Søg - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_de.ts b/translations/deepin-music_de.ts index 6240cd2b3..9987ce2db 100644 --- a/translations/deepin-music_de.ts +++ b/translations/deepin-music_de.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders Ordner öffnen + Drag music files here or Ziehen Sie Musikdateien hierher oder - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 Lied + %1 songs %1 Lieder @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,33 +48,40 @@ AlbumListView + Album Album + Artist Künstler + Tracks - + + Date added - + AlbumMoreMenu + View details Details ansehen + Play all Alle abspielen + Add to Hinzufügen zu @@ -73,14 +89,17 @@ AlbumSublist + Title Titel + Artist Künstler + Duration Dauer @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Meine Favoriten @@ -95,14 +115,17 @@ AlbumSublistView + Title Titel + Artist Künstler + Duration Dauer @@ -110,10 +133,12 @@ AlbumView + Albums Alben + %1 albums - %2 songs %1 Alben - %2 Lieder @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders Ordner öffnen + Drag music files here or Ziehen Sie Musikdateien hierher oder - Your favorite songs will be displayed here. - + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 Lied + %1 songs %1 Lieder @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Meine Favoriten @@ -174,18 +220,22 @@ AllMusicListView + Title Titel + Artist Künstler + Album Album + Duration Dauer @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders Ordner öffnen + Drag music files here or Ziehen Sie Musikdateien hierher oder - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 Lied + %1 songs %1 Lieder @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Details ansehen + Play all Alle abspielen + Add to Hinzufügen zu @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Meine Favoriten @@ -245,14 +305,17 @@ ArtistSublistView + Title Titel + Album Album + Duration Dauer @@ -260,10 +323,12 @@ ArtistView + Artists Künstler + %1 artists - %2 songs %1 Künstler - %2 Lieder @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Die CD wurde entfernt + Cancel Abbrechen @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Bitte wählen Sie Ihre Aktion aus + Minimize to system tray In den Infobereich minimieren + Exit Beenden + Do not ask again Nicht erneut nachfragen + Cancel Abbrechen + Confirm Bestätigen @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Wiedergabeliste abspielen + 1 song 1 Lied + %1 songs %1 Lieder + Empty Leeren @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Meine Favoriten @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Meine Favoriten + CD playlist CD-Wiedergabeliste + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Sind Sie sicher, dass Sie %1 löschen möchten? + Are you sure you want to delete the selected %1 songs? Sind Sie sicher, dass Sie die ausgewählten %1 Lieder löschen möchten? + The song files contained will also be deleted Die enthaltenen Lieder werden ebenfalls gelöscht + Delete Löschen + Cancel Abbrechen @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Sind Sie sicher, dass Sie %1 entfernen möchten? + Are you sure you want to remove the selected %1 songs? Sind Sie sicher, dass Sie die ausgewählten %1 Lieder entfernen möchten? + Are you sure you want to delete this playlist? Sind Sie sicher, dass Sie diese Wiedergabeliste löschen möchten? + Remove Entfernen + Delete Löschen + Cancel Abbrechen @@ -400,105 +492,138 @@ EqualizerDialog + Custom Anwenderspezifisch + Monophony Monophonie + Classical Klassik + Club Club + Dance Dance + Full Bass Voll Bass + Full Bass and Treble Voll Bässe und Höhen + Full Treble Voll Treble + Headphones Kopfhörer + Hall Halle + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Equalizer + Save Speichern + Reset Zurücksetzen + Preamplifier Vorverstärker + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Import fehlgeschlagen, keine gültige Musikdatei gefunden + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Wiedergabeliste abspielen + My favorites Meine Favoriten + Create new playlist Neue Wiedergabeliste erstellen + New playlist Neue Wiedergabeliste @@ -525,80 +654,98 @@ LyricPage + Artist Künstler + Album Album + No lyrics found Keine Songtexte gefunden + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musik + Play/Pause Wiedergeben/Pausieren + Previous Zurück + Next Weiter + Exit Beenden + Already added to the playlist Bereits zur Wiedergabeliste hinzugefügt + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Meine Favoriten + All Songs - + MulitSelectMenu + Add to Hinzufügen zu + Remove from playlist Aus Wiedergabeliste entfernen + Delete from local disk Von lokalem Datenträger löschen @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliothek + Albums Alben + Artists Künstler + All Songs - + + Playlists Wiedergabelisten + Create playlist Wiedergabeliste erstellen + New playlist Neue Wiedergabeliste @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Meine Favoriten @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titel + Artist Künstler + Album Album + Type Typ + Size Größe + Duration Dauer + Path Pfad @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pause + Play Wiedergeben + Add to Hinzufügen zu + Open in file manager Im Dateimanager öffnen + Remove from playlist Aus Wiedergabeliste entfernen + Delete from local disk Von lokalem Datenträger löschen + Encoding Kodierung + Song info Songinfo @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Musik ist ein lokaler Musikplayer mit schönem Design und einfachen Funktionen. + Music Musik + Unknown album Unbekanntes Album + Unknown artist Unbekannter Künstler @@ -729,14 +903,17 @@ SearchResultDialog + Songs Lieder + Artists Künstler + Albums Alben @@ -744,34 +921,42 @@ SearchResultWindow + No search results Keine Suchergebnisse + Search Results Suchergebnisse + %1 albums - %2 songs %1 Alben - %2 Lieder + 1 album - 1 song 1 Album - 1 Lied + %1 album - %2 songs %1 Album - %2 Lieder + Music Musik + Artist Künstler + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Basis + Play Wiedergeben + Autoplay Automatische Wiedergabe + Remember playback position on exit Wiedergabeposition beim Beenden merken + Enable fade in/out Ein-/Ausblenden aktivieren + Close Main Window Hauptfenster schließen + Minimize to system tray In den Infobereich minimieren + Exit Beenden + Ask me always Immer nachfragen + Shortcuts Tastenkürzel + Play/Pause Wiedergeben/Pausieren + Previous Zurück + Next Weiter + Volume up Lautstärke erhöhen + Volume down Lautstärke verringern + Favorite Favorit + Cancel Abbrechen + Replace Ersetzen + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Wiedergeben + Songs Lieder + Playlists Wiedergabelisten + Settings Einstellungen + Play/Pause Abspielen/Pausieren + Previous Zurück + Next Weiter + Volume Up Lautstärke erhöhen + Volume Down Lautstärke verringern + Mute Stummschalten + Favorite Favorit + Unfavorite Entfavorisieren + Song info Songinfo + New playlist Neue Wiedergabeliste + Add music Musik hinzufügen + Rename playlist Wiedergabeliste umbenennen + Remove from playlist Aus Wiedergabeliste entfernen + Help Hilfe + Display shortcuts Tastenkürzel anzeigen @@ -937,10 +1160,12 @@ Shortcuts + New playlist Neue Wiedergabeliste + My Favorites Meine Favoriten @@ -948,18 +1173,22 @@ SidebarMenu + Play Wiedergeben + Add songs - + + Rename Umbenennen + Delete Löschen @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD-Wiedergabeliste + Custom Anwenderspezifisch + + + Date added - + + + Album Album + + Artist Künstler + Title Titel @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 Lied + %1 songs %1 Lieder + Play All Alle abspielen @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Alle abspielen @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Sequentielle Wiedergabe + List loop Liste wiederholen + Single loop Einzelne Schleife + Shuffle Zufallswiedergabe + Unfavorite Entfavorisieren + Favorite Favorit + My Favorites Meine Favoriten + Previous Zurück + Play/Pause Wiedergeben/Pausieren + Next Weiter + Lyrics Liedtexte + Play Queue Wiedergabeliste abspielen @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Wiedergabeliste hinzufügen + New playlist Neue Wiedergabeliste + + Add music Musik hinzufügen + Equalizer Equalizer + Settings Einstellungen + Music Musik + Music is a local music player with beautiful design and simple functions. Musik ist ein lokaler Musikplayer mit schönem Design und einfachen Funktionen. + Version: Version: - Quit - Verlassen - - + Previous page Vorherige Seite + Next page Nächste Seite + Search Suchen - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_el.ts b/translations/deepin-music_el.ts index ea1842ed6..68dc7601a 100644 --- a/translations/deepin-music_el.ts +++ b/translations/deepin-music_el.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 τραγούδι + %1 songs %1 τραγούδια @@ -32,55 +40,66 @@ AlbumListDelegate + %1 - + AlbumListView + Album Αλμπουμ + Artist Καλλιτέχνης + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Τίτλος + Artist Καλλιτέχνης + Duration Διάρκεια @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Αγαπημένα μου @@ -95,14 +115,17 @@ AlbumSublistView + Title Τίτλος + Artist Καλλιτέχνης + Duration Διάρκεια @@ -110,10 +133,12 @@ AlbumView + Albums Άλμπουμ + %1 albums - %2 songs %1 άλμπουμ - %2 τραγούδια @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 τραγούδι + %1 songs %1 τραγούδια @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Αγαπημένα μου @@ -174,18 +220,22 @@ AllMusicListView + Title Τίτλος + Artist Καλλιτέχνης + Album Αλμπουμ + Duration Διάρκεια @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 τραγούδι + %1 songs %1 τραγούδια @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Αγαπημένα μου @@ -245,14 +305,17 @@ ArtistSublistView + Title Τίτλος + Album Αλμπουμ + Duration Διάρκεια @@ -260,10 +323,12 @@ ArtistView + Artists Καλλιτέχνες + %1 artists - %2 songs %1 καλλιτέχνες - %2 τραγούδια @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed - + + Cancel Ακύρωση @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Παρακαλώ επιλέξτε την ενέργειά σας + Minimize to system tray Ελαχιστοποίηση στη γραμμή εργασιών + Exit Έξοδος + Do not ask again Μην ερωτήσεις ξανά + Cancel Ακύρωση + Confirm Επιβεβαίωση @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song 1 τραγούδι + %1 songs %1 τραγούδια + Empty Κενό @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Αγαπημένα μου @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Αγαπημένα μου + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Είστε βέβαιος ότι θέλετε να διαγράψετε %1; + Are you sure you want to delete the selected %1 songs? Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το %1 τραγουδιών; + The song files contained will also be deleted - + + Delete Διαγραφή + Cancel Ακύρωση @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove Αφαίρεση + Delete Διαγραφή + Cancel Ακύρωση @@ -400,105 +492,138 @@ EqualizerDialog + Custom Προσαρμογή + Monophony - + + Classical Κλασσική + Club Κλαμπ + Dance Χορευτική + Full Bass Πλήρη Μπάσα + Full Bass and Treble Πλήρη Μπάσα και Υψηλά + Full Treble Πλήρη Υψηλά + Headphones Ακουστικά + Hall - + + Live Ζωντανά + Party Πάρτι + Pop Ποπ + Reggae Ρέγκε + Rock Ροκ + Ska Σκα + Soft Μαλακή + Soft Rock Μαλακή Ροκ + Techno - + + Equalizer Ισοσταθμιστής + Save Αποθήκευση + Reset Επαναφορά + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Τα αγαπημένα μου + Create new playlist - + + New playlist Νέα λίστα αναπαραγωγής @@ -525,80 +654,98 @@ LyricPage + Artist Καλλιτέχνης + Album Αλμπουμ + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Μουσική + Play/Pause Αναπαραγωγή/Παύση + Previous Προηγούμενο + Next Επόμενο + Exit Έξοδος + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Ένας δίσκος συνδέθηκε + My Favorites Αγαπημένα μου + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Αφαίρεση από τη λίστα αναπαραγωγής + Delete from local disk Διαγραφή από τον τοπικό δίσκο @@ -606,30 +753,37 @@ MusicBaselistview + Library Βιβλιοθήκη + Albums Άλμπουμ + Artists Καλλιτέχνες + All Songs - + + Playlists - + + Create playlist - + + New playlist Νέα λίστα αναπαραγωγής @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Αγαπημένα μου @@ -644,30 +799,37 @@ MusicInfoDialog + Title Τίτλος + Artist Καλλιτέχνης + Album Αλμπουμ + Type Τύπος + Size Μέγεθος + Duration Διάρκεια + Path Διαδρομή @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Παύση + Play Αναπαραγωγή + Add to - + + Open in file manager Άνοιγμα στη διαχείριση αρχείων + Remove from playlist Αφαίρεση από τη λίστα αναπαραγωγής + Delete from local disk Διαγραφή από τον τοπικό δίσκο + Encoding Κωδικοποίηση + Song info Πληροφορίες τραγουδιού @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Μουσική + Unknown album Άγνωστο άλμπουμ + Unknown artist Άγνωστος καλλιτέχνης @@ -729,14 +903,17 @@ SearchResultDialog + Songs Τραγούδια + Artists Καλλιτέχνες + Albums Άλμπουμ @@ -744,34 +921,42 @@ SearchResultWindow + No search results Χωρίς αποτελέσματα αναζήτησης + Search Results Αποτελέσματα Αναζήτησης + %1 albums - %2 songs %1 άλμπουμ - %2 τραγούδια + 1 album - 1 song 1 άλμπουμ - 1 τραγούδι + %1 album - %2 songs %1 άλμπουμ - %2 τραγούδια + Music Μουσική + Artist Καλλιτέχνης + Album Αλμπουμ @@ -779,157 +964,195 @@ SettingsDialog + Basic Βασικές + Play Αναπαραγωγή + Autoplay Αυτόματη αναπαραγωγή + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray Ελαχιστοποίηση στη γραμμή εργασιών + Exit Έξοδος + Ask me always Πάντα να γίνεται ερώτηση + Shortcuts Συντομεύσεις + Play/Pause Αναπαραγωγή/Παύση + Previous Προηγούμενο + Next Επόμενο + Volume up Αύξηση έντασης + Volume down Μείωση έντασης + Favorite Αγαπημένα + Cancel Ακύρωση + Replace Αντικατάσταση + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Αναπαραγωγή + Songs Τραγούδια + Playlists - + + Settings Ρυθμίσεις + Play/Pause Αναπαραγωγή/Παύση + Previous Προηγούμενο + Next Επόμενο + Volume Up Αύξηση Έντασης + Volume Down Μείωση Έντασης + Mute Σίγαση + Favorite Αγαπημένα + Unfavorite - + + Song info Πληροφορίες τραγουδιού + New playlist Νέα λίστα αναπαραγωγής + Add music Πρόσθεσε μουσική + Rename playlist - + + Remove from playlist Αφαίρεση από τη λίστα αναπαραγωγής + Help Βοήθεια + Display shortcuts Προβολή συντομεύσεων @@ -937,10 +1160,12 @@ Shortcuts + New playlist Νέα λίστα αναπαραγωγής + My Favorites Αγαπημένα μου @@ -948,18 +1173,22 @@ SidebarMenu + Play Αναπαραγωγή + Add songs - + + Rename Μετονομασία + Delete Διαγραφή @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Προσαρμογή + + + Date added - + + + Album Αλμπουμ + + Artist Καλλιτέχνης + Title Τίτλος @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 τραγούδι + %1 songs %1 τραγούδια + Play All Αναπαραγωγή Όλων @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Αναπαραγωγή Όλων @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Ανακάτεψε + Unfavorite - + + Favorite Αγαπημένα + My Favorites Αγαπημένα μου + Previous Προηγούμενο + Play/Pause Αναπαραγωγή/Παύση + Next Επόμενο + Lyrics Στίχοι + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Νέα λίστα αναπαραγωγής + + Add music Πρόσθεσε μουσική + Equalizer Ισοσταθμιστής + Settings Ρυθμίσεις + Music Μουσική + Music is a local music player with beautiful design and simple functions. - + + Version: Έκδοση: - Quit - Έξοδος - - + Previous page - + + Next page - + + Search Αναζήτηση - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_en.ts b/translations/deepin-music_en.ts index f5357ea2c..6d2bc8d4f 100644 --- a/translations/deepin-music_en.ts +++ b/translations/deepin-music_en.ts @@ -4,18 +4,22 @@ AlbumDefaultPage + Add Songs Add Songs + Open Folders Open Folders + Drag music files here or Drag music files here or + scan the Music directory scan the Music directory @@ -23,10 +27,12 @@ AlbumGridDelegate + 1 song 1 song + %1 songs %1 songs @@ -34,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -41,18 +48,22 @@ AlbumListView + Album Album + Artist Artist + Tracks Tracks + Date added Date added @@ -60,14 +71,17 @@ AlbumMoreMenu + View details View details + Play all Play all + Add to Add to @@ -75,14 +89,17 @@ AlbumSublist + Title Title + Artist Artist + Duration Duration @@ -90,6 +107,7 @@ AlbumSublistDelegate + My Favorites My Favorites @@ -97,14 +115,17 @@ AlbumSublistView + Title Title + Artist Artist + Duration Duration @@ -112,10 +133,12 @@ AlbumView + Albums Albums + %1 albums - %2 songs %1 albums - %2 songs @@ -123,38 +146,47 @@ AllMusicDefaultPage + Add Songs Add Songs + Open Folders Open Folders + Drag music files here or Drag music files here or + scan the Music directory scan the Music directory + Your favorite songs will be displayed here Your favorite songs will be displayed here + Click “ Click “ + ” to add a song to My Favorites ” to add a song to My Favorites + No songs yet. Click “ No songs yet. Click “ + ” to add songs to the playlist ” to add songs to the playlist @@ -162,14 +194,17 @@ AllMusicList + All Songs All Songs + 1 song 1 song + %1 songs %1 songs @@ -177,6 +212,7 @@ AllMusicListDelegate + My Favorites My Favorites @@ -184,18 +220,22 @@ AllMusicListView + Title Title + Artist Artist + Album Album + Duration Duration @@ -203,18 +243,22 @@ ArtistDefaultPage + Add Songs Add Songs + Open Folders Open Folders + Drag music files here or Drag music files here or + scan the Music directory scan the Music directory @@ -222,10 +266,12 @@ ArtistGridDelegate + 1 song 1 song + %1 songs %1 songs @@ -233,14 +279,17 @@ ArtistMoreMenu + View details View details + Play all Play all + Add to Add to @@ -248,6 +297,7 @@ ArtistSublistDelegate + My Favorites My Favorites @@ -255,14 +305,17 @@ ArtistSublistView + Title Title + Album Album + Duration Duration @@ -270,10 +323,12 @@ ArtistView + Artists Artists + %1 artists - %2 songs %1 artists - %2 songs @@ -281,10 +336,12 @@ CDRemovedDialog + The CD has been removed The CD has been removed + Cancel Cancel @@ -292,26 +349,32 @@ CloseConfirmDialog + Please choose your action Please choose your action + Minimize to system tray Minimize to system tray + Exit Exit + Do not ask again Do not ask again + Cancel Cancel + Confirm Confirm @@ -319,18 +382,22 @@ CurrentPlayList + Play queue Play queue + 1 song 1 song + %1 songs %1 songs + Empty Empty @@ -338,6 +405,7 @@ CurrentPlayListDelegate + My Favorites My Favorites @@ -345,14 +413,17 @@ CustomPlaylistModel + My Favorites My Favorites + CD playlist CD playlist + CD CD @@ -360,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Are you sure you want to delete %1? + Are you sure you want to delete the selected %1 songs? Are you sure you want to delete the selected %1 songs? + The song files contained will also be deleted The song files contained will also be deleted + Delete Delete + Cancel Cancel @@ -383,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Are you sure you want to remove %1? + Are you sure you want to remove the selected %1 songs? Are you sure you want to remove the selected %1 songs? + Are you sure you want to delete this playlist? Are you sure you want to delete this playlist? + Remove Remove + Delete Delete + Cancel Cancel @@ -410,105 +492,138 @@ EqualizerDialog + Custom Custom + Monophony Monophony + Classical Classical + Club Club + Dance Dance + Full Bass Full Bass + Full Bass and Treble Full Bass and Treble + Full Treble Full Treble + Headphones Headphones + Hall Hall + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Equalizer + Save Save + Reset Reset + Preamplifier Preamplifier + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Import failed, no valid music file found + OK OK @@ -516,18 +631,22 @@ ImportMenu + Play queue Play queue + My favorites My favorites + Create new playlist Create new playlist + New playlist New playlist @@ -535,18 +654,22 @@ LyricPage + Artist Artist + Album Album + No lyrics found No lyrics found + Please put the lyric file (same name as the song) and the song file in the same folder Please put the lyric file (same name as the song) and the song file in the same folder @@ -554,46 +677,57 @@ MainWindow + Music Music + Play/Pause Play/Pause + Previous Previous + Next Next + Exit Exit + Already added to the playlist Already added to the playlist + Added to "%1" Added to "%1" + Removed from "My Favorites" Removed from "My Favorites" + A disc is connected A disc is connected + My Favorites My Favorites + All Songs All Songs @@ -601,14 +735,17 @@ MulitSelectMenu + Add to Add to + Remove from playlist Remove from playlist + Delete from local disk Delete from local disk @@ -616,30 +753,37 @@ MusicBaselistview + Library Library + Albums Albums + Artists Artists + All Songs All Songs + Playlists Playlists + Create playlist Create playlist + New playlist New playlist @@ -647,6 +791,7 @@ MusicContentWindow + My Favorites My Favorites @@ -654,30 +799,37 @@ MusicInfoDialog + Title Title + Artist Artist + Album Album + Type Type + Size Size + Duration Duration + Path Path @@ -685,34 +837,42 @@ MusicMoreMenu + Pause Pause + Play Play + Add to Add to + Open in file manager Open in file manager + Remove from playlist Remove from playlist + Delete from local disk Delete from local disk + Encoding Encoding + Song info Song info @@ -720,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Music is a local music player with beautiful design and simple functions. + Music Music + Unknown album Unknown album + Unknown artist Unknown artist @@ -739,14 +903,17 @@ SearchResultDialog + Songs Songs + Artists Artists + Albums Albums @@ -754,34 +921,42 @@ SearchResultWindow + No search results No search results + Search Results Search Results + %1 albums - %2 songs %1 albums - %2 songs + 1 album - 1 song 1 album - 1 song + %1 album - %2 songs %1 album - %2 songs + Music Music + Artist Artist + Album Album @@ -789,78 +964,97 @@ SettingsDialog + Basic Basic + Play Play + Autoplay Autoplay + Remember playback position on exit Remember playback position on exit + Enable fade in/out Enable fade in/out + Close Main Window Close Main Window + Minimize to system tray Minimize to system tray + Exit Exit + Ask me always Ask me always + Shortcuts Shortcuts + Play/Pause Play/Pause + Previous Previous + Next Next + Volume up Volume up + Volume down Volume down + Favorite Favorite + Cancel Cancel + Replace + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately @@ -868,78 +1062,97 @@ Shortcut + Play Play + Songs Songs + Playlists Playlists + Settings Settings + Play/Pause Play/Pause + Previous Previous + Next Next + Volume Up Volume Up + Volume Down Volume Down + Mute Mute + Favorite Favorite + Unfavorite Unfavorite + Song info Song info + New playlist New playlist + Add music Add music + Rename playlist Rename playlist + Remove from playlist Remove from playlist + Help Help + Display shortcuts Display shortcuts @@ -947,10 +1160,12 @@ Shortcuts + New playlist New playlist + My Favorites My Favorites @@ -958,18 +1173,22 @@ SidebarMenu + Play Play + Add songs Add songs + Rename Rename + Delete Delete @@ -977,26 +1196,36 @@ SortMenu + CD playlist CD playlist + Custom Custom + + + Date added Date added + + Album Album + + Artist Artist + Title Title @@ -1004,14 +1233,17 @@ SublistTitleButton + 1 song 1 song + %1 songs %1 songs + Play All Play All @@ -1019,6 +1251,7 @@ ToolButtonItem + Play All Play All @@ -1026,50 +1259,62 @@ Toolbar + Sequential play Sequential play + List loop List loop + Single loop Single loop + Shuffle Shuffle + Unfavorite Unfavorite + Favorite Favorite + My Favorites My Favorites + Previous Previous + Play/Pause Play/Pause + Next Next + Lyrics Lyrics + Play Queue Play Queue @@ -1077,56 +1322,60 @@ WindowTitlebar + Add playlist Add playlist + New playlist New playlist + + Add music Add music + Equalizer Equalizer + Settings Settings + Music Music + Music is a local music player with beautiful design and simple functions. Music is a local music player with beautiful design and simple functions. + Version: Version: - Quit - Quit - - + Previous page Previous page + Next page Next page + Search Search - - %1 is released under %2 - - diff --git a/translations/deepin-music_en_AU.ts b/translations/deepin-music_en_AU.ts index c443e9496..fbcd59b8c 100644 --- a/translations/deepin-music_en_AU.ts +++ b/translations/deepin-music_en_AU.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Cancel @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit Exit + Do not ask again - + + Cancel Cancel + Confirm Confirm @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Empty @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Delete + Cancel Cancel @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Delete + Cancel Cancel @@ -400,105 +492,138 @@ EqualizerDialog + Custom Custom + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft Soft + Soft Rock - + + Techno - + + Equalizer - + + Save Save + Reset Reset + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Music + Play/Pause Play/Pause + Previous Previous + Next Next + Exit Exit + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type Type + Size Size + Duration - + + Path - + MusicMoreMenu + Pause Pause + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Music + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results No search results + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Music + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit Exit + Ask me always Ask me always + Shortcuts Shortcuts + Play/Pause Play/Pause + Previous Previous + Next Next + Volume up Volume up + Volume down Volume down + Favorite - + + Cancel Cancel + Replace Replace + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings Settings + Play/Pause Play/Pause + Previous Previous + Next Next + Volume Up - + + Volume Down - + + Mute Mute + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help Help + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete Delete @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom Custom + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous Previous + Play/Pause Play/Pause + Next Next + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings Settings + Music Music + Music is a local music player with beautiful design and simple functions. - + + Version: Version: - Quit - Quit - - + Previous page - + + Next page - + + Search Search - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_en_US.ts b/translations/deepin-music_en_US.ts index 70b83d8e3..84fcc5b47 100644 --- a/translations/deepin-music_en_US.ts +++ b/translations/deepin-music_en_US.ts @@ -4,29 +4,35 @@ AlbumDefaultPage + Add Songs + Open Folders + Drag music files here or - scan the Music directory + + scan the Music directory AlbumGridDelegate + 1 song + %1 songs @@ -34,6 +40,7 @@ AlbumListDelegate + %1 @@ -41,18 +48,22 @@ AlbumListView + Album + Artist + Tracks + Date added @@ -60,14 +71,17 @@ AlbumMoreMenu + View details + Play all + Add to @@ -75,14 +89,17 @@ AlbumSublist + Title + Artist + Duration @@ -90,6 +107,7 @@ AlbumSublistDelegate + My Favorites @@ -97,14 +115,17 @@ AlbumSublistView + Title + Artist + Duration @@ -112,10 +133,12 @@ AlbumView + Albums + %1 albums - %2 songs @@ -123,30 +146,47 @@ AllMusicDefaultPage + Add Songs + Open Folders + Drag music files here or - Your favorite songs will be displayed here. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites - Click“ ♥ ”to add a song to My Favorites + + No songs yet. Click “ - No songs yet. Click“ ➕ ”to add songs to the playlist. + + ” to add songs to the playlist + scan the Music directory @@ -154,14 +194,17 @@ AllMusicList + All Songs + 1 song + %1 songs @@ -169,6 +212,7 @@ AllMusicListDelegate + My Favorites @@ -176,18 +220,22 @@ AllMusicListView + Title + Artist + Album + Duration @@ -195,29 +243,35 @@ ArtistDefaultPage + Add Songs + Open Folders + Drag music files here or - scan the Music directory + + scan the Music directory ArtistGridDelegate + 1 song + %1 songs @@ -225,14 +279,17 @@ ArtistMoreMenu + View details + Play all + Add to @@ -240,6 +297,7 @@ ArtistSublistDelegate + My Favorites @@ -247,14 +305,17 @@ ArtistSublistView + Title + Album + Duration @@ -262,10 +323,12 @@ ArtistView + Artists + %1 artists - %2 songs @@ -273,10 +336,12 @@ CDRemovedDialog + The CD has been removed + Cancel @@ -284,26 +349,32 @@ CloseConfirmDialog + Please choose your action + Minimize to system tray + Exit + Do not ask again + Cancel + Confirm @@ -311,18 +382,22 @@ CurrentPlayList + Play queue + 1 song + %1 songs + Empty @@ -330,6 +405,7 @@ CurrentPlayListDelegate + My Favorites @@ -337,14 +413,17 @@ CustomPlaylistModel + My Favorites + CD playlist + CD @@ -352,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? + Are you sure you want to delete the selected %1 songs? + The song files contained will also be deleted + Delete + Cancel @@ -375,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? + Are you sure you want to remove the selected %1 songs? + Are you sure you want to delete this playlist? + Remove + Delete + Cancel @@ -402,105 +492,138 @@ EqualizerDialog + Custom + Monophony + Classical + Club + Dance + Full Bass + Full Bass and Treble + Full Treble + Headphones + Hall + Live + Party + Pop + Reggae + Rock + Ska + Soft + Soft Rock + Techno + Equalizer + Save + Reset + Preamplifier + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found + OK @@ -508,18 +631,22 @@ ImportMenu + Play queue + My favorites + Create new playlist + New playlist @@ -527,18 +654,22 @@ LyricPage + Artist + Album + No lyrics found + Please put the lyric file (same name as the song) and the song file in the same folder @@ -546,46 +677,57 @@ MainWindow + Music + Play/Pause + Previous + Next + Exit + Already added to the playlist + Added to "%1" + Removed from "My Favorites" + A disc is connected + My Favorites + All Songs @@ -593,14 +735,17 @@ MulitSelectMenu + Add to + Remove from playlist + Delete from local disk @@ -608,30 +753,37 @@ MusicBaselistview + Library + Albums + Artists + All Songs + Playlists + Create playlist + New playlist @@ -639,6 +791,7 @@ MusicContentWindow + My Favorites @@ -646,30 +799,37 @@ MusicInfoDialog + Title + Artist + Album + Type + Size + Duration + Path @@ -677,34 +837,42 @@ MusicMoreMenu + Pause + Play + Add to + Open in file manager + Remove from playlist + Delete from local disk + Encoding + Song info @@ -712,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. + Music + Unknown album + Unknown artist @@ -731,14 +903,17 @@ SearchResultDialog + Songs + Artists + Albums @@ -746,34 +921,42 @@ SearchResultWindow + No search results + Search Results + %1 albums - %2 songs + 1 album - 1 song + %1 album - %2 songs + Music + Artist + Album @@ -781,78 +964,97 @@ SettingsDialog + Basic + Play + Autoplay + Remember playback position on exit + Enable fade in/out + Close Main Window + Minimize to system tray + Exit + Ask me always + Shortcuts + Play/Pause + Previous + Next + Volume up + Volume down + Favorite + Cancel + Replace + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately @@ -860,78 +1062,97 @@ Shortcut + Play + Songs + Playlists + Settings + Play/Pause + Previous + Next + Volume Up + Volume Down + Mute + Favorite + Unfavorite + Song info + New playlist + Add music + Rename playlist + Remove from playlist + Help + Display shortcuts @@ -939,10 +1160,12 @@ Shortcuts + New playlist + My Favorites @@ -950,18 +1173,22 @@ SidebarMenu + Play + Add songs + Rename + Delete @@ -969,26 +1196,36 @@ SortMenu + CD playlist + Custom + + + Date added + + Album + + Artist + Title @@ -996,14 +1233,17 @@ SublistTitleButton + 1 song + %1 songs + Play All @@ -1011,6 +1251,7 @@ ToolButtonItem + Play All @@ -1018,50 +1259,62 @@ Toolbar + Sequential play + List loop + Single loop + Shuffle + Unfavorite + Favorite + My Favorites + Previous + Play/Pause + Next + Lyrics + Play Queue @@ -1069,56 +1322,60 @@ WindowTitlebar + Add playlist + New playlist + + Add music + Equalizer + Settings + Music + Music is a local music player with beautiful design and simple functions. + Version: - Quit - - - + Previous page + Next page + Search - - %1 is released under %2 - - diff --git a/translations/deepin-music_eo.ts b/translations/deepin-music_eo.ts index ebce98b60..064a14308 100644 --- a/translations/deepin-music_eo.ts +++ b/translations/deepin-music_eo.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Nuligi @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit Eliri + Do not ask again - + + Cancel Nuligi + Confirm Konfirmi @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Vakua @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Forigi + Cancel Nuligi @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Forigi + Cancel Nuligi @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personigo + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft Malpeza + Soft Rock - + + Techno - + + Equalizer - + + Save Gardi + Reset Restarigi + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Muziko + Play/Pause - + + Previous Antaŭa + Next Sekva + Exit Eliri + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type Tipo + Size Dimensio + Duration - + + Path - + MusicMoreMenu + Pause Paŭzo + Play Ludi + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Muziko + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Neniu serĉrezulton + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Muziko + Artist - + + Album - + SettingsDialog + Basic - + + Play Ludi + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit Eliri + Ask me always - + + Shortcuts Fulmoklavoj + Play/Pause - + + Previous Antaŭa + Next Sekva + Volume up - + + Volume down - + + Favorite - + + Cancel Nuligi + Replace Anstataŭigi + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Ludi + Songs - + + Playlists - + + Settings Agordoj + Play/Pause - + + Previous Antaŭa + Next Sekva + Volume Up Laŭtigi + Volume Down Mallaŭtigi + Mute Muta + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help Helpo + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play Ludi + Add songs - + + Rename - + + Delete Forigi @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom Personigo + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous Antaŭa + Play/Pause - + + Next Sekva + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings Agordoj + Music Muziko + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - Ĉesigi + + Previous page - + + Next page - + + Search Serĉi - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_es.ts b/translations/deepin-music_es.ts index 8a6a4c7f9..19b9ef038 100644 --- a/translations/deepin-music_es.ts +++ b/translations/deepin-music_es.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Agregar canciones + Open Folders Abrir carpetas + Drag music files here or Arrastre los archivos de música aquí - scan the Music directory - Escanear el directorio de música + + scan the Music directory + AlbumGridDelegate + 1 song 1 canción + %1 songs %1 canciones @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Álbum + Artist Artista + Tracks Pistas + Date added Fecha de adición @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Ver detalles + Play all Reproducir todo + Add to Añadir a @@ -73,14 +89,17 @@ AlbumSublist + Title Título + Artist Artista + Duration Duración @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mis favoritos @@ -95,14 +115,17 @@ AlbumSublistView + Title Título + Artist Artista + Duration Duración @@ -110,10 +133,12 @@ AlbumView + Albums Álbumes + %1 albums - %2 songs %1 álbumes - %2 canciones @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs Agregar canciones + Open Folders Abrir carpetas + Drag music files here or Arrastre los archivos de música aquí - Your favorite songs will be displayed here. - Tus canciones favoritas se mostrarán aquí. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - Clic en "♥" para agregar una canción a Mis favorita + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Aún no hay canciones. Clic en “➕” para agregar canciones a la lista de reproducción + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs Todas las canciones + 1 song 1 canción + %1 songs %1 canciones @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mis favoritos @@ -174,18 +220,22 @@ AllMusicListView + Title Título + Artist Artista + Album Álbum + Duration Duración @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Agregar canciones + Open Folders Abrir carpeta + Drag music files here or Arrastre los archivos de música aquí - scan the Music directory - Escanear el directorio de música + + scan the Music directory + ArtistGridDelegate + 1 song 1 canción + %1 songs %1 canciones @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Ver detalles + Play all Reproducir todo + Add to Añadir a @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Mis favoritos @@ -245,14 +305,17 @@ ArtistSublistView + Title Título + Album Álbum + Duration Duración @@ -260,10 +323,12 @@ ArtistView + Artists Artistas + %1 artists - %2 songs %1 artistas - %2 canciones @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed El CD fue removido + Cancel Cancelar @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Por favor, elija su acción + Minimize to system tray Minimizar a bandeja de sistema + Exit Salir + Do not ask again No preguntar de nuevo + Cancel Cancelar + Confirm Confirmar @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Cola de reproducción + 1 song 1 canción + %1 songs %1 canciones + Empty Vaciar @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mis favoritos @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Mis favoritos + CD playlist Lista de reproducción de CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? ¿Está seguro que quiere borrar %1? + Are you sure you want to delete the selected %1 songs? ¿Está seguro de borrar las %1 canciones seleccionadas? + The song files contained will also be deleted Los archivos de canciones contenidos también serán borrados + Delete Borrar + Cancel Cancelar @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? ¿Está seguro que quiere quitar %1? + Are you sure you want to remove the selected %1 songs? ¿Está seguro de que quiere quitar las %1 canciones seleccionadas? + Are you sure you want to delete this playlist? ¿Esta seguro de borrar esta lista de reproducción? + Remove Quitar + Delete Borrar + Cancel Cancelar @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personailzar + Monophony Monofonía + Classical Clasica + Club Club + Dance Bailable + Full Bass Bajos completo + Full Bass and Treble Bajos y agudos completos + Full Treble Agudos completo + Headphones Audifonos + Hall Hall + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Ecualizador + Save Guardar + Reset Reiniciar + Preamplifier Preamplificador + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found La importación falló, no se encontró ningún archivo de música válido + OK Aceptar @@ -506,18 +631,22 @@ ImportMenu + Play queue Cola de reproducción + My favorites Mis favoritos + Create new playlist Crear nueva lista de reproducción + New playlist Nueva lista de reproducción @@ -525,18 +654,22 @@ LyricPage + Artist Artista + Album Álbum + No lyrics found No se Encontraron Letras + Please put the lyric file (same name as the song) and the song file in the same folder Coloque el archivo de la letra (de igual nombre que la canción) y el archivo de la canción en la misma carpeta. @@ -544,46 +677,57 @@ MainWindow + Music Música + Play/Pause Reproducir/Pausar + Previous Anterior + Next Siguiente + Exit Salir + Already added to the playlist Ya se ha añadido a la lista de reproducción + Added to "%1" Agregado a "%1" + Removed from "My Favorites" Remover de "Mis Favoritos" + A disc is connected Un disco está conectado + My Favorites Mis favoritos + All Songs Todas las cancione @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Añadir a + Remove from playlist Quitar de la lista de reproducción + Delete from local disk Borrar del disco local @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteca + Albums Álbumes + Artists Artistas + All Songs Todas las cancione + Playlists Listas de reproducción + Create playlist Crear lista de reproducción + New playlist Nueva lista de reproducción @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mis favoritos @@ -644,30 +799,37 @@ MusicInfoDialog + Title Título + Artist Artista + Album Álbum + Type Tipo + Size Tamaño + Duration Duración + Path Ruta de acceso @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausar + Play Reproducir + Add to Añadir a + Open in file manager Abrir en administrador de archivos + Remove from playlist Quitar de la lista de reproducción + Delete from local disk Borrar del disco local + Encoding Codificación + Song info Información de canción @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Música de Deepin es un reproductor de música local con diseño hermoso y funciones fáciles de usar. + Music Música + Unknown album Álbum desconocido + Unknown artist Artista desconocido @@ -729,14 +903,17 @@ SearchResultDialog + Songs Canciones + Artists Artistas + Albums Álbumes @@ -744,34 +921,42 @@ SearchResultWindow + No search results Sin resultados + Search Results Buscar resultado + %1 albums - %2 songs %1 álbumes - %2 canciones + 1 album - 1 song 1 álbum - 1 canción + %1 album - %2 songs %1 álbum - %2 canciones + Music Música + Artist Artista + Album Álbum @@ -779,157 +964,195 @@ SettingsDialog + Basic Básico + Play Reproducir + Autoplay Reproducción automática + Remember playback position on exit Recordar la posición de reproducción al salir + Enable fade in/out Activar desvanecimiento + Close Main Window Cerrar ventana principal + Minimize to system tray Minimizar a bandeja de sistema + Exit Salir + Ask me always Pregúntarme siempre + Shortcuts Atajos + Play/Pause Reproducir/Pausar + Previous Anterior + Next Siguiente + Volume up Subir volumen + Volume down Bajar volumen + Favorite Favorito + Cancel Cancelar + Replace Reemplazar + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Reproducir + Songs Canciones + Playlists Listas de reproducción + Settings Ajustes + Play/Pause Reproducir/Pausar + Previous Anterior + Next Siguiente + Volume Up Subir volumen + Volume Down Bajar volumen + Mute Silenciar + Favorite Favorito + Unfavorite Quitar favorito + Song info Información de canción + New playlist Nueva lista de reproducción + Add music Añadir música + Rename playlist Renombrar lista de reproducción + Remove from playlist Quitar de la lista de reproducción + Help Ayuda + Display shortcuts Mostrar atajos @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nueva lista de reproducción + My Favorites Mis favoritos @@ -948,18 +1173,22 @@ SidebarMenu + Play Reproducir + Add songs Agregar canciones + Rename Renombrar + Delete Borrar @@ -967,26 +1196,36 @@ SortMenu + CD playlist Lista de reproducción de CD + Custom Personailzar + + + Date added Fecha de adición + + Album Álbum + + Artist Artista + Title Título @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 canción + %1 songs %1 canciones + Play All Reproducir todo @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reproducir todo @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Reproducción secuencial + List loop Bucle de lista + Single loop Bucle simple + Shuffle Aleatorio + Unfavorite Quitar favorito + Favorite Favorito + My Favorites Mis favoritos + Previous Anterior + Play/Pause Reproducir/Pausar + Next Siguiente + Lyrics Letras + Play Queue Cola de reproducción @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Añadir lista de reproducción + New playlist Nueva lista de reproducción + + Add music Añadir música + Equalizer Ecualizador + Settings Ajustes + Music Música + Music is a local music player with beautiful design and simple functions. Música de Deepin es un reproductor de música local con diseño hermoso y funciones fáciles de usar. + Version: Versión: - Quit - Salir - - + Previous page Página anterior + Next page Página siguiente + Search Buscar en Internet - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_fa.ts b/translations/deepin-music_fa.ts index e24a44a18..0569c83f5 100644 --- a/translations/deepin-music_fa.ts +++ b/translations/deepin-music_fa.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,242 +48,300 @@ AlbumListView + Album - + + Artist هنرمند + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title عنوان + Artist هنرمند + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title عنوان + Artist هنرمند + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title عنوان + Artist هنرمند + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title عنوان + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel انصراف @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray کوچک نمایی + Exit خروج + Do not ask again دوباره نپرس + Cancel انصراف + Confirm تایید @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty خالی @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? آیا شما ۱٪ از حذف اطمینان دارید؟ + Are you sure you want to delete the selected %1 songs? آیا شما ۱ ٪ از حذف این آهنگ اطمینان دارید؟ + The song files contained will also be deleted - + + Delete حذف + Cancel انصراف @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? آیا شما از حذف این پلی لیست اطمینان دارید؟ + Remove - + + Delete حذف + Cancel انصراف @@ -400,105 +492,138 @@ EqualizerDialog + Custom شخصی + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live زنده + Party - + + Pop پاپ + Reggae - + + Rock راک + Ska - + + Soft نرم + Soft Rock - + + Techno - + + Equalizer - + + Save ذخیره + Reset تنظیم مجدد + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK تایید @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites مورد علاقه + Create new playlist - + + New playlist لیست پخش جدید @@ -525,80 +654,98 @@ LyricPage + Artist هنرمند + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music موسیقی + Play/Pause پخش/مکث + Previous قبلی + Next بعدی + Exit خروج + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist حذف از لیست پخش + Delete from local disk حذف از دیسک محلی @@ -606,30 +753,37 @@ MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist لیست پخش جدید @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title عنوان + Artist هنرمند + Album - + + Type - + + Size حجم + Duration - + + Path مسیر @@ -675,34 +837,42 @@ MusicMoreMenu + Pause مکث + Play پخش + Add to - + + Open in file manager باز کردن در مدیر فایل + Remove from playlist حذف از لیست پخش + Delete from local disk حذف از دیسک محلی + Encoding کدگذاری + Song info اطلاعات صدا @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music موسیقی + Unknown album آلبوم نامشخص + Unknown artist هنرمند ناشناخته @@ -729,207 +903,256 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results نتیجه جستجو یافت نشد + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music موسیقی + Artist هنرمند + Album - + SettingsDialog + Basic پایه ای + Play پخش + Autoplay پخش حودکار + Remember playback position on exit - + + Enable fade in/out فعال کردن محو شدن/نشدن + Close Main Window بستن پنجره اصلی + Minimize to system tray کوچک نمایی + Exit خروج + Ask me always - + + Shortcuts میانبر + Play/Pause پخش/مکث + Previous قبلی + Next بعدی + Volume up افزایش صدا + Volume down کاهش صدا + Favorite مورد علاقه + Cancel انصراف + Replace جایگزین + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play پخش + Songs - + + Playlists - + + Settings تنظیمات + Play/Pause پخش/مکث + Previous قبلی + Next بعدی + Volume Up - + + Volume Down - + + Mute بی صدا + Favorite مورد علاقه + Unfavorite - + + Song info اطلاعات صدا + New playlist لیست پخش جدید + Add music افزودن موسقی + Rename playlist - + + Remove from playlist حذف از لیست پخش + Help راهنما + Display shortcuts نمایش میانبرها @@ -937,29 +1160,35 @@ Shortcuts + New playlist لیست پخش جدید + My Favorites - + SidebarMenu + Play پخش + Add songs - + + Rename تغییر نام + Delete حذف @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom شخصی + + + Date added - + + + Album - + + + Artist هنرمند + Title عنوان @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All پخش همه @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All پخش همه @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle تصادفی + Unfavorite - + + Favorite مورد علاقه + My Favorites - + + Previous قبلی + Play/Pause پخش/مکث + Next بعدی + Lyrics متن + Play Queue - + WindowTitlebar + Add playlist - + + New playlist لیست پخش جدید + + Add music افزودن موسقی + Equalizer - + + Settings تنظیمات + Music موسیقی + Music is a local music player with beautiful design and simple functions. - + + Version: نسخه: - Quit - خروج - - + Previous page - + + Next page - + + Search جستجو - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_fi.ts b/translations/deepin-music_fi.ts index 6d9592006..1062086bf 100644 --- a/translations/deepin-music_fi.ts +++ b/translations/deepin-music_fi.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Lisää kappaleita + Open Folders Avaa kansiot + Drag music files here or Vedä musiikkitiedostoja tänne tai - scan the Music directory - hae ne Musiikki kansiosta + + scan the Music directory + hae ne Musiikki kansiosta AlbumGridDelegate + 1 song 1 kappale + %1 songs %1 kappaletta @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Albumi + Artist Esittäjä + Tracks Kappaleet + Date added Lisätty @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Näytä tiedot + Play all Toista kaikki + Add to Lisää @@ -73,14 +89,17 @@ AlbumSublist + Title Nimi + Artist Esittäjä + Duration Kesto @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Minun suosikit @@ -95,14 +115,17 @@ AlbumSublistView + Title Nimi + Artist Esittäjä + Duration Kesto @@ -110,10 +133,12 @@ AlbumView + Albums Albumit + %1 albums - %2 songs %1 albumia - %2 kappaletta @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Lisää kappaleita + Open Folders Avaa kansiot + Drag music files here or Vedä musiikkitiedostoja tänne tai - Your favorite songs will be displayed here. - Sinun suosikkit näkyvät täällä. + + Your favorite songs will be displayed here + - Click“ ♥ ”to add a song to My Favorites - Paina“ ♥ ”tämä lisää kappaleen "Minun suosikit" + + Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Ei vielä kappaleita. Paina“ ➕ ”tämä lisää kappaleita soittolistaan. + + ” to add a song to My Favorites + + + No songs yet. Click “ + + + + + ” to add songs to the playlist + + + + scan the Music directory hae ne Musiikki kansiosta @@ -152,14 +194,17 @@ AllMusicList + All Songs Kaikki kappaleet + 1 song 1 kappale + %1 songs %1 kappaletta @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Minun suosikit @@ -174,18 +220,22 @@ AllMusicListView + Title Nimi + Artist Esittäjä + Album Albumi + Duration Kesto @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Lisää kappaleita + Open Folders Avaa kansiot + Drag music files here or Vedä musiikkitiedostoja tänne tai - scan the Music directory - hae ne Musiikki kansiosta + + scan the Music directory + hae ne Musiikki kansiosta ArtistGridDelegate + 1 song 1 kappale + %1 songs %1 kappaletta @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Näytä tiedot + Play all Toista kaikki + Add to Lisää @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Minun suosikit @@ -245,14 +305,17 @@ ArtistSublistView + Title Nimi + Album Albumi + Duration Kesto @@ -260,10 +323,12 @@ ArtistView + Artists Artistit + %1 artists - %2 songs %1 artistia - %2 kappaletta @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD-levy on poistettu + Cancel Peruuta @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Valitse toiminto + Minimize to system tray Minimoi valikkoon + Exit Poistu + Do not ask again Älä kysy uudestaan + Cancel Peruuta + Confirm Vahvista @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Soittojono + 1 song 1 kappale + %1 songs %1 kappaletta + Empty Tyhjennä @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Minun suosikit @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Minun suosikit + CD playlist Soittolista CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Haluatko varmasti poistaa %1? + Are you sure you want to delete the selected %1 songs? Haluatko varmasti poistaa valitut %1 kappaleet? + The song files contained will also be deleted Sisältämät musiikkitiedostot poistetaan myös + Delete Poista + Cancel Peruuta @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Haluatko varmasti poistaa %1? + Are you sure you want to remove the selected %1 songs? Haluatko varmasti poistaa valitut %1 kappaleet? + Are you sure you want to delete this playlist? Haluatko varmasti poistaa tämän soittolistan? + Remove Poista + Delete Poista + Cancel Peruuta @@ -400,105 +492,138 @@ EqualizerDialog + Custom Kustomoitu + Monophony Monofonia + Classical Klassinen + Club Klubi + Dance Tanssi + Full Bass Täysi basso + Full Bass and Treble Täydet bassot ja diskantit + Full Treble Täysi diskantti + Headphones Kuulokkeet + Hall Sali + Live Live + Party Juhlat + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Pehmeä + Soft Rock Kevyt rock + Techno Tekno + Equalizer Taajuuskorjain + Save Tallenna + Reset Nollaa + Preamplifier Esivahvistin + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Tuonti epäonnistui, musiikkitiedostoa ei löytynyt + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Soittojono + My favorites Minun suosikit + Create new playlist Luo uusi soittolista + New playlist Uusi soittolista @@ -525,18 +654,22 @@ LyricPage + Artist Esittäjä + Album Albumi + No lyrics found Sanoituksia ei löytynyt + Please put the lyric file (same name as the song) and the song file in the same folder Liitä sanoitustiedosto (sama nimi kuin kappaleella) ja kappaletiedosto samaan kansioon @@ -544,46 +677,57 @@ MainWindow + Music Musiikki + Play/Pause Toista/keskeytä + Previous Edellinen + Next Seuraava + Exit Poistu + Already added to the playlist On jo lisätty soittolistaan + Added to "%1" Lisätty "%1" + Removed from "My Favorites" Poistettu kohteesta "Minun suosikit" + A disc is connected Levy on yhdistetty + My Favorites Minun suosikit + All Songs Kaikki kappaleet @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Lisää + Remove from playlist Poista soittolistalta + Delete from local disk Poista paikalliselta levyltä @@ -606,30 +753,37 @@ MusicBaselistview + Library Kirjasto + Albums Albumit + Artists Artistit + All Songs Kaikki kappaleet + Playlists Soittolistat + Create playlist Luo soittolista + New playlist Uusi soittolista @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Minun suosikit @@ -644,30 +799,37 @@ MusicInfoDialog + Title Nimi + Artist Esittäjä + Album Albumi + Type Tyyppi + Size Koko + Duration Kesto + Path Polku @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pysäytä + Play Toista + Add to Lisää + Open in file manager Avaa tiedostonhallinnassa + Remove from playlist Poista soittolistalta + Delete from local disk Poista paikalliselta levyltä + Encoding Koodaus + Song info Kappaleen tiedot @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Musiikki on soitin, jossa on kaunis muotoilu ja yksinkertaiset toiminnot. + Music Musiikki + Unknown album Tuntematon albumi + Unknown artist Tuntematon artisti @@ -729,14 +903,17 @@ SearchResultDialog + Songs Kappaletta + Artists Artistit + Albums Albumit @@ -744,34 +921,42 @@ SearchResultWindow + No search results Ei hakutuloksia + Search Results Hakutulokset + %1 albums - %2 songs %1 albumia - %2 kappaletta + 1 album - 1 song 1 albumi - 1 kappale + %1 album - %2 songs %1 albumi - %2 kappaletta + Music Musiikki + Artist Esittäjä + Album Albumi @@ -779,78 +964,97 @@ SettingsDialog + Basic Perusasetukset + Play Toista + Autoplay Automaattitoisto + Remember playback position on exit Muista toistokohta poistuessa + Enable fade in/out Salli häivytys + Close Main Window Sulje pääikkuna + Minimize to system tray Minimoi valikkoon + Exit Poistu + Ask me always Kysy minulta aina + Shortcuts Pikanäppäimet + Play/Pause Toista/keskeytä + Previous Edellinen + Next Seuraava + Volume up Äänitaso ylös + Volume down Äänitaso alas + Favorite Suosikki + Cancel Peruuta + Replace Korvaa + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Tämä pikanäppäin on ristiriidassa [%1] kanssa, paina Korvaa ja tämä pikanäppäin tulee voimaan @@ -858,78 +1062,97 @@ Shortcut + Play Toista + Songs Kappaletta + Playlists Soittolistat + Settings Asetukset + Play/Pause Toista/keskeytä + Previous Edellinen + Next Seuraava + Volume Up Äänitaso ylös + Volume Down Äänitaso alas + Mute Vaienna + Favorite Suosikki + Unfavorite Inhokki + Song info Kappaleen tiedot + New playlist Uusi soittolista + Add music Lisää musiikkia + Rename playlist Nimeä soittolista + Remove from playlist Poista soittolistalta + Help Ohje + Display shortcuts Näytä pikanäppäimet @@ -937,10 +1160,12 @@ Shortcuts + New playlist Uusi soittolista + My Favorites Minun suosikit @@ -948,18 +1173,22 @@ SidebarMenu + Play Toista + Add songs Lisää kappaleita + Rename Nimeä uudelleen + Delete Poista @@ -967,26 +1196,36 @@ SortMenu + CD playlist Soittolista CD + Custom Kustomoitu + + + Date added Lisätty + + Album Albumi + + Artist Esittäjä + Title Nimi @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 kappale + %1 songs %1 kappaletta + Play All Toista kaikki @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Toista kaikki @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Ketjutettu toisto + List loop Listan silmukka + Single loop Silmukka + Shuffle Sekoitta + Unfavorite Inhokki + Favorite Suosikki + My Favorites Minun suosikit + Previous Edellinen + Play/Pause Toista/keskeytä + Next Seuraava + Lyrics Sanat + Play Queue Soittojono @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Lisää soittolistaan + New playlist Uusi soittolista + + Add music Lisää musiikkia + Equalizer Taajuuskorjain + Settings Asetukset + Music Musiikki + Music is a local music player with beautiful design and simple functions. Musiikki on soitin, jossa on kaunis muotoilu ja yksinkertaiset toiminnot. + Version: Versio: - Quit - Poistu - - + Previous page Edellinen sivu + Next page Seuraava sivu + Search Etsi - - %1 is released under %2 - %1 on julkaistu %2 ehdoilla - - \ No newline at end of file + diff --git a/translations/deepin-music_fil.ts b/translations/deepin-music_fil.ts index 612595965..f0098d5db 100644 --- a/translations/deepin-music_fil.ts +++ b/translations/deepin-music_fil.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musika + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Musika + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Musika + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help Tulong + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music Musika + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_fr.ts b/translations/deepin-music_fr.ts index 8f48fd2a9..1d31cfa26 100644 --- a/translations/deepin-music_fr.ts +++ b/translations/deepin-music_fr.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 titre + %1 songs %1 titres @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,33 +48,40 @@ AlbumListView + Album Album + Artist Artiste + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to Ajouter à @@ -73,14 +89,17 @@ AlbumSublist + Title Titre + Artist Artiste + Duration Durée @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mes favoris @@ -95,14 +115,17 @@ AlbumSublistView + Title Titre + Artist Artiste + Duration Durée @@ -110,10 +133,12 @@ AlbumView + Albums Albums + %1 albums - %2 songs %1 albums - %2 titres @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 titre + %1 songs %1 titres @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mes favoris @@ -174,18 +220,22 @@ AllMusicListView + Title Titre + Artist Artiste + Album Album + Duration Durée @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 titre + %1 songs %1 titres @@ -223,14 +279,17 @@ ArtistMoreMenu + View details - + + Play all - + + Add to Ajouter à @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Mes favoris @@ -245,14 +305,17 @@ ArtistSublistView + Title Titre + Album Album + Duration Durée @@ -260,10 +323,12 @@ ArtistView + Artists Artistes + %1 artists - %2 songs %1 artistes - %2 titres @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Le CD a été retiré + Cancel Annuler @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Veuillez faire votre choix + Minimize to system tray Réduire dans la barre d'état système + Exit Quitter + Do not ask again Ne plus demander + Cancel Annuler + Confirm Confirmer @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Lire la file d'attente + 1 song 1 titre + %1 songs %1 titres + Empty Vide @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mes favoris @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Mes favoris + CD playlist Liste de lecture du CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Voulez-vous vraiment supprimer %1 ? + Are you sure you want to delete the selected %1 songs? Voulez-vous vraiment supprimer les %1 titres sélectionnés ? + The song files contained will also be deleted Les fichiers audios contenus seront également supprimés + Delete Supprimer + Cancel Annuler @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Voulez-vous vraiment supprimer %1 ? + Are you sure you want to remove the selected %1 songs? Voulez-vous vraiment supprimer les titres %1 sélectionnés ? + Are you sure you want to delete this playlist? Voulez-vous vraiment supprimer cette liste de lecture ? + Remove Retirer + Delete Supprimer + Cancel Annuler @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personnalisé + Monophony Mono + Classical Classique + Club Club + Dance Dance + Full Bass Basses à fond + Full Bass and Treble Basses et Aigus à fond + Full Treble Aigus à fond + Headphones Casque + Hall Hall + Live Direct + Party Fête + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Doux + Soft Rock Soft Rock + Techno Techno + Equalizer Égaliseur + Save Sauvegarder + Reset Réinitialiser + Preamplifier Préamplificateur + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Échec de l'importation, aucun fichier de musique valide n'a été trouvé + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Lire la file d'attente + My favorites Mes favoris + Create new playlist Créer une nouvelle liste de lecture + New playlist Nouvelle liste de lecture @@ -525,80 +654,98 @@ LyricPage + Artist Artiste + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musique + Play/Pause Lecture / Pause + Previous Précédent + Next Suivant + Exit Quitter + Already added to the playlist Déjà ajouté à la liste de lecture + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Un disque est connecté + My Favorites Mes favoris + All Songs - + MulitSelectMenu + Add to Ajouter à + Remove from playlist Supprimer de la liste de lecture + Delete from local disk Supprimer du disque local @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliothèque + Albums Albums + Artists Artistes + All Songs - + + Playlists Listes de lecture + Create playlist - + + New playlist Nouvelle liste de lecture @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mes favoris @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titre + Artist Artiste + Album Album + Type Type + Size Taille + Duration Durée + Path Chemin @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pause + Play Jouer + Add to Ajouter à + Open in file manager Ouvrir dans le gestionnaire de fichier + Remove from playlist Supprimer de la liste de lecture + Delete from local disk Supprimer du disque local + Encoding Encodage + Song info Info du titre @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Musique est un lecteur audio visuellement agréable et simple d'utilisation. + Music Musique + Unknown album Album inconnu + Unknown artist Artiste inconnu @@ -729,14 +903,17 @@ SearchResultDialog + Songs Titres + Artists Artistes + Albums Albums @@ -744,34 +921,42 @@ SearchResultWindow + No search results Aucun résultat trouvé + Search Results Résultat de la recherche + %1 albums - %2 songs %1 albums - %2 titres + 1 album - 1 song 1 album - 1 titre + %1 album - %2 songs %1 album - %2 titres + Music Musique + Artist Artiste + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic De base + Play Jouer + Autoplay Lecture automatique + Remember playback position on exit - + + Enable fade in/out Activer le fondu entrant/sortant + Close Main Window Fermer la fenêtre principale + Minimize to system tray Réduire dans la barre d'état système + Exit Quitter + Ask me always Toujours me demander + Shortcuts Raccourcis + Play/Pause Lecture / Pause + Previous Précédent + Next Suivant + Volume up Augmenter le volume + Volume down Réduction du volume + Favorite Favoris + Cancel Annuler + Replace Remplacer + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Jouer + Songs Titres + Playlists Listes de lecture + Settings Paramètres + Play/Pause Lecture / Pause + Previous Précédent + Next Suivant + Volume Up Augmenter le volume + Volume Down Réduction du volume + Mute Muet + Favorite Favoris + Unfavorite Défavorisé + Song info Info du titre + New playlist Nouvelle liste de lecture + Add music Ajouter de la musique + Rename playlist Renommer la liste de lecture + Remove from playlist Supprimer de la liste de lecture + Help Aide + Display shortcuts Afficher les raccourcis @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nouvelle liste de lecture + My Favorites Mes favoris @@ -948,18 +1173,22 @@ SidebarMenu + Play Jouer + Add songs - + + Rename Renommer + Delete Supprimer @@ -967,26 +1196,36 @@ SortMenu + CD playlist Liste de lecture du CD + Custom Personnalisé + + + Date added - + + + Album Album + + Artist Artiste + Title Titre @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 titre + %1 songs %1 titres + Play All Tout lire @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Tout lire @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Répéter la liste + Single loop Répéter le morceau + Shuffle Lecture aléatoire + Unfavorite Défavorisé + Favorite Favoris + My Favorites Mes favoris + Previous Précédent + Play/Pause Lecture / Pause + Next Suivant + Lyrics Paroles + Play Queue Lire la liste @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Ajouter à la liste de lecture + New playlist Nouvelle liste de lecture + + Add music Ajouter de la musique + Equalizer Égaliseur + Settings Paramètres + Music Musique + Music is a local music player with beautiful design and simple functions. Musique est un lecteur audio visuellement agréable et simple d'utilisation. + Version: Version : - Quit - Quitter - - + Previous page - + + Next page - + + Search Rechercher - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_gl_ES.ts b/translations/deepin-music_gl_ES.ts index 74e0516d5..7610450e0 100644 --- a/translations/deepin-music_gl_ES.ts +++ b/translations/deepin-music_gl_ES.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 canción + %1 songs %1 cancións @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Álbum + Artist Artista + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Título + Artist Artista + Duration Duración @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Os meus favoritos @@ -95,14 +115,17 @@ AlbumSublistView + Title Título + Artist Artista + Duration Duración @@ -110,10 +133,12 @@ AlbumView + Albums Álbums + %1 albums - %2 songs %1 álbums - %2 cancións @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 canción + %1 songs %1 cancións @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Os meus favoritos @@ -174,18 +220,22 @@ AllMusicListView + Title Título + Artist Artista + Album Álbum + Duration Duración @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 canción + %1 songs %1 cancións @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Os meus favoritos @@ -245,14 +305,17 @@ ArtistSublistView + Title Título + Album Álbum + Duration Duración @@ -260,10 +323,12 @@ ArtistView + Artists Artistas + %1 artists - %2 songs %1 artistas - %2 cancións @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Expulsouse o CD + Cancel Cancelar @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Por favor, selecciona a túa operación + Minimize to system tray Minimizar na bandexa + Exit Saír + Do not ask again Non preguntar de novo + Cancel Cancelar + Confirm Confirmar @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Reproducir cola + 1 song 1 canción + %1 songs %1 cancións + Empty Baleirar @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Os meus favoritos @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Os meus favoritos + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Estás seguro de que queres eliminar %1? + Are you sure you want to delete the selected %1 songs? Tes a certeza de querer eliminar as %1 cancións seleccionadas? + The song files contained will also be deleted As cancións contidas contidas tamén serán eliminadas + Delete Eliminar + Cancel Cancelar @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Estás seguro de que quere eliminar %1? + Are you sure you want to remove the selected %1 songs? Tes a certeza de querer eliminar as %1 cancións seleccionadas? + Are you sure you want to delete this playlist? Estás seguro de que quere eliminar esta lista de reprodución? + Remove Eliminar + Delete Eliminar + Cancel Cancelar @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalizado + Monophony Monófono + Classical Clásica + Club Club + Dance Dance + Full Bass Baixo completo + Full Bass and Treble Baixo e agudos completos + Full Treble Agudo completo + Headphones Auriculares + Hall Vestíbulo + Live En directo + Party Festa + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Suave + Soft Rock Rock suave + Techno Tecno + Equalizer Ecualizador + Save Gardar + Reset Restabelecer + Preamplifier Preamplificador + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Fallou a importación e non se atopou ningún ficheiro de música válido + OK Aceptar @@ -506,18 +631,22 @@ ImportMenu + Play queue Reproducir cola + My favorites Os meus favoritos + Create new playlist - + + New playlist Nova lista de reprodución @@ -525,80 +654,98 @@ LyricPage + Artist Artista + Album Álbum + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Música + Play/Pause Rep./Pausar + Previous Anterior + Next Seguinte + Exit Saír + Already added to the playlist Xa está engadida á miña lista de reprodución + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Hai un disco conectado + My Favorites Os meus favoritos + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Eliminar da lista de reprodución + Delete from local disk Eliminar do disco local @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteca + Albums Álbums + Artists Artistas + All Songs - + + Playlists Listas de reprodución + Create playlist - + + New playlist Nova lista de reprodución @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Os meus favoritos @@ -644,30 +799,37 @@ MusicInfoDialog + Title Título + Artist Artista + Album Álbum + Type Tipo + Size Tamaño + Duration Duración + Path Ruta @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausar + Play Reproducir + Add to - + + Open in file manager Abrir no xestor de ficheiros + Remove from playlist Eliminar da lista de reprodución + Delete from local disk Eliminar do disco local + Encoding Codificación + Song info Información da canción @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. A música é un reprodutor de música local cun fermoso deseño e funcións sinxelas. + Music Música + Unknown album Álbum descoñecido + Unknown artist Artista descoñecido @@ -729,14 +903,17 @@ SearchResultDialog + Songs Cancións + Artists Artistas + Albums Álbums @@ -744,34 +921,42 @@ SearchResultWindow + No search results Sen resultados + Search Results Pescudar resultados + %1 albums - %2 songs %1 álbums - %2 cancións + 1 album - 1 song 1 álbum - 1 canción + %1 album - %2 songs %1 álbum - %2 cancións + Music Música + Artist Artista + Album Álbum @@ -779,157 +964,195 @@ SettingsDialog + Basic Básico + Play Reproducir + Autoplay Reproducir Auto. + Remember playback position on exit - + + Enable fade in/out Activar desaparecer + Close Main Window Pechar a Xanela Principal + Minimize to system tray Minimizar na bandexa + Exit Saír + Ask me always Pregúnteme sempre + Shortcuts Atallos + Play/Pause Rep./Pausar + Previous Anterior + Next Seguinte + Volume up Subir o volume + Volume down Baixar o volume + Favorite Favorito + Cancel Cancelar + Replace Substituír + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Reproducir + Songs Cancións + Playlists Listas de reprodución + Settings Axustes + Play/Pause Rep./Pausar + Previous Anterior + Next Seguinte + Volume Up Subir volume + Volume Down Baixar volume + Mute Silenciar + Favorite Favorito + Unfavorite Non favorito + Song info Información da canción + New playlist Nova lista de reprodución + Add music Engadir música + Rename playlist Renomear a lista de reprodución + Remove from playlist Eliminar da lista de reprodución + Help Axuda + Display shortcuts Amosar atallos @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nova lista de reprodución + My Favorites Os meus favoritos @@ -948,18 +1173,22 @@ SidebarMenu + Play Reproducir + Add songs - + + Rename Renomear + Delete Eliminar @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Personalizado + + + Date added - + + + Album Álbum + + Artist Artista + Title Título @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 canción + %1 songs %1 cancións + Play All Reproducir todo @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reproducir todo @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Lista en bucle + Single loop Bucle único + Shuffle Modo ao Chou + Unfavorite Non favorito + Favorite Favorito + My Favorites Os meus favoritos + Previous Anterior + Play/Pause Rep./Pausar + Next Seguinte + Lyrics Letras + Play Queue Reproducir cola @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Engadir lista de reprodución + New playlist Nova lista de reprodución + + Add music Engadir música + Equalizer Ecualizador + Settings Axustes + Music Música + Music is a local music player with beautiful design and simple functions. A música é un reprodutor de música local cun fermoso deseño e funcións sinxelas. + Version: Versión: - Quit - Saír - - + Previous page - + + Next page - + + Search Procurar - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_he.ts b/translations/deepin-music_he.ts index 76708a4c5..82f980f4e 100644 --- a/translations/deepin-music_he.ts +++ b/translations/deepin-music_he.ts @@ -1,86 +1,105 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album אלבום + Artist אמן + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title שם + Artist אמן + Duration משך @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title שם + Artist אמן + Duration משך @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title שם + Artist אמן + Album אלבום + Duration משך @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title שם + Album אלבום + Duration משך @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel ביטול @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit יציאה + Do not ask again - + + Cancel ביטול + Confirm אימות @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty פינוי @@ -328,21 +405,25 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD תקליטור @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? האם אתה בטוח שברצונך למחוק את %1? + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete מחיקה + Cancel ביטול @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete מחיקה + Cancel ביטול @@ -400,105 +492,138 @@ EqualizerDialog + Custom בהתאמה אישית + Monophony - + + Classical קלאסי + Club מועדונים + Dance ריקודים + Full Bass בס מלא + Full Bass and Treble בס מלא וטרבל + Full Treble טרבל מלא + Headphones אוזניות + Hall - + + Live הופעה חיה + Party מסיבה + Pop פופ + Reggae רגאיי + Rock רוק + Ska סקא + Soft רך + Soft Rock רוק קל + Techno - + + Equalizer אקווילייזר + Save שמור + Reset איפוס + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK אישור @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites המועדפים שלי + Create new playlist - + + New playlist רשימת נגינה חדשה @@ -525,80 +654,98 @@ LyricPage + Artist אמן + Album אלבום + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music מוזיקה + Play/Pause נגינה/השהיה + Previous הקודם + Next הבא + Exit יציאה + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist הסרה מרשימת נגינה + Delete from local disk מחיקה מהכונן המקומי @@ -606,30 +753,37 @@ MusicBaselistview + Library ספריה + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist רשימת נגינה חדשה @@ -637,72 +791,88 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title שם + Artist אמן + Album אלבום + Type סוג + Size גודל + Duration משך + Path - + MusicMoreMenu + Pause השהיה + Play נגינה + Add to - + + Open in file manager פתח במנהל הקבצים + Remove from playlist הסרה מרשימת נגינה + Delete from local disk מחיקה מהכונן המקומי + Encoding קידוד + Song info פרטי השיר @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music מוזיקה + Unknown album אלבום לא ידוע + Unknown artist אמן לא ידוע @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music מוזיקה + Artist אמן + Album אלבום @@ -779,157 +964,195 @@ SettingsDialog + Basic בסיסי + Play נגינה + Autoplay נגינה אוטומטית + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit יציאה + Ask me always - + + Shortcuts קיצורי מקשים + Play/Pause נגינה/השהיה + Previous הקודם + Next הבא + Volume up הגברה + Volume down הנמכה + Favorite הוספה למועדפים + Cancel ביטול + Replace החלפה + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play נגינה + Songs - + + Playlists - + + Settings הגדרות + Play/Pause נגינה/השהיה + Previous הקודם + Next הבא + Volume Up הגבר + Volume Down הנמך + Mute השתקה + Favorite הוספה למועדפים + Unfavorite - + + Song info פרטי השיר + New playlist רשימת נגינה חדשה + Add music הוספת מוזיקה + Rename playlist - + + Remove from playlist הסרה מרשימת נגינה + Help עזרה + Display shortcuts הצג קיצור־דרך @@ -937,29 +1160,35 @@ Shortcuts + New playlist רשימת נגינה חדשה + My Favorites - + SidebarMenu + Play נגינה + Add songs - + + Rename שינוי שם + Delete מחיקה @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom בהתאמה אישית + + + Date added - + + + Album אלבום + + Artist אמן + Title שם @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All לנגן הכול @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All לנגן הכול @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle ערבול + Unfavorite - + + Favorite הוספה למועדפים + My Favorites - + + Previous הקודם + Play/Pause נגינה/השהיה + Next הבא + Lyrics מילים + Play Queue - + WindowTitlebar + Add playlist - + + New playlist רשימת נגינה חדשה + + Add music הוספת מוזיקה + Equalizer אקווילייזר + Settings הגדרות + Music מוזיקה + Music is a local music player with beautiful design and simple functions. - + + Version: גרסא: - Quit - יציאה - - + Previous page - + + Next page - + + Search חיפוש - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_hi_IN.ts b/translations/deepin-music_hi_IN.ts index 49f84d692..2acc4422b 100644 --- a/translations/deepin-music_hi_IN.ts +++ b/translations/deepin-music_hi_IN.ts @@ -1,86 +1,105 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album ऐल्बम + Artist कलाकार + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title टाइटल + Artist कलाकार + Duration अवधि @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title टाइटल + Artist कलाकार + Duration अवधि @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title टाइटल + Artist कलाकार + Album ऐल्बम + Duration अवधि @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title टाइटल + Album ऐल्बम + Duration अवधि @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel रद्द करें @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray सिस्टम ट्रे में छोटा करें + Exit बंद करें + Do not ask again दोबारा मत पूछें + Cancel रद्द करें + Confirm पुष्टि करें @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty खाली करें @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? क्या आप स्पष्ट होकर %1 को हटाना चाहते हैं ? + Are you sure you want to delete the selected %1 songs? क्या आप स्पष्ट होकर चयनित %1 गाने हटाना चाहते हैं ? + The song files contained will also be deleted - + + Delete हटाएँ + Cancel रद्द करें @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? क्या आप स्पष्ट होकर यह प्लेलिस्ट हटाना चाहते हैं ? + Remove - + + Delete हटाएँ + Cancel रद्द करें @@ -400,105 +492,138 @@ EqualizerDialog + Custom स्वयं के द्वारा + Monophony - + + Classical शास्त्रीय + Club क्लब + Dance नृत्य + Full Bass फुल बास + Full Bass and Treble फुल बास व ट्रेबल + Full Treble फुल ट्रेबल + Headphones हेडफोन + Hall - + + Live लाइव + Party पार्टी + Pop पॉप + Reggae रेगी + Rock रॉक + Ska स्का + Soft सॉफ्ट + Soft Rock सॉफ्ट रॉक + Techno - + + Equalizer इक्विलाइजर + Save संचित करें + Reset पुनः व्यवस्थित + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ठीक है @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites मेरे पसंदीदा + Create new playlist - + + New playlist नई प्लेलिस्ट @@ -525,80 +654,98 @@ LyricPage + Artist कलाकार + Album ऐल्बम + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music संगीत + Play/Pause बजाएं/रोकें + Previous पिछला + Next आगे + Exit बंद करें + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist प्लेलिस्ट से हटाएँ + Delete from local disk स्थानीय डिस्क से हटाएं @@ -606,30 +753,37 @@ MusicBaselistview + Library लाइब्रेरी + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist नई प्लेलिस्ट @@ -637,72 +791,88 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title टाइटल + Artist कलाकार + Album ऐल्बम + Type प्रकार + Size आकार + Duration अवधि + Path - + MusicMoreMenu + Pause विराम + Play चलायें + Add to - + + Open in file manager फाइल प्रबंधक में खोलें + Remove from playlist प्लेलिस्ट से हटाएँ + Delete from local disk स्थानीय डिस्क से हटाएं + Encoding एन्कोडिंग + Song info गाने की जानकारी @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music संगीत + Unknown album अज्ञात ऐल्बम + Unknown artist अज्ञात कलाकार @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results खोज का कोई परिणाम नहीं मिला + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music संगीत + Artist कलाकार + Album ऐल्बम @@ -779,157 +964,195 @@ SettingsDialog + Basic सामान्य + Play चलायें + Autoplay ऑटो प्ले + Remember playback position on exit - + + Enable fade in/out फ़ेड इन/आउट सक्षम करें + Close Main Window मुख्य विंडो बंद करें + Minimize to system tray सिस्टम ट्रे में छोटा करें + Exit बाहर + Ask me always - + + Shortcuts शॉर्टकट + Play/Pause बजाएं/रोकें + Previous पिछला + Next आगे + Volume up आवाज बढ़ाएँ + Volume down आवाज घटाएँ + Favorite प्रिय + Cancel रद्द करें + Replace प्रतिस्थापित करें + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play चलायें + Songs - + + Playlists - + + Settings सेटिंग्स + Play/Pause बजाएं/रोकें + Previous पिछला + Next आगे + Volume Up आवाज बढ़ाएँ + Volume Down आवाज घटाएँ + Mute ध्वनि बंद करें + Favorite प्रिय + Unfavorite - + + Song info गाने की जानकारी + New playlist नई प्लेलिस्ट + Add music - + + Rename playlist - + + Remove from playlist प्लेलिस्ट से हटाएँ + Help सहायता + Display shortcuts शॉर्टकट दिखाएँ @@ -937,29 +1160,35 @@ Shortcuts + New playlist नई प्लेलिस्ट + My Favorites - + SidebarMenu + Play चलायें + Add songs - + + Rename रीनैम + Delete हटाएँ @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom स्वयं के द्वारा + + + Date added - + + + Album ऐल्बम + + Artist कलाकार + Title टाइटल @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All सभी को प्ले करें @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All सभी को प्ले करें @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle फेर बदलें + Unfavorite - + + Favorite प्रिय + My Favorites - + + Previous पिछला + Play/Pause बजाएं/रोकें + Next आगे + Lyrics गीत के बोल + Play Queue - + WindowTitlebar + Add playlist - + + New playlist नई प्लेलिस्ट + + Add music - + + Equalizer इक्विलाइजर + Settings सेटिंग्स + Music संगीत + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - बंद करो + + Previous page - + + Next page - + + Search खोजें - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_hr.ts b/translations/deepin-music_hr.ts index 67212c05e..a9048bd4d 100644 --- a/translations/deepin-music_hr.ts +++ b/translations/deepin-music_hr.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Dodaj pjesme + Open Folders Otvori mape + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 pjesma + %1 songs %1 pjesama @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Umjetnik + Tracks Zapis + Date added Datum dodavanja @@ -58,29 +71,35 @@ AlbumMoreMenu + View details Pogledaj pojedinosti + Play all Reproduciraj sve + Add to - + AlbumSublist + Title Naslov + Artist Umjetnik + Duration Trajanje @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Moji omiljeni @@ -95,14 +115,17 @@ AlbumSublistView + Title Naslov + Artist Umjetnik + Duration Trajanje @@ -110,10 +133,12 @@ AlbumView + Albums Albumi + %1 albums - %2 songs %1 albuma - %2 pjesama @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs Dodaj pjesme + Open Folders Otvori mape + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - Vaše omiljene pjesme će biti prikazane ovdje. + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs Sve pjesme + 1 song 1 pjesma + %1 songs %1 pjesama @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Moji omiljeni @@ -174,18 +220,22 @@ AllMusicListView + Title Naslov + Artist Umjetnik + Album Album + Duration Trajanje @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Dodaj pjesme + Open Folders Otvori mape + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 pjesma + %1 songs %1 pjesama @@ -223,21 +279,25 @@ ArtistMoreMenu + View details Pogledaj pojedinosti + Play all Reproduciraj sve + Add to - + ArtistSublistDelegate + My Favorites Moji omiljeni @@ -245,14 +305,17 @@ ArtistSublistView + Title Naslov + Album Album + Duration Trajanje @@ -260,10 +323,12 @@ ArtistView + Artists Umjetnici + %1 artists - %2 songs %1 umjetnika - %2 pjesama @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD je uklonjen + Cancel Otkaži @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Molim izaberite vašu radnju + Minimize to system tray - + + Exit Izađi + Do not ask again Ne pitaj ponovno + Cancel Otkaži + Confirm Potvrdi @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song 1 pjesma + %1 songs %1 pjesama + Empty Prazno @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Moji omiljeni @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Moji omiljeni + CD playlist CD lista izvođenja + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Jeste li sigurni da želite obrisati %1? + Are you sure you want to delete the selected %1 songs? Jeste li sigurni da želite izbrisati odabranih %1 pjesmama? + The song files contained will also be deleted - + + Delete Obriši + Cancel Otkaži @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Jeste li sigurni da želite ukloniti %1? + Are you sure you want to remove the selected %1 songs? Jeste li sigurni da želite ukloniti odabranih %1 pjesmama? + Are you sure you want to delete this playlist? Jeste li sigurni da želite izbrisati ovu listu izvođenja? + Remove Ukloni + Delete Obriši + Cancel Otkaži @@ -400,105 +492,138 @@ EqualizerDialog + Custom Prilagođeno + Monophony - + + Classical Klasična + Club Klub + Dance Dance + Full Bass Puni bas + Full Bass and Treble Puni bas i visoki tonovi + Full Treble Puni visoki tonovi + Headphones Slušalice + Hall - + + Live Uživo + Party Zabava + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Mekan + Soft Rock Lagani rock + Techno - + + Equalizer Ekvilizator + Save Spremi + Reset Vrati + Preamplifier Predpojačalo + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Neuspjeli uvoz, nije pronađena ispravna glazbena datoteka + OK U redu @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Moji omiljeni + Create new playlist Napravi novu listu izvođenja + New playlist Nova lista izvođenja @@ -525,65 +654,80 @@ LyricPage + Artist Umjetnik + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Glazba + Play/Pause Reprodukcija/Pauza + Previous Prijašnje + Next Slijedeće + Exit Izađi + Already added to the playlist Već dodano na listu izvođenja + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Disk je spojen + My Favorites Moji omiljeni + All Songs Sve pjesme @@ -591,14 +735,17 @@ MulitSelectMenu + Add to - + + Remove from playlist Ukloni sa liste izvođenja + Delete from local disk Izbriši sa lokalnog diska @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteka + Albums Albumi + Artists Umjetnici + All Songs Sve pjesme + Playlists Liste izvođenja + Create playlist - + + New playlist Nova lista izvođenja @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Moji omiljeni @@ -644,30 +799,37 @@ MusicInfoDialog + Title Naslov + Artist Umjetnik + Album Album + Type Vrsta + Size Veličina + Duration Trajanje + Path Putanja @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pauziraj + Play Reprodukcija + Add to - + + Open in file manager Otvori u upravitelju datotekama + Remove from playlist Ukloni sa liste izvođenja + Delete from local disk Izbriši sa lokalnog diska + Encoding Enkodiranje + Song info Informacije o pjesmi @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Glazba + Unknown album Nepoznati album + Unknown artist Nepoznati umjetnik @@ -729,14 +903,17 @@ SearchResultDialog + Songs Pjesme + Artists Umjetnici + Albums Albumi @@ -744,34 +921,42 @@ SearchResultWindow + No search results Nema rezultata pretrage + Search Results Rezultati pretrage + %1 albums - %2 songs %1 albuma - %2 pjesama + 1 album - 1 song 1 album - 1 pjesma + %1 album - %2 songs %1 album - %2 pjesama + Music Glazba + Artist Umjetnik + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Osnovno + Play Reprodukcija + Autoplay Automatska reprodukcija + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window Zatvori glavni prozor + Minimize to system tray - + + Exit Izađi + Ask me always Uvijek me pitaj + Shortcuts Prečaci + Play/Pause Reprodukcija/Pauza + Previous Prijašnje + Next Slijedeće + Volume up Pojačaj glasnoću zvuka + Volume down Smanji glasnoću zvuka + Favorite Omiljeni + Cancel Otkaži + Replace Zamijeni + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Reprodukcija + Songs Pjesme + Playlists Liste izvođenja + Settings Postavke + Play/Pause Reprodukcija/Pauza + Previous Prijašnje + Next Slijedeće + Volume Up Pojačaj zvuk + Volume Down Stišaj zvuk + Mute Utišaj + Favorite Omiljeni + Unfavorite - + + Song info Informacije o pjesmi + New playlist Nova lista izvođenja + Add music Dodaj glazbu + Rename playlist Preimenuj listu izvođenja + Remove from playlist Ukloni sa liste izvođenja + Help Pomoć + Display shortcuts Prikaži prečace @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nova lista izvođenja + My Favorites Moji omiljeni @@ -948,18 +1173,22 @@ SidebarMenu + Play Reprodukcija + Add songs - + + Rename Preimenuj + Delete Obriši @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD lista izvođenja + Custom Prilagođeno + + + Date added Datum dodavanja + + Album Album + + Artist Umjetnik + Title Naslov @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 pjesma + %1 songs %1 pjesama + Play All Reproduciraj sve @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reproduciraj sve @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Izmješaj + Unfavorite - + + Favorite Omiljeni + My Favorites Moji omiljeni + Previous Prijašnje + Play/Pause Reprodukcija/Pauza + Next Slijedeće + Lyrics Stihovi + Play Queue - + WindowTitlebar + Add playlist Dodaj listu izvođenja + New playlist Nova lista izvođenja + + Add music Dodaj glazbu + Equalizer Ekvilizator + Settings Postavke + Music Glazba + Music is a local music player with beautiful design and simple functions. - + + Version: Inačica: - Quit - Zatvori - - + Previous page - + + Next page - + + Search Traži - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_hu.ts b/translations/deepin-music_hu.ts index 850bfef24..157bf3959 100644 --- a/translations/deepin-music_hu.ts +++ b/translations/deepin-music_hu.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Dalok hozzáadása + Open Folders Mappa megnyitása + Drag music files here or Húzza ide a zene fájlokat, vagy - scan the Music directory - Zene mappa beolvasása + + scan the Music directory + olvassa be a Zene könyvtárat AlbumGridDelegate + 1 song 1 dal + %1 songs %1 dal @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Előadó + Tracks Számok + Date added Hozzáadási dátum @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Részletek megjelenítése + Play all Összes lejátszása + Add to Hozzáadás a @@ -73,14 +89,17 @@ AlbumSublist + Title Cím + Artist Előadó + Duration Időtartam @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Kedvenceim @@ -95,14 +115,17 @@ AlbumSublistView + Title Cím + Artist Előadó + Duration Időtartam @@ -110,10 +133,12 @@ AlbumView + Albums Albumok + %1 albums - %2 songs %1 album - %2 dal @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Dalok hozzáadása + Open Folders Mappa megnyitása + Drag music files here or Húzza ide a zene fájlokat, vagy - Your favorite songs will be displayed here. - Az Ön kedvenc dalai itt jelennek meg. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - Kattintson a „♥” gombra, hogy hozzáadjon egy dalt a Kedvenceihez + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Még nincsenek dalok. Kattintson a „ ➕ ” gombra a dalok lejátszási listához való hozzáadására. + + ” to add songs to the playlist + + scan the Music directory olvassa be a Zene könyvtárat @@ -152,14 +194,17 @@ AllMusicList + All Songs Összes dal + 1 song 1 dal + %1 songs %1 dal @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Kedvenceim @@ -174,18 +220,22 @@ AllMusicListView + Title Cím + Artist Előadó + Album Album + Duration Időtartam @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Dalok hozzáadása + Open Folders Mappa megnyitása + Drag music files here or Húzza ide a zene fájlokat, vagy - scan the Music directory - Zene mappa beolvasása + + scan the Music directory + olvassa be a Zene könyvtárat ArtistGridDelegate + 1 song 1 dal + %1 songs %1 dal @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Részletek megjelenítése + Play all Összes lejátszása + Add to Hozzáadás a @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Kedvenceim @@ -245,14 +305,17 @@ ArtistSublistView + Title Cím + Album Album + Duration Időtartam @@ -260,10 +323,12 @@ ArtistView + Artists Előadók + %1 artists - %2 songs %1 előadó - %2 dal @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed A CD eltávolításra került + Cancel Mégsem @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Válasszon műveletet + Minimize to system tray Kicsinyítés a rendszer tálcára + Exit Kilépés + Do not ask again Ne kérdezze újra + Cancel Mégsem + Confirm Megerősítés @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Lejátszási sor + 1 song 1 dal + %1 songs %1 dal + Empty Ürítés @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Kedvenceim @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Kedvenceim + CD playlist CD lejátszási lista + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Biztos, hogy törölni akarja a %1-t? + Are you sure you want to delete the selected %1 songs? Biztos, hogy törölni akarja a kiválasztott %1 dalokat? + The song files contained will also be deleted A dalfájlok is törlődnek + Delete Törlés + Cancel Mégsem @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Biztosan el kívánja távolítani a %1-t? + Are you sure you want to remove the selected %1 songs? Biztosan el kívánja távolítani a kijelölt %1 dalok? + Are you sure you want to delete this playlist? Biztos, hogy törölni akarja ezt a lejátszási listát? + Remove Eltávolítás + Delete Törlés + Cancel Mégsem @@ -400,105 +492,138 @@ EqualizerDialog + Custom Egyéni + Monophony Monofónikus + Classical Klasszikus + Club Club + Dance Dance + Full Bass Teljes basszus + Full Bass and Treble Teljes basszus és Magas hangszín + Full Treble Teljes Magas hangszín + Headphones Fejhallgató + Hall Koncertterem + Live Élő + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Hangszínszabályzó + Save Mentés + Reset Visszaállítás + Preamplifier Előerősítés + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Az importálás sikertelen, nem található érvényes zenefájl + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Lejátszási sor + My favorites Kedvenceim + Create new playlist Új lejátszási lista létrehozása + New playlist Új lejátszási lista @@ -525,18 +654,22 @@ LyricPage + Artist Előadó + Album Album + No lyrics found Nem található dalszöveg + Please put the lyric file (same name as the song) and the song file in the same folder Kérjük tegye a dalszöveg fájlt (azonos néven, mint a dal) és a dal fájlt ugyanabba a mappába @@ -544,46 +677,57 @@ MainWindow + Music Zene + Play/Pause Lejátszás/Szünet + Previous Előző + Next Következő + Exit Kilépés + Already added to the playlist Már hozzáadva a lejátszási listához + Added to "%1" Hozzáadva ide: "% 1" + Removed from "My Favorites" Eltávolítás a " Kedvenceim"-ből + A disc is connected A lemez csatlakoztatva + My Favorites Kedvenceim + All Songs Összes dal @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Hozzáadás a + Remove from playlist Éltávoltás a lejátszási listáról + Delete from local disk Törlés a helyi lemezről @@ -606,30 +753,37 @@ MusicBaselistview + Library Gyűjtemény + Albums Albumok + Artists Előadók + All Songs Összes dal + Playlists Lejátszási listák + Create playlist Lejátszási lista létrehozása + New playlist Új lejátszási lista @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Kedvenceim @@ -644,30 +799,37 @@ MusicInfoDialog + Title Cím + Artist Előadó + Album Album + Type Típus + Size Méret + Duration Időtartam + Path Elérési útvonal @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Szüneteltetés + Play Lejátszás + Add to Hozzáadás a + Open in file manager Megnyitás a fájlkezelőben + Remove from playlist Éltávoltás a lejátszási listáról + Delete from local disk Törlés a helyi lemezről + Encoding Kódolás + Song info Dal információ @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. A Zene egy zenelejátszó csodaszép dizájnnal és egyszerű funkciókkal. + Music Zene + Unknown album Ismeretlen Album + Unknown artist Ismeretlen Előadó @@ -729,14 +903,17 @@ SearchResultDialog + Songs Dalok + Artists Előadók + Albums Albumok @@ -744,34 +921,42 @@ SearchResultWindow + No search results Nincs keresési eredmény + Search Results Keresési eredmények + %1 albums - %2 songs %1 album - %2 dal + 1 album - 1 song 1 album - 1 dal + %1 album - %2 songs %1 album - %2 dal + Music Zene + Artist Előadó + Album Album @@ -779,78 +964,97 @@ SettingsDialog + Basic Alapvető + Play Lejátszás + Autoplay Automatikus lejátszás + Remember playback position on exit Lejátszási pozíció megjegyzése kilépéskor + Enable fade in/out Halkítás engedélyezése + Close Main Window Programablak bezárása + Minimize to system tray Kicsinyítés a rendszer tálcára + Exit Kilépés + Ask me always Kérdezze meg mindig + Shortcuts Gyorsbillentyűk + Play/Pause Lejátszás/Szünet + Previous Előző + Next Következő + Volume up Hangerő növelése + Volume down Hangerő csökkentése + Favorite Kedvenc + Cancel Mégsem + Replace Csere + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Ez a gyorsbillentyű ütközik a következővel: [%1], kattintson a Csere gombra, hogy ez a gyorsbillentyű azonnal használható legyen @@ -858,78 +1062,97 @@ Shortcut + Play Lejátszás + Songs Dalok + Playlists Lejátszási listák + Settings Beállítások + Play/Pause Lejátszás/Szünet + Previous Előző + Next Következő + Volume Up Hangerő növelése + Volume Down Hangerő csökkentése + Mute Némítás + Favorite Kedvenc + Unfavorite Eltávolítás a kedvencekből + Song info Dal információ + New playlist Új lejátszási lista + Add music Zene hozzáadása + Rename playlist Lejátszási lista átnevezése + Remove from playlist Éltávoltás a lejátszási listáról + Help Segítség + Display shortcuts Gyorsbillentyűk megjelenítése @@ -937,10 +1160,12 @@ Shortcuts + New playlist Új lejátszási lista + My Favorites Kedvenceim @@ -948,18 +1173,22 @@ SidebarMenu + Play Lejátszás + Add songs Dalok hozzáadása + Rename Átnevezés + Delete Törlés @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD lejátszási lista + Custom Egyéni + + + Date added Hozzáadási dátum + + Album Album + + Artist Előadó + Title Cím @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 dal + %1 songs %1 dal + Play All Összes lejátszása @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Összes lejátszása @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Sorozatos lejátszás + List loop Lista ismétlése + Single loop Egy ismétlése + Shuffle Véletlenszerű lejátszás + Unfavorite Eltávolítás a kedvencekből + Favorite Kedvenc + My Favorites Kedvenceim + Previous Előző + Play/Pause Lejátszás/Szünet + Next Következő + Lyrics Dalszöveg + Play Queue Lejátszási sor @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Lejátszási lista létrehozása + New playlist Új lejátszási lista + + Add music Zene hozzáadása + Equalizer Hangszínszabályzó + Settings Beállítások + Music Zene + Music is a local music player with beautiful design and simple functions. A Zene egy zenelejátszó csodaszép dizájnnal és egyszerű funkciókkal. + Version: Verzió: - Quit - Kilépés - - + Previous page Előző oldal + Next page Következő oldal + Search Keresés - - %1 is released under %2 - %1 kiadásra került %2 alatt - - \ No newline at end of file + diff --git a/translations/deepin-music_hy.ts b/translations/deepin-music_hy.ts index 238a81dde..e4c9b68fe 100644 --- a/translations/deepin-music_hy.ts +++ b/translations/deepin-music_hy.ts @@ -1,86 +1,105 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album Ալբոմ + Artist Կատարող + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Անվանում + Artist Կատարող + Duration Երկարություն @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Անվանում + Artist Կատարող + Duration Երկարություն @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Անվանում + Artist Կատարող + Album Ալբոմ + Duration Երկարություն @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Անվանում + Album Ալբոմ + Duration Երկարություն @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Չեղարկել @@ -282,90 +349,109 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel Չեղարկել + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Ջնջել + Cancel Չեղարկել @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Ջնջել + Cancel Չեղարկել @@ -400,105 +492,138 @@ EqualizerDialog + Custom Ընտրովի + Monophony - + + Classical Դասական + Club Ակումբային + Dance Պարային + Full Bass Լրիվ բասսով + Full Bass and Treble Ամբողջ բասսով և եռապատկությամբ + Full Treble Լրիվ եռապատկությամբ + Headphones Ականջակալներ + Hall - + + Live Կենդանի + Party Տոնական + Pop Փոփ + Reggae - + + Rock Ռոք + Ska Սկա + Soft Սոֆթ + Soft Rock Սոֆթ ռոք + Techno - + + Equalizer Հավասարիչ + Save Պահել + Reset Ետարկել + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK Լավ @@ -506,222 +631,271 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist Կատարող + Album Ալբոմ + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause Շարունակել/Ընդհատել + Previous Նախորդ + Next Հաջորդ + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library Դարան + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title Անվանում + Artist Կատարող + Album Ալբոմ + Type Ձև + Size Չափս + Duration Երկարություն + Path - + MusicMoreMenu + Pause Ընդհատել + Play Սկսել + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album Անհայտ ալբոմ + Unknown artist Անհայտ կատարող @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist Կատարող + Album Ալբոմ @@ -779,187 +964,231 @@ SettingsDialog + Basic - + + Play Սկսել + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause Շարունակել/Ընդհատել + Previous Նախորդ + Next Հաջորդ + Volume up - + + Volume down - + + Favorite - + + Cancel Չեղարկել + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Սկսել + Songs - + + Playlists - + + Settings Կարգավորումներ + Play/Pause Շարունակել/Ընդհատել + Previous Նախորդ + Next Հաջորդ + Volume Up - + + Volume Down - + + Mute Անջատել ձայնը + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play Սկսել + Add songs - + + Rename Վերանվանել + Delete Ջնջել @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Ընտրովի + + + Date added - + + + Album Ալբոմ + + Artist Կատարող + Title Անվանում @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Նվագարկել բոլորը @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Նվագարկել բոլորը @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous Նախորդ + Play/Pause Շարունակել/Ընդհատել + Next Հաջորդ + Lyrics Բառեր + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer Հավասարիչ + Settings Կարգավորումներ + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - Դուրս գալ + + Previous page - + + Next page - + + Search Փնտրել - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_id.ts b/translations/deepin-music_id.ts index fce0c0465..9fcb45584 100644 --- a/translations/deepin-music_id.ts +++ b/translations/deepin-music_id.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 lagu + %1 songs %1 lagu @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Artis + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Judul + Artist Artis + Duration Durasi @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Favoritku @@ -95,14 +115,17 @@ AlbumSublistView + Title Judul + Artist Artis + Duration Durasi @@ -110,56 +133,78 @@ AlbumView + Albums Album + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 lagu + %1 songs %1 lagu @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Favoritku @@ -174,18 +220,22 @@ AllMusicListView + Title Judul + Artist Artis + Album Album + Duration Durasi @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 lagu + %1 songs %1 lagu @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Favoritku @@ -245,14 +305,17 @@ ArtistSublistView + Title Judul + Album Album + Duration Durasi @@ -260,21 +323,25 @@ ArtistView + Artists Artis + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Batal @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Silakan pilih aksimu + Minimize to system tray Kecilkan ke baki sistem + Exit Keluar + Do not ask again Jangan tanyakan lagi + Cancel Batal + Confirm Konfirmasi @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song 1 lagu + %1 songs %1 lagu + Empty Kosong @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Favoritku @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Favoritku + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Anda yakin ingin menghapus %1? + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Hapus + Cancel Batal @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove Hilangkan + Delete Hapus + Cancel Batal @@ -400,105 +492,138 @@ EqualizerDialog + Custom Kustom + Monophony Monophony + Classical Klasik + Club Club + Dance Dance + Full Bass Full Bass + Full Bass and Treble Full Bass dan Treble + Full Treble Full Treble + Headphones Headphones + Hall Hall + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Lunak + Soft Rock Soft Rock + Techno - + + Equalizer Ekualiser + Save Simpan + Reset Atur ulang + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Favorit saya + Create new playlist - + + New playlist Daftar putar baru @@ -525,80 +654,98 @@ LyricPage + Artist Artis + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musik + Play/Pause Mainkan/Jeda + Previous Sebelumnya + Next Selanjutnya + Exit Keluar + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Favoritku + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Hapus dari daftar putar + Delete from local disk Hapus dari disk lokal @@ -606,30 +753,37 @@ MusicBaselistview + Library Pustaka + Albums Album + Artists Artis + All Songs - + + Playlists - + + Create playlist - + + New playlist Daftar putar baru @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Favoritku @@ -644,30 +799,37 @@ MusicInfoDialog + Title Judul + Artist Artis + Album Album + Type Tipe + Size Ukuran + Duration Durasi + Path Jejak @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Jeda + Play Putar + Add to - + + Open in file manager Buka pada manajer berkas + Remove from playlist Hapus dari daftar putar + Delete from local disk Hapus dari disk lokal + Encoding Menyandi + Song info Info lagu @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Musik + Unknown album Album tidak diketahui + Unknown artist Artis tidak diketahui @@ -729,14 +903,17 @@ SearchResultDialog + Songs - + + Artists Artis + Albums Album @@ -744,34 +921,42 @@ SearchResultWindow + No search results Tidak ada hasil pencarian + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Musik + Artist Artis + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Dasar + Play Putar + Autoplay Mainkan otomatis + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window Tutup Jendela Utama + Minimize to system tray Kecilkan ke baki sistem + Exit Keluar + Ask me always - + + Shortcuts Pintasan + Play/Pause Mainkan/Jeda + Previous Sebelumnya + Next Selanjutnya + Volume up Naikkan Volume + Volume down Turunkan Volume + Favorite Favorit + Cancel Batal + Replace Timpa + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Putar + Songs - + + Playlists - + + Settings Pengaturan + Play/Pause Mainkan/Jeda + Previous Sebelumnya + Next Selanjutnya + Volume Up Naikkan Volume + Volume Down Turunkan Volume + Mute Senyap + Favorite Favorit + Unfavorite - + + Song info Info lagu + New playlist Daftar putar baru + Add music Tambah musik + Rename playlist - + + Remove from playlist Hapus dari daftar putar + Help Bantuan + Display shortcuts Tampilkan pintasan @@ -937,10 +1160,12 @@ Shortcuts + New playlist Daftar putar baru + My Favorites Favoritku @@ -948,18 +1173,22 @@ SidebarMenu + Play Putar + Add songs - + + Rename Ganti nama + Delete Hapus @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Kustom + + + Date added - + + + Album Album + + Artist Artis + Title Judul @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 lagu + %1 songs %1 lagu + Play All Mainkan semua @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Mainkan semua @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Acak + Unfavorite - + + Favorite Favorit + My Favorites Favoritku + Previous Sebelumnya + Play/Pause Mainkan/Jeda + Next Selanjutnya + Lyrics Lirik + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Daftar putar baru + + Add music Tambah musik + Equalizer Ekualiser + Settings Pengaturan + Music Musik + Music is a local music player with beautiful design and simple functions. - + + Version: Versi: - Quit - Keluar - - + Previous page - + + Next page - + + Search Cari - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_it.ts b/translations/deepin-music_it.ts index 73f972a6c..1c614ecf2 100644 --- a/translations/deepin-music_it.ts +++ b/translations/deepin-music_it.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 brano + %1 songs %1 brani @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,33 +48,40 @@ AlbumListView + Album Album + Artist Artista + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to Aggiungi a @@ -73,14 +89,17 @@ AlbumSublist + Title Titolo + Artist Artista + Duration Durata @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites I miei Preferiti @@ -95,14 +115,17 @@ AlbumSublistView + Title Titolo + Artist Artista + Duration Durata @@ -110,10 +133,12 @@ AlbumView + Albums Album + %1 albums - %2 songs %1 album - %2 brani @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 brano + %1 songs %1 brani @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites I miei Preferiti @@ -174,18 +220,22 @@ AllMusicListView + Title Titolo + Artist Artista + Album Album + Duration Durata @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 brano + %1 songs %1 brani @@ -223,14 +279,17 @@ ArtistMoreMenu + View details - + + Play all - + + Add to Aggiungi a @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites I miei Preferiti @@ -245,14 +305,17 @@ ArtistSublistView + Title Titolo + Album Album + Duration Durata @@ -260,10 +323,12 @@ ArtistView + Artists Artisti + %1 artists - %2 songs %1 artisti - %2 brani @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Il disco è stato rimosso + Cancel Annulla @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Seleziona un'operazione + Minimize to system tray Minimizza nella tray di Sistema + Exit Esci + Do not ask again Non chiedere nuovamente + Cancel Annulla + Confirm Conferma @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Esegui sequenza + 1 song 1 brano + %1 songs %1 brani + Empty Svuota @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites I miei Preferiti @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites I miei Preferiti + CD playlist Playlist CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Sicuro di voler eliminare %1? + Are you sure you want to delete the selected %1 songs? Sicuro di voler eliminare le %1 canzoni selezionate? + The song files contained will also be deleted Il file del brano sarà rimosso + Delete Elimina + Cancel Annulla @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Sicuro di voler eliminare %1? + Are you sure you want to remove the selected %1 songs? Sicuro di voler eliminare le %1 canzoni selezionate? + Are you sure you want to delete this playlist? Sicuro di voler eliminare questa playlist? + Remove Rimuovi + Delete Elimina + Cancel Annulla @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalizzazione + Monophony Monofonia + Classical Classic + Club Club + Dance Dance + Full Bass Full Bass + Full Bass and Treble Full Bass e Tremble + Full Treble Full Treble + Headphones Cuffie + Hall Sala + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Equalizzatore + Save Salva + Reset Reset + Preamplifier Preamplifica + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Importazione fallita, non è stato trovato un file valido + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Esegui sequenza + My favorites I miei preferiti + Create new playlist Crea nuova Playlist + New playlist Nuova playlist @@ -525,80 +654,98 @@ LyricPage + Artist Artista + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musica + Play/Pause Play/Pausa + Previous Precedente + Next Avanti + Exit Esci + Already added to the playlist Già aggiunto alla Playlist + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected E' stato inserito un disco + My Favorites I miei Preferiti + All Songs - + MulitSelectMenu + Add to Aggiungi a + Remove from playlist Rimuovi dalla playlist + Delete from local disk Elimina dal disco locale @@ -606,30 +753,37 @@ MusicBaselistview + Library Libreria + Albums Album + Artists Artisti + All Songs - + + Playlists Playlists + Create playlist - + + New playlist Nuova playlist @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites I miei Preferiti @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titolo + Artist Artista + Album Album + Type Tipo + Size Dimensioni + Duration Durata + Path Percorso @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausa + Play Play + Add to Aggiungi a + Open in file manager Apri nel file manager + Remove from playlist Rimuovi dalla playlist + Delete from local disk Elimina dal disco locale + Encoding Encoding + Song info Info brano @@ -710,19 +880,23 @@ QObject + Music is a local music player with beautiful design and simple functions. Music è un riproduttore musicale con design all'avanguardia e funzionalità semplificate. Localizzazione italiana a cura di Massimo A. Carofano + Music Musica + Unknown album Album sconosciuto + Unknown artist Artista sconosciuto @@ -730,14 +904,17 @@ Localizzazione italiana a cura di Massimo A. Carofano SearchResultDialog + Songs Brani + Artists Artisti + Albums Album @@ -745,34 +922,42 @@ Localizzazione italiana a cura di Massimo A. Carofano SearchResultWindow + No search results Nessun risultato disponibile + Search Results Risultati di ricerca + %1 albums - %2 songs %1 album - %2 brani + 1 album - 1 song 1 album - 1 brano + %1 album - %2 songs %1 album - %2 brani + Music Musica + Artist Artista + Album Album @@ -780,157 +965,195 @@ Localizzazione italiana a cura di Massimo A. Carofano SettingsDialog + Basic Base + Play Play + Autoplay Autoplay + Remember playback position on exit - + + Enable fade in/out Abilita dissolvenza iniziale/finale + Close Main Window Chiudi la finestra principale + Minimize to system tray Minimizza nella tray di Sistema + Exit Esci + Ask me always Chiedi sempre + Shortcuts Scorciatoie + Play/Pause Play/Pausa + Previous Precedente + Next Avanti + Volume up Aumenta Volume + Volume down Diminuisci Volume + Favorite Preferiti + Cancel Annulla + Replace Sostituisci + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Play + Songs Brani + Playlists Playlists + Settings Impostazioni + Play/Pause Play/Pausa + Previous Precedente + Next Avanti + Volume Up Volume Più + Volume Down Volume Meno + Mute Muto + Favorite Preferiti + Unfavorite Rimuovi dai preferiti + Song info Info brano + New playlist Nuova playlist + Add music Aggiungi brani + Rename playlist Rinomina playlist + Remove from playlist Rimuovi dalla playlist + Help Aiuto + Display shortcuts Visualizza scorciatoie @@ -938,10 +1161,12 @@ Localizzazione italiana a cura di Massimo A. Carofano Shortcuts + New playlist Nuova playlist + My Favorites I miei Preferiti @@ -949,18 +1174,22 @@ Localizzazione italiana a cura di Massimo A. Carofano SidebarMenu + Play Play + Add songs - + + Rename Rinomina + Delete Elimina @@ -968,26 +1197,36 @@ Localizzazione italiana a cura di Massimo A. Carofano SortMenu + CD playlist Playlist CD + Custom Personalizzazione + + + Date added - + + + Album Album + + Artist Artista + Title Titolo @@ -995,14 +1234,17 @@ Localizzazione italiana a cura di Massimo A. Carofano SublistTitleButton + 1 song 1 brano + %1 songs %1 brani + Play All Avvia tutti @@ -1010,6 +1252,7 @@ Localizzazione italiana a cura di Massimo A. Carofano ToolButtonItem + Play All Avvia tutti @@ -1017,50 +1260,62 @@ Localizzazione italiana a cura di Massimo A. Carofano Toolbar + Sequential play - + + List loop Ripetizione di Gruppo + Single loop Ripetizione singola + Shuffle Shuffle + Unfavorite Rimuovi dai preferiti + Favorite Preferiti + My Favorites I miei Preferiti + Previous Precedente + Play/Pause Play/Pausa + Next Avanti + Lyrics Lyrics + Play Queue Esegui sequenza @@ -1068,57 +1323,61 @@ Localizzazione italiana a cura di Massimo A. Carofano WindowTitlebar + Add playlist Aggiungi alla Playlist + New playlist Nuova playlist + + Add music Aggiungi brani + Equalizer Equalizzatore + Settings Impostazioni + Music Musica + Music is a local music player with beautiful design and simple functions. Music è un riproduttore musicale con design all'avanguardia e funzionalità semplificate. Localizzazione italiana a cura di Massimo A. Carofano + Version: Versione: - Quit - Chiudi - - + Previous page - + + Next page - + + Search Cerca - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ja.ts b/translations/deepin-music_ja.ts index 142564c03..91722efb1 100644 --- a/translations/deepin-music_ja.ts +++ b/translations/deepin-music_ja.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1曲 + %1 songs %1曲 @@ -32,55 +40,66 @@ AlbumListDelegate + %1 - + AlbumListView + Album アルバム + Artist アーティスト + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title タイトル + Artist アーティスト + Duration 再生時間 @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites お気に入りの曲 @@ -95,14 +115,17 @@ AlbumSublistView + Title タイトル + Artist アーティスト + Duration 再生時間 @@ -110,56 +133,78 @@ AlbumView + Albums アルバム + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1曲 + %1 songs %1曲 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites お気に入りの曲 @@ -174,18 +220,22 @@ AllMusicListView + Title タイトル + Artist アーティスト + Album アルバム + Duration 再生時間 @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1曲 + %1 songs %1曲 @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites お気に入りの曲 @@ -245,14 +305,17 @@ ArtistSublistView + Title タイトル + Album アルバム + Duration 再生時間 @@ -260,21 +323,25 @@ ArtistView + Artists アーティスト + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel キャンセル @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action アクションを選択してください + Minimize to system tray システムトレイに最小化 + Exit 終了 + Do not ask again 今後この質問を表示しない + Cancel キャンセル + Confirm 確認 @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song 1曲 + %1 songs %1曲 + Empty @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites お気に入りの曲 @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites お気に入りの曲 + CD playlist - + + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete 削除 + Cancel キャンセル @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete 削除 + Cancel キャンセル @@ -400,105 +492,138 @@ EqualizerDialog + Custom カスタム + Monophony - + + Classical クラシック + Club クラブ + Dance ダンス + Full Bass フルベース + Full Bass and Treble フルベース&トリブル + Full Treble フルトレブル + Headphones ヘッドフォン + Hall - + + Live ライブ + Party パーティー + Pop ポップ + Reggae レゲエ + Rock ロック + Ska スカ + Soft ソフト + Soft Rock ソフトロック + Techno - + + Equalizer イコライザ + Save 保存 + Reset リセット + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist 新しいプレイリスト @@ -525,111 +654,136 @@ LyricPage + Artist アーティスト + Album アルバム + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music ミュージック + Play/Pause 再生・一時停止 + Previous 前へ + Next 次へ + Exit 終了 + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites お気に入りの曲 + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist プレイリストから削除 + Delete from local disk - + MusicBaselistview + Library ライブラリ + Albums アルバム + Artists アーティスト + All Songs - + + Playlists プレイリスト + Create playlist - + + New playlist 新しいプレイリスト @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites お気に入りの曲 @@ -644,30 +799,37 @@ MusicInfoDialog + Title タイトル + Artist アーティスト + Album アルバム + Type 種類 + Size サイズ + Duration 再生時間 + Path パス @@ -675,34 +837,42 @@ MusicMoreMenu + Pause 一時停止 + Play 再生 + Add to - + + Open in file manager ファイルマネージャーを開く + Remove from playlist プレイリストから削除 + Delete from local disk - + + Encoding エンコーディング + Song info 音楽情報 @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music ミュージック + Unknown album 不明なアルバム + Unknown artist 不明なアーティスト @@ -729,14 +903,17 @@ SearchResultDialog + Songs - + + Artists アーティスト + Albums アルバム @@ -744,34 +921,42 @@ SearchResultWindow + No search results 検索結果なし + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music ミュージック + Artist アーティスト + Album アルバム @@ -779,168 +964,208 @@ SettingsDialog + Basic ベーシック + Play 再生 + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray システムトレイに最小化 + Exit 閉じる + Ask me always 常に確認する + Shortcuts ショートカット + Play/Pause 再生・一時停止 + Previous 前へ + Next 次へ + Volume up 音量を上げる + Volume down 音量を下げる + Favorite お気に入り + Cancel キャンセル + Replace 置き換える + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play 再生 + Songs - + + Playlists プレイリスト + Settings 設定 + Play/Pause 再生・一時停止 + Previous 前へ + Next 次へ + Volume Up 音量を上げる + Volume Down 音量を下げる + Mute ミュート + Favorite お気に入り + Unfavorite - + + Song info 音楽情報 + New playlist 新しいプレイリスト + Add music 曲を追加 + Rename playlist プレイリスト名を変更 + Remove from playlist プレイリストから削除 + Help ヘルプ + Display shortcuts - + Shortcuts + New playlist 新しいプレイリスト + My Favorites お気に入りの曲 @@ -948,18 +1173,22 @@ SidebarMenu + Play 再生 + Add songs - + + Rename 名前を変更 + Delete 削除 @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom カスタム + + + Date added - + + + Album アルバム + + Artist アーティスト + Title タイトル @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1曲 + %1 songs %1曲 + Play All すべて再生 @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All すべて再生 @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle シャッフル + Unfavorite - + + Favorite お気に入り + My Favorites お気に入りの曲 + Previous 前へ + Play/Pause 再生・一時停止 + Next 次へ + Lyrics 歌詞 + Play Queue キューを再生 @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist - + + New playlist 新しいプレイリスト + + Add music 曲を追加 + Equalizer イコライザ + Settings 設定 + Music ミュージック + Music is a local music player with beautiful design and simple functions. - + + Version: バージョン - Quit - 終了 - - + Previous page - + + Next page - + + Search 検索 - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ka.ts b/translations/deepin-music_ka.ts index fd49bfe7d..1975fd3aa 100644 --- a/translations/deepin-music_ka.ts +++ b/translations/deepin-music_ka.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel გაუქმება @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel გაუქმება + Confirm დადასტურება @@ -309,63 +382,76 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete წაშლა + Cancel გაუქმება @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete წაშლა + Cancel გაუქმება @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save შენახვა + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music მუსიკა + Play/Pause - + + Previous - + + Next შემდეგი + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type ტიპი + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music მუსიკა + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results არ არის ძებნის რეზულტატი + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music მუსიკა + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always ყოველთვის მკითხე + Shortcuts იარლიყები + Play/Pause - + + Previous - + + Next შემდეგი + Volume up - + + Volume down - + + Favorite - + + Cancel გაუქმება + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next შემდეგი + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help დახმარება + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete წაშლა @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next შემდეგი + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music მუსიკა + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_km_KH.ts b/translations/deepin-music_km_KH.ts index 13f743379..360e1b638 100644 --- a/translations/deepin-music_km_KH.ts +++ b/translations/deepin-music_km_KH.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel បោះបង់ @@ -282,90 +349,109 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel បោះបង់ + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete លុប + Cancel បោះបង់ @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete លុប + Cancel បោះបង់ @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save រក្សាទុក + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK យល់ព្រម @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next បន្ទាប់ + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results គ្មានលទ្ធផលស្វែងរកទេ + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next បន្ទាប់ + Volume up - + + Volume down - + + Favorite - + + Cancel បោះបង់ + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next បន្ទាប់ + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help ជំនួយ + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete លុប @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next បន្ទាប់ + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_ko.ts b/translations/deepin-music_ko.ts index 622fae05d..a2549f2dc 100644 --- a/translations/deepin-music_ko.ts +++ b/translations/deepin-music_ko.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 노래 1곡 + %1 songs 노래 %1곡 @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album 앨범 + Artist 아티스트 + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title 제목 + Artist 아티스트 + Duration 지속 시간 @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites 내 즐겨찾기 @@ -95,14 +115,17 @@ AlbumSublistView + Title 제목 + Artist 아티스트 + Duration 지속 시간 @@ -110,10 +133,12 @@ AlbumView + Albums 앨범 + %1 albums - %2 songs 앨범 %1장 - 노래 %2곡 @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 노래 1곡 + %1 songs 노래 %1곡 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites 내 즐겨찾기 @@ -174,18 +220,22 @@ AllMusicListView + Title 제목 + Artist 아티스트 + Album 앨범 + Duration 지속 시간 @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 노래 1곡 + %1 songs 노래 %1곡 @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites 내 즐겨찾기 @@ -245,14 +305,17 @@ ArtistSublistView + Title 제목 + Album 앨범 + Duration 지속 시간 @@ -260,10 +323,12 @@ ArtistView + Artists 아티스트 + %1 artists - %2 songs 아티스트 %1명 - 노래 %2곡 @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD가 제거되었습니다. + Cancel 취소 @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action 동작을 선택해주세요 + Minimize to system tray 시스템 트레이로 최소화 + Exit 나가기 + Do not ask again 다시 묻지 않기 + Cancel 취소 + Confirm 확인 @@ -309,18 +382,22 @@ CurrentPlayList + Play queue 재생 큐 + 1 song 노래 1곡 + %1 songs 노래 %1곡 + Empty 비우기 @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites 내 즐겨찾기 @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites 내 즐겨찾기 + CD playlist - + + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? %1을(를) 삭제하시겠습니까? + Are you sure you want to delete the selected %1 songs? 선택한 %1 노래를 삭제하시겠습니까? + The song files contained will also be deleted 포함된 음악 파일도 함께 삭제됩니다 + Delete 삭제 + Cancel 취소 @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? %1을(를) 제거 하시겠습니까? + Are you sure you want to remove the selected %1 songs? 선택한 %1 곡을 삭제 하시겠습니까? + Are you sure you want to delete this playlist? 이 재생 목록을 삭제하시겠습니까? + Remove 제거 + Delete 삭제 + Cancel 취소 @@ -400,105 +492,138 @@ EqualizerDialog + Custom 사용자 지정 + Monophony - + + Classical 클래식 + Club 클럽 + Dance + Full Bass 풀 베이스 + Full Bass and Treble 최대 저음 및 고음 + Full Treble 완전한 최고 음역 + Headphones 헤드폰 + Hall - + + Live 생방송 + Party 파티 + Pop + Reggae 레게 + Rock 록 음악 + Ska 스카 + Soft 약하게 + Soft Rock 소프트 록(Soft Rock) + Techno - + + Equalizer 이퀄라이저 + Save 저장 + Reset 재설정 + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found 가져오기 실패, 올바른 음악 파일을 찾을 수 없습니다 + OK 확인 @@ -506,18 +631,22 @@ ImportMenu + Play queue 재생 큐 + My favorites 내 즐겨찾기 + Create new playlist 새 재생 목록 만들기 + New playlist 새 재생목록 @@ -525,80 +654,98 @@ LyricPage + Artist 아티스트 + Album 앨범 + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music 음악 + Play/Pause 재생/일시정지 + Previous 이전 + Next 다음 + Exit 나가기 + Already added to the playlist 재생목록에 이미 추가됨 + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected 디스크가 연결되었습니다 + My Favorites 내 즐겨찾기 + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist 재생 목록에서 제거 + Delete from local disk 로컬 디스크에서 삭제 @@ -606,30 +753,37 @@ MusicBaselistview + Library 라이브러리 + Albums 앨범 + Artists 아티스트 + All Songs - + + Playlists 재생목록 + Create playlist - + + New playlist 새 재생목록 @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites 내 즐겨찾기 @@ -644,30 +799,37 @@ MusicInfoDialog + Title 제목 + Artist 아티스트 + Album 앨범 + Type 타입 + Size 크기 + Duration 지속 시간 + Path 경로 @@ -675,34 +837,42 @@ MusicMoreMenu + Pause 중지 + Play 재생 설정 + Add to - + + Open in file manager 파일 관리도구에서 열기 + Remove from playlist 재생 목록에서 제거 + Delete from local disk 로컬 디스크에서 삭제 + Encoding 인코딩 + Song info 노래 정보 @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. 음악은 아름다운 디자인과 간단한 기능을 갖춘 음악 플레이어입니다. + Music 음악 + Unknown album 알 수없는 앨범 + Unknown artist 알 수 없는 아티스트 @@ -729,14 +903,17 @@ SearchResultDialog + Songs 노래 + Artists 아티스트 + Albums 앨범 @@ -744,34 +921,42 @@ SearchResultWindow + No search results 검색결과가 없습니다. + Search Results 검색 결과 + %1 albums - %2 songs 앨범 %1장 - 노래 %2곡 + 1 album - 1 song 앨범 1장 - 노래 1곡 + %1 album - %2 songs 앨범 %1장 - 노래 %2곡 + Music 음악 + Artist 아티스트 + Album 앨범 @@ -779,157 +964,195 @@ SettingsDialog + Basic 기본 설정 + Play 재생 설정 + Autoplay 자동 재생 + Remember playback position on exit - + + Enable fade in/out 페이드 인/아웃 활성화 + Close Main Window 창 닫기 + Minimize to system tray 시스템 트레이로 최소화 + Exit 나가기 + Ask me always 항상 묻기 + Shortcuts 단축키 + Play/Pause 재생/일시정지 + Previous 이전 + Next 다음 + Volume up 볼륨 높이기 + Volume down 볼륨 낮추기 + Favorite 즐겨찾기 + Cancel 취소 + Replace 교체 + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play 재생 설정 + Songs 노래 + Playlists 재생목록 + Settings 설정 + Play/Pause 재생/일시정지 + Previous 이전 + Next 다음 + Volume Up 음량 높이기 + Volume Down 볼륨 내리기 + Mute 음소거 + Favorite 즐겨찾기 + Unfavorite 즐겨찾지 않음 + Song info 노래 정보 + New playlist 새 재생목록 + Add music 음악 추가 + Rename playlist 재생목록 이름변경 + Remove from playlist 재생 목록에서 제거 + Help 도움말 + Display shortcuts 단축키 표시 @@ -937,10 +1160,12 @@ Shortcuts + New playlist 새 재생목록 + My Favorites 내 즐겨찾기 @@ -948,18 +1173,22 @@ SidebarMenu + Play 재생 설정 + Add songs - + + Rename 이름 변경 + Delete 삭제 @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom 사용자 지정 + + + Date added - + + + Album 앨범 + + Artist 아티스트 + Title 제목 @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 노래 1곡 + %1 songs 노래 %1곡 + Play All 모두 재생 @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All 모두 재생 @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop 목록 루프 + Single loop 싱글 루프 + Shuffle 섞기 + Unfavorite 즐겨찾지 않음 + Favorite 즐겨찾기 + My Favorites 내 즐겨찾기 + Previous 이전 + Play/Pause 재생/일시정지 + Next 다음 + Lyrics 가사 + Play Queue 재생 큐 @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist 재생목록 추가 + New playlist 새 재생목록 + + Add music 음악 추가 + Equalizer 이퀄라이저 + Settings 설정 + Music 음악 + Music is a local music player with beautiful design and simple functions. 음악은 아름다운 디자인과 간단한 기능을 갖춘 음악 플레이어입니다. + Version: 버전: - Quit - 나가기 - - + Previous page - + + Next page - + + Search 찾기 - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_krl.ts b/translations/deepin-music_krl.ts index 0e377e06e..e449b2124 100644 --- a/translations/deepin-music_krl.ts +++ b/translations/deepin-music_krl.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_ku.ts b/translations/deepin-music_ku.ts index f457b5147..f4a95ef9d 100644 --- a/translations/deepin-music_ku.ts +++ b/translations/deepin-music_ku.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Betal Bike @@ -282,90 +349,109 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel Betal Bike + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Jê Bibe + Cancel Betal Bike @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Jê Bibe + Cancel Betal Bike @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save Qeyd Bike + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Tu encama lêgerînê tune ye + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel Betal Bike + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete Jê Bibe @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search Lê bigere - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ku_IQ.ts b/translations/deepin-music_ku_IQ.ts index 1e42bea7a..df7da17f0 100644 --- a/translations/deepin-music_ku_IQ.ts +++ b/translations/deepin-music_ku_IQ.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist Hunermend + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Sernivîs + Artist Hunermend + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Sernivîs + Artist Hunermend + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Sernivîs + Artist Hunermend + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Sernivîs + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel پاشگەزبوونەوە @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Li sêniya pergalê biçûk bike + Exit Derkeve + Do not ask again - + + Cancel پاشگەزبوونەوە + Confirm Bipejirîne @@ -309,63 +382,76 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Jê bibe + Cancel پاشگەزبوونەوە @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Jê bibe + Cancel پاشگەزبوونەوە @@ -400,105 +492,138 @@ EqualizerDialog + Custom Taybet + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK Baş e @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Bijareyên min + Create new playlist - + + New playlist Lîsteya lêdanê ya nû @@ -525,80 +654,98 @@ LyricPage + Artist Hunermend + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Mûzîk + Play/Pause Lêde/Bisekinîne + Previous Paşve + Next Pêşve + Exit Derkeve + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Ji lîsteya lêdanê rake + Delete from local disk Ji dîska xwecihî bibe @@ -606,30 +753,37 @@ MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist Lîsteya lêdanê ya nû @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Sernivîs + Artist Hunermend + Album - + + Type - + + Size - + + Duration - + + Path @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Bisekine + Play Lê Bide + Add to - + + Open in file manager - + + Remove from playlist Ji lîsteya lêdanê rake + Delete from local disk Ji dîska xwecihî bibe + Encoding Kodkirin + Song info Agahiya stranê @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Mûzîk + Unknown album Album nayê zanîn + Unknown artist Hunermend nayê zanîn @@ -729,237 +903,292 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Mûzîk + Artist Hunermend + Album - + SettingsDialog + Basic Bingehîn + Play Lê Bide + Autoplay Jixweberî lê de + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window Paceya Bingehîn Bigire + Minimize to system tray Li sêniya pergalê biçûk bike + Exit دەرچوون + Ask me always - + + Shortcuts Kurtebirî + Play/Pause Lêde/Bisekinîne + Previous Paşve + Next Pêşve + Volume up Deng rake + Volume down Deng dîne + Favorite Bijare + Cancel پاشگەزبوونەوە + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Lê Bide + Songs - + + Playlists - + + Settings Mîheng + Play/Pause Lêde/Bisekinîne + Previous Paşve + Next Pêşve + Volume Up - + + Volume Down - + + Mute Bêdeng + Favorite Bijare + Unfavorite - + + Song info Agahiya stranê + New playlist Lîsteya lêdanê ya nû + Add music - + + Rename playlist - + + Remove from playlist Ji lîsteya lêdanê rake + Help - + + Display shortcuts - + Shortcuts + New playlist Lîsteya lêdanê ya nû + My Favorites - + SidebarMenu + Play Lê Bide + Add songs - + + Rename Dîsa nav lê bide + Delete Jê bibe @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Taybet + + + Date added - + + + Album - + + + Artist Hunermend + Title Sernivîs @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Hemû Lê de @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Hemû Lê de @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Li hev bide + Unfavorite - + + Favorite Bijare + My Favorites - + + Previous Paşve + Play/Pause Lêde/Bisekinîne + Next Pêşve + Lyrics Peyvên stranê + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Lîsteya lêdanê ya nû + + Add music - + + Equalizer - + + Settings Mîheng + Music Mûzîk + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search Lê bigere - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ky.ts b/translations/deepin-music_ky.ts index 5a67d8c18..ad3ae386c 100644 --- a/translations/deepin-music_ky.ts +++ b/translations/deepin-music_ky.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel жокко чыгаруу @@ -282,90 +349,109 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel жокко чыгаруу + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel жокко чыгаруу @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel жокко чыгаруу @@ -400,723 +492,890 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next кийинки + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next кийинки + Volume up - + + Volume down - + + Favorite - + + Cancel жокко чыгаруу + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next кийинки + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next кийинки + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_lt.ts b/translations/deepin-music_lt.ts index d3480666c..0e096355b 100644 --- a/translations/deepin-music_lt.ts +++ b/translations/deepin-music_lt.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs Pridėti dainų + Open Folders Atverti aplankus + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Albumas + Artist Atlikėjas + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Pavadinimas + Artist Atlikėjas + Duration Trukmė @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Pavadinimas + Artist Atlikėjas + Duration Trukmė @@ -110,10 +133,12 @@ AlbumView + Albums Albumai + %1 albums - %2 songs Albumų: %1 – Dainų: %2 @@ -121,71 +146,96 @@ AllMusicDefaultPage + Add Songs Pridėti dainų + Open Folders Atverti aplankus + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Pavadinimas + Artist Atlikėjas + Album Albumas + Duration Trukmė @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs Pridėti dainų + Open Folders Atverti aplankus + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Pavadinimas + Album Albumas + Duration Trukmė @@ -260,21 +323,25 @@ ArtistView + Artists Atlikėjai + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Atsisakyti @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Suskleisti į sistemos dėklą + Exit Išeiti + Do not ask again Daugiau nebeklausti + Cancel Atsisakyti + Confirm Patvirtinti @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Išvalyti @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Ar tikrai norite ištrinti %1? + Are you sure you want to delete the selected %1 songs? Ar tikrai norite ištrinti %1 pasirinktas dainas? + The song files contained will also be deleted - + + Delete Ištrinti + Cancel Atsisakyti @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Ar tikrai norite pašalinti %1? + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? Ar tikrai norite ištrinti šį grojaraštį? + Remove Šalinti + Delete Ištrinti + Cancel Atsisakyti @@ -400,105 +492,138 @@ EqualizerDialog + Custom Pasirinktinas + Monophony - + + Classical Klasikinė + Club Klubinė + Dance Šokių + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones Ausinės + Hall - + + Live Gyvai + Party Vakarėlis + Pop Pop + Reggae Regis + Rock Rokas + Ska Ska + Soft Švelniai + Soft Rock Švelnus rokas + Techno - + + Equalizer Glodintuvas + Save Įrašyti + Reset Atstatyti + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK Gerai @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Mano mėgstamos + Create new playlist - + + New playlist Naujas grojaraštis @@ -525,80 +654,98 @@ LyricPage + Artist Atlikėjas + Album Albumas + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Muzika + Play/Pause Groti/Pristabdyti + Previous Ankstesnis + Next Kitas + Exit Išeiti + Already added to the playlist Jau pridėta į grojaraštį + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Šalinti iš grojaraščio + Delete from local disk Ištrinti iš vietinio disko @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteka + Albums Albumai + Artists Atlikėjai + All Songs - + + Playlists Grojaraščiai + Create playlist - + + New playlist Naujas grojaraštis @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Pavadinimas + Artist Atlikėjas + Album Albumas + Type Tipas + Size Dydis + Duration Trukmė + Path Kelias @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pristabdyti + Play Groti + Add to - + + Open in file manager Atverti failų tvarkytuvėje + Remove from playlist Šalinti iš grojaraščio + Delete from local disk Ištrinti iš vietinio disko + Encoding Koduotė + Song info Dainos informacija @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Muzika + Unknown album Nežinomas albumas + Unknown artist Nežinomas atlikėjas @@ -729,14 +903,17 @@ SearchResultDialog + Songs Dainos + Artists Atlikėjai + Albums Albumai @@ -744,34 +921,42 @@ SearchResultWindow + No search results Paieškos rezultatų nėra + Search Results Paieškos rezultatai + %1 albums - %2 songs Albumų: %1 – Dainų: %2 + 1 album - 1 song 1 albumas – 1 daina + %1 album - %2 songs Albumų: %1 – Dainų: %2 + Music Muzika + Artist Atlikėjas + Album Albumas @@ -779,157 +964,195 @@ SettingsDialog + Basic Pagrindiniai + Play Groti + Autoplay Automatinis atkūrimas + Remember playback position on exit - + + Enable fade in/out Įjungti laipsnišką stiprėjimą/išnykimą + Close Main Window Užverti pagrindinį langą + Minimize to system tray Suskleisti į sistemos dėklą + Exit Išeiti + Ask me always Visada klausti + Shortcuts Trumpiniai + Play/Pause Groti/Pristabdyti + Previous Ankstesnis + Next Kitas + Volume up Garsinti + Volume down Tildyti + Favorite Mėgstama + Cancel Atsisakyti + Replace Pakeisti + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Groti + Songs Dainos + Playlists Grojaraščiai + Settings Nustatymai + Play/Pause Groti/Pristabdyti + Previous Ankstesnis + Next Kitas + Volume Up Garsinti + Volume Down Tildyti + Mute Nutildyti + Favorite Mėgstama + Unfavorite - + + Song info Dainos informacija + New playlist Naujas grojaraštis + Add music Pridėti muziką + Rename playlist Pervadinti grojaraštį + Remove from playlist Šalinti iš grojaraščio + Help Žinynas + Display shortcuts Rodyti sparčiuosius klavišus @@ -937,29 +1160,35 @@ Shortcuts + New playlist Naujas grojaraštis + My Favorites - + SidebarMenu + Play Groti + Add songs - + + Rename Pervadinti + Delete Ištrinti @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Pasirinktinas + + + Date added - + + + Album Albumas + + Artist Atlikėjas + Title Pavadinimas @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Groti visus @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Groti visus @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Maišyti + Unfavorite - + + Favorite Mėgstama + My Favorites - + + Previous Ankstesnis + Play/Pause Groti/Pristabdyti + Next Kitas + Lyrics Dainų žodžiai + Play Queue - + WindowTitlebar + Add playlist Pridėti grojaraštį + New playlist Naujas grojaraštis + + Add music Pridėti muziką + Equalizer Glodintuvas + Settings Nustatymai + Music Muzika + Music is a local music player with beautiful design and simple functions. - + + Version: Versija: - Quit - Išeiti - - + Previous page Ankstesnis puslapis + Next page Kitas puslapis + Search Ieškoti - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ml.ts b/translations/deepin-music_ml.ts index 247890f3a..70c6ca5a5 100644 --- a/translations/deepin-music_ml.ts +++ b/translations/deepin-music_ml.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel റദ്ദാക്കുക @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit പുറത്തേക്ക് കടക്കുക + Do not ask again - + + Cancel റദ്ദാക്കുക + Confirm ഉറപ്പാക്കുക @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty കാലിയാക്കുക @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete നീക്കം ചെയ്യുക + Cancel റദ്ദാക്കുക @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete നീക്കം ചെയ്യുക + Cancel റദ്ദാക്കുക @@ -400,566 +492,703 @@ EqualizerDialog + Custom കസ്റ്റം + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save സൂക്ഷിക്കുക + Reset പുനഃക്രമീകരിക്കുക + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music സംഗീതം + Play/Pause - + + Previous - + + Next അടുത്തത് + Exit പുറത്തേക്ക് കടക്കുക + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size വലുപ്പം + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music സംഗീതം + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results ഫലങ്ങളൊന്നുമില്ല + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music സംഗീതം + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit പുറത്തേക്ക് കടക്കുക + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next അടുത്തത് + Volume up - + + Volume down - + + Favorite - + + Cancel റദ്ദാക്കുക + Replace മാറ്റിവയ്ക്കുക + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next അടുത്തത് + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete നീക്കം ചെയ്യുക @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom കസ്റ്റം + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next അടുത്തത് + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music സംഗീതം + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search തിരയുക - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_mn.ts b/translations/deepin-music_mn.ts index 2a14d2a8f..460c29227 100644 --- a/translations/deepin-music_mn.ts +++ b/translations/deepin-music_mn.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist Уран бүтээлч + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Гарчиг + Artist Уран бүтээлч + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Гарчиг + Artist Уран бүтээлч + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Гарчиг + Artist Уран бүтээлч + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Гарчиг + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Цуцлах @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Систем мѳрѳнд шилжүүлэх + Exit Гарах + Do not ask again - + + Cancel Цуцлах + Confirm Батлах @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Хоосон @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Устгах + Cancel Цуцлах @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Устгах + Cancel Цуцлах @@ -400,105 +492,138 @@ EqualizerDialog + Custom Тусгайлсан + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save Хадгалах + Reset Дахин шинэчлэх + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ЗА @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Дуртай + Create new playlist - + + New playlist Шинэ жагсаалт @@ -525,80 +654,98 @@ LyricPage + Artist Уран бүтээлч + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Хөгжим + Play/Pause Тоглуулах/Зогсоох + Previous Ѳмнѳх + Next Дараах + Exit Гарах + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Жагсаалтаас хасах + Delete from local disk Ѳѳр дээрээс устгах @@ -606,30 +753,37 @@ MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist Шинэ жагсаалт @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Гарчиг + Artist Уран бүтээлч + Album - + + Type - + + Size Хэмжээ + Duration - + + Path Зам @@ -675,34 +837,42 @@ MusicMoreMenu + Pause - + + Play Тоглуулах + Add to - + + Open in file manager Файл зохицуулагч дээр нээх + Remove from playlist Жагсаалтаас хасах + Delete from local disk Ѳѳр дээрээс устгах + Encoding Энкод + Song info Дууны мэдээлэл @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Хөгжим + Unknown album Тодорхойгүй цомог + Unknown artist Тодорхойгүй уран бүтээлч @@ -729,207 +903,256 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Хайлтын үр дүн олдсонгүй + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Хөгжим + Artist Уран бүтээлч + Album - + SettingsDialog + Basic Энгийн + Play Тоглуулах + Autoplay Тоглуул + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window Үндсэн цонхыг хаах + Minimize to system tray Систем мѳрѳнд шилжүүлэх + Exit Гарах + Ask me always - + + Shortcuts Товчилборууд + Play/Pause Тоглуулах/Зогсоох + Previous Ѳмнѳх + Next Дараах + Volume up Дуу чангалах + Volume down Дуу намсгах + Favorite Дуртай + Cancel Цуцлах + Replace Солих + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Тоглуулах + Songs - + + Playlists - + + Settings Тохиргоо + Play/Pause Тоглуулах/Зогсоох + Previous Ѳмнѳх + Next Дараах + Volume Up - + + Volume Down - + + Mute Дуу хаах + Favorite Дуртай + Unfavorite - + + Song info Дууны мэдээлэл + New playlist Шинэ жагсаалт + Add music - + + Rename playlist - + + Remove from playlist Жагсаалтаас хасах + Help Тусламж + Display shortcuts Товчилбор устгах @@ -937,29 +1160,35 @@ Shortcuts + New playlist Шинэ жагсаалт + My Favorites - + SidebarMenu + Play Тоглуулах + Add songs - + + Rename Дахин нэрлэх + Delete Устгах @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Тусгайлсан + + + Date added - + + + Album - + + + Artist Уран бүтээлч + Title Гарчиг @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Бүгдийг тоглуул @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Бүгдийг тоглуул @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Холих + Unfavorite - + + Favorite Дуртай + My Favorites - + + Previous Ѳмнѳх + Play/Pause Тоглуулах/Зогсоох + Next Дараах + Lyrics Дууны үг + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Шинэ жагсаалт + + Add music - + + Equalizer - + + Settings Тохиргоо + Music Хөгжим + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search Хайх - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_mr.ts b/translations/deepin-music_mr.ts index 985bf8e8a..95953db43 100644 --- a/translations/deepin-music_mr.ts +++ b/translations/deepin-music_mr.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_ms.ts b/translations/deepin-music_ms.ts index 3cb5f62a4..2a7bd8001 100644 --- a/translations/deepin-music_ms.ts +++ b/translations/deepin-music_ms.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Tambah Lagu + Open Folders Buka Folder + Drag music files here or Serety fail muzik ke sini atau - scan the Music directory - imbas direktori Muzik + + scan the Music directory + AlbumGridDelegate + 1 song 1 lagu + %1 songs %1 lagu @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Artis + Tracks Trek + Date added Tarikh ditambah @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Lihat perincian + Play all Main semua + Add to Tambah ke @@ -73,14 +89,17 @@ AlbumSublist + Title Tajuk + Artist Artis + Duration Tempoh @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Kegemaran Saya @@ -95,14 +115,17 @@ AlbumSublistView + Title Tajuk + Artist Artis + Duration Tempoh @@ -110,10 +133,12 @@ AlbumView + Albums Album + %1 albums - %2 songs %1 album - %2 lagu @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs Tambah Lagu + Open Folders Buka Folder + Drag music files here or Serety fail muzik ke sini atau - Your favorite songs will be displayed here. - Lagu kegemaran anda akan dipaparkan di sini. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - Klik“ ♥ ”untuk menmab satu lagu ke dalam Kegemaran Saya + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Belum ada lagu. Klik“ ➕ ”untuk menambah masuk lagu ke dalam senarai main. + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs Semua Lagu + 1 song 1 lagu + %1 songs %1 lagu @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Kegemaran Saya @@ -174,18 +220,22 @@ AllMusicListView + Title Tajuk + Artist Artis + Album Album + Duration Tempoh @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Tambah Lagu + Open Folders Buka Folder + Drag music files here or Serety fail muzik ke sini atau - scan the Music directory - imbas direktori Muzik + + scan the Music directory + ArtistGridDelegate + 1 song 1 lagu + %1 songs %1 lagu @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Lihat perincian + Play all Main semua + Add to Tambah ke @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Kegemaran Saya @@ -245,14 +305,17 @@ ArtistSublistView + Title Tajuk + Album Album + Duration Tempoh @@ -260,10 +323,12 @@ ArtistView + Artists Artis + %1 artists - %2 songs %1 artis - %2 lagu @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD telah ditanggalkan + Cancel Batal @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Sila pilih tindakan anda + Minimize to system tray Minimumkan ke dalam talam sistem + Exit Keluar + Do not ask again Jangan tanya lagi + Cancel Batal + Confirm Sahkan @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Main baris gilir + 1 song 1 lagu + %1 songs %1 lagu + Empty Kosong @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Kegemaran Saya @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Kegemaran Saya + CD playlist Senarai main CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Anda pasti mahu memadam %1? + Are you sure you want to delete the selected %1 songs? Anda pasti mahu memadam %1 lagu terpilih ini? + The song files contained will also be deleted Fail lagu yang terkandung juga akan dipadamkan + Delete Padam + Cancel Batal @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Anda pasti mahu membuang %1? + Are you sure you want to remove the selected %1 songs? Anda pasti mahu membuang %1 lagu terpilih ini? + Are you sure you want to delete this playlist? Anda pasti mahu memadam senarai main ini? + Remove Buang + Delete Padam + Cancel Batal @@ -400,105 +492,138 @@ EqualizerDialog + Custom Suai + Monophony Monophoni + Classical Klasik + Club Kelab + Dance Dance + Full Bass Bass Penuh + Full Bass and Treble Bass Penuh dan Trebel + Full Treble Trebel Penuh + Headphones Fon kepala + Hall Dewan + Live Langsung + Party Parti + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Lembut + Soft Rock Soft Rock + Techno Techno + Equalizer Penyama + Save Simpan + Reset Tetap semula + Preamplifier Prapenguat + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Import gagal, tiada fail muzik yang sah ditemui + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Main baris gilir + My favorites Kegemaran saya + Create new playlist Cipta senarai main baharu + New playlist Senarai main baharu @@ -525,18 +654,22 @@ LyricPage + Artist Artis + Album Album + No lyrics found Tiada lirik ditemui + Please put the lyric file (same name as the song) and the song file in the same folder Sila letak fail lirik (pastikan nama serupa dengan lagu) dan fail lagu dalam folder yang sama @@ -544,46 +677,57 @@ MainWindow + Music Muzik + Play/Pause Main/Jeda + Previous Terdahulu + Next Berikutnya + Exit Keluar + Already added to the playlist Sudah ditambah ke dalam senarai main + Added to "%1" Ditambah kepada "%1" + Removed from "My Favorites" Buang dari "Kegemaran Saya" + A disc is connected Cakera bersambung + My Favorites Kegemaran Saya + All Songs Semua Lagu @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Tambah ke + Remove from playlist Buang dari senarai main + Delete from local disk Padam dari cakera setempat @@ -606,30 +753,37 @@ MusicBaselistview + Library Pustaka + Albums Album + Artists Artis + All Songs Semua Lagu + Playlists Senarai main + Create playlist Cipta senarai main + New playlist Senarai main baharu @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Kegemaran Saya @@ -644,30 +799,37 @@ MusicInfoDialog + Title Tajuk + Artist Artis + Album Album + Type Jenis + Size Saiz + Duration Tempoh + Path Laluan @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Jeda + Play Main + Add to Tambah ke + Open in file manager Buka dalam pengurus fail + Remove from playlist Buang dari senarai main + Delete from local disk Padam dari cakera setempat + Encoding Pengekodan + Song info Maklumat lagu @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Muzik ialah sebuah pemain muzik setempat dengan reka bentuk cantik dan fungsi-fungsi yang ringkas. + Music Muzik + Unknown album Album tidak diketahui + Unknown artist Artis tidak diketahui @@ -729,14 +903,17 @@ SearchResultDialog + Songs Lagu + Artists Artis + Albums Album @@ -744,34 +921,42 @@ SearchResultWindow + No search results Tiada keputusan gelintar + Search Results Keputusan Gelintar + %1 albums - %2 songs %1 album - %2 lagu + 1 album - 1 song 1 album - 1 lagu + %1 album - %2 songs %1 album - %2 lagu + Music Muzik + Artist Artis + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Asas + Play Main + Autoplay Automain + Remember playback position on exit Ingat kedudukan main balik bila keluar + Enable fade in/out Benarkan resap jelma/lenyap + Close Main Window Tutup Tetingkap Utama + Minimize to system tray Minimumkan ke dalam talam sistem + Exit Keluar + Ask me always Sentiasa tanya saya + Shortcuts Pintasan + Play/Pause Main/Jeda + Previous Terdahulu + Next Berikutnya + Volume up Volum naik + Volume down Volum turun + Favorite Kegemaran + Cancel Batal + Replace Ganti + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Main + Songs Lagu + Playlists Senarai main + Settings Tetapan + Play/Pause Main/Jeda + Previous Terdahulu + Next Berikutnya + Volume Up Volum Naik + Volume Down Volum Turun + Mute Senyap + Favorite Kegemaran + Unfavorite Nyahgemar + Song info Maklumat lagu + New playlist Senarai main baharu + Add music Tambah muzik + Rename playlist Nama semula senarai main + Remove from playlist Buang dari senarai main + Help Bantuan + Display shortcuts Papar pintasan @@ -937,10 +1160,12 @@ Shortcuts + New playlist Senarai main baharu + My Favorites Kegemaran Saya @@ -948,18 +1173,22 @@ SidebarMenu + Play Main + Add songs Tambah lagu + Rename Nama Semula + Delete Padam @@ -967,26 +1196,36 @@ SortMenu + CD playlist Senarai main CD + Custom Suai + + + Date added Tarikh ditambah + + Album Album + + Artist Artis + Title Tajuk @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 lagu + %1 songs %1 lagu + Play All Main Semua @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Main Semua @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Main berjujukan + List loop Ulang senarai + Single loop Sekali ulang + Shuffle Kocok + Unfavorite Nyahgemar + Favorite Kegemaran + My Favorites Kegemaran Saya + Previous Terdahulu + Play/Pause Main/Jeda + Next Berikutnya + Lyrics Lirik + Play Queue Main Baris Gilir @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Tambah senarai main + New playlist Senarai main baharu + + Add music Tambah muzik + Equalizer Penyama + Settings Tetapan + Music Muzik + Music is a local music player with beautiful design and simple functions. Muzik ialah sebuah pemain muzik setempat dengan reka bentuk cantik dan fungsi-fungsi yang ringkas. + Version: Versi: - Quit - Keluar - - + Previous page Halaman terdahulu + Next page Halaman berikut + Search Gelintar - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_nb.ts b/translations/deepin-music_nb.ts index e6f049e53..7aa685f30 100644 --- a/translations/deepin-music_nb.ts +++ b/translations/deepin-music_nb.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 sang + %1 songs %1 sanger @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Artist + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Tittel + Artist Artist + Duration Lengde @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mine favoritter @@ -95,14 +115,17 @@ AlbumSublistView + Title Tittel + Artist Artist + Duration Lengde @@ -110,56 +133,78 @@ AlbumView + Albums Album + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 sang + %1 songs %1 sanger @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mine favoritter @@ -174,18 +220,22 @@ AllMusicListView + Title Tittel + Artist Artist + Album Album + Duration Lengde @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 sang + %1 songs %1 sanger @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Mine favoritter @@ -245,14 +305,17 @@ ArtistSublistView + Title Tittel + Album Album + Duration Lengde @@ -260,21 +323,25 @@ ArtistView + Artists Artister + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Avbryt @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Vennligst gjør ett valg + Minimize to system tray Minimer til systemfeltet + Exit Lukk + Do not ask again Ikke spør igjen + Cancel Avbryt + Confirm Bekreft @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song 1 sang + %1 songs %1 sanger + Empty Tøm @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mine favoritter @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Mine favoritter + CD playlist CD spilleliste + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Slett + Cancel Avbryt @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Slett + Cancel Avbryt @@ -400,105 +492,138 @@ EqualizerDialog + Custom Egendefinert + Monophony Monofonisk + Classical Klassisk + Club Klubb + Dance Dans + Full Bass Full pass + Full Bass and Treble Full bass og risting + Full Treble Full risting + Headphones Hodetelefoner + Hall Hall + Live Live + Party Fest + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Mykt + Soft Rock Myk Rock + Techno Techno + Equalizer Ekvalisator + Save Lagre + Reset Reset + Preamplifier Forforsterker + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Mine favoritter + Create new playlist - + + New playlist Ny spilleliste @@ -525,80 +654,98 @@ LyricPage + Artist Artist + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musikk + Play/Pause Spill/Pause + Previous Forrige + Next Neste + Exit Lukk + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Mine favoritter + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Fjern fra spilleliste + Delete from local disk Slett fra lokal disk @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliotek + Albums Album + Artists Artister + All Songs - + + Playlists - + + Create playlist - + + New playlist Ny spilleliste @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mine favoritter @@ -644,30 +799,37 @@ MusicInfoDialog + Title Tittel + Artist Artist + Album Album + Type Type + Size Størrelse + Duration Lengde + Path Sti @@ -675,53 +837,65 @@ MusicMoreMenu + Pause Pause + Play Spill av + Add to - + + Open in file manager Åpne i filbehandleren + Remove from playlist Fjern fra spilleliste + Delete from local disk Slett fra lokal disk + Encoding Enkoding + Song info - + QObject + Music is a local music player with beautiful design and simple functions. ‎Musikk er en ‎‎lokal‎‎ ‎‎musikkspiller‎‎ med vakkert design og enkle funksjoner. + Music Musikk + Unknown album Ukjent album + Unknown artist Ukjent artist @@ -729,14 +903,17 @@ SearchResultDialog + Songs - + + Artists Artister + Albums Album @@ -744,34 +921,42 @@ SearchResultWindow + No search results Ingen søkeresultater + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Musikk + Artist Artist + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Grunnleggende + Play Spill av + Autoplay Autoavspilling + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray Minimer til systemfeltet + Exit Lukk + Ask me always - + + Shortcuts Hurtigtaster + Play/Pause Spill/Pause + Previous Forrige + Next Neste + Volume up Lyd opp + Volume down Lyd ned + Favorite Favoritt + Cancel Avbryt + Replace Erstatt + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Spill av + Songs - + + Playlists - + + Settings Instillinger + Play/Pause Spill/Pause + Previous Forrige + Next Neste + Volume Up Volum opp + Volume Down Volum ned + Mute Demp + Favorite Favoritt + Unfavorite - + + Song info - + + New playlist Ny spilleliste + Add music Legg til musikk + Rename playlist - + + Remove from playlist Fjern fra spilleliste + Help Hjelp + Display shortcuts Vis hurtigtaster @@ -937,10 +1160,12 @@ Shortcuts + New playlist Ny spilleliste + My Favorites Mine favoritter @@ -948,18 +1173,22 @@ SidebarMenu + Play Spill av + Add songs - + + Rename Endre navn + Delete Slett @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD spilleliste + Custom Egendefinert + + + Date added - + + + Album Album + + Artist Artist + Title Tittel @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 sang + %1 songs %1 sanger + Play All Spill alle @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Spill alle @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Gjenta liste + Single loop Gjenta en gang + Shuffle Tilfeldig rekkefølge + Unfavorite - + + Favorite Favoritt + My Favorites Mine favoritter + Previous Forrige + Play/Pause Spill/Pause + Next Neste + Lyrics Lyrikk + Play Queue Avspillingskø @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist - + + New playlist Ny spilleliste + + Add music Legg til musikk + Equalizer Ekvalisator + Settings Instillinger + Music Musikk + Music is a local music player with beautiful design and simple functions. ‎Musikk er en ‎‎lokal‎‎ ‎‎musikkspiller‎‎ med vakkert design og enkle funksjoner. + Version: Versjon: - Quit - Avslutt - - + Previous page - + + Next page - + + Search Søk - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ne.ts b/translations/deepin-music_ne.ts index 65a436c81..d93b7c693 100644 --- a/translations/deepin-music_ne.ts +++ b/translations/deepin-music_ne.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel रद्द गर्नुहोस् @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel रद्द गर्नुहोस् + Confirm पक्का गर्नु @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty खाली गर्नु @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete मेटाउनुहोस् + Cancel रद्द गर्नुहोस् @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete मेटाउनुहोस् + Cancel रद्द गर्नुहोस् @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save सुरक्षित गर्नुहोस् + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ठिक छ @@ -506,430 +631,528 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music संगीत + Play/Pause - + + Previous - + + Next अर्को + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size आकार + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music संगीत + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music संगीत + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts सर्टकटहरू + Play/Pause - + + Previous - + + Next अर्को + Volume up - + + Volume down - + + Favorite - + + Cancel रद्द गर्नुहोस् + Replace बदल्नुहोस् + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings सेटिंग्स + Play/Pause - + + Previous - + + Next अर्को + Volume Up - + + Volume Down - + + Mute म्यूट गर्नुहोस् + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help सयोग + Display shortcuts प्रदर्शन सर्टकट @@ -937,29 +1160,35 @@ Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete मेटाउनुहोस् @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next अर्को + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings सेटिंग्स + Music संगीत + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search खोजी गर्नुहोस् - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_nl.ts b/translations/deepin-music_nl.ts index bde1224ac..99621a344 100644 --- a/translations/deepin-music_nl.ts +++ b/translations/deepin-music_nl.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Nummers toevoegen + Open Folders Mappen openen + Drag music files here or Versleep muziekbestanden hierheen of - scan the Music directory - indexeer de muziekmap + + scan the Music directory + indexeer de muziekmap AlbumGridDelegate + 1 song 1 nummer + %1 songs %1 nummers @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Artiest + Tracks Nummers + Date added Toegevoegd @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Details bekijken + Play all Alles afspelen + Add to Toevoegen aan @@ -73,14 +89,17 @@ AlbumSublist + Title Titel + Artist Artiest + Duration Duur @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Mijn favorieten @@ -95,14 +115,17 @@ AlbumSublistView + Title Titel + Artist Artiest + Duration Duur @@ -110,10 +133,12 @@ AlbumView + Albums Albums + %1 albums - %2 songs %1 albums - %2 nummers @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Nummers toevoegen + Open Folders Mappen openen + Drag music files here or Versleep muziekbestanden hierheen of - Your favorite songs will be displayed here. - Hier worden je favoriete nummers getoond. + + Your favorite songs will be displayed here + - Click“ ♥ ”to add a song to My Favorites - Klik op ‘♥’ om een nummer toe te voegen aan je favorieten + + Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Je hebt nog geen nummers. Klik op ‘➕’ om nummers toe te voegen. + + ” to add a song to My Favorites + + + No songs yet. Click “ + + + + + ” to add songs to the playlist + + + + scan the Music directory indexeer de muziekmap @@ -152,14 +194,17 @@ AllMusicList + All Songs Alle nummers + 1 song 1 nummer + %1 songs %1 nummers @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Mijn favorieten @@ -174,18 +220,22 @@ AllMusicListView + Title Titel + Artist Artiest + Album Album + Duration Duur @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Nummers toevoegen + Open Folders Mappen openen + Drag music files here or Versleep muziekbestand hierheen of - scan the Music directory - indexeer de muziekmap + + scan the Music directory + indexeer de muziekmap ArtistGridDelegate + 1 song 1 nummer + %1 songs %1 nummers @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Details bekijken + Play all Alles afspelen + Add to Toevoegen aan @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Mijn favorieten @@ -245,14 +305,17 @@ ArtistSublistView + Title Titel + Album Album + Duration Duur @@ -260,10 +323,12 @@ ArtistView + Artists Artiesten + %1 artists - %2 songs %1 artiest - %2 nummers @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed De cd is uitgeworpen + Cancel Annuleren @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Kies een handeling + Minimize to system tray Minimaliseren naar systeemvak + Exit Afsluiten + Do not ask again Nooit meer vragen + Cancel Annuleren + Confirm Bevestigen @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Wachtrij afspelen + 1 song 1 nummer + %1 songs %1 nummers + Empty Legen @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Mijn favorieten @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Mijn favorieten + CD playlist CD-afspeellijst + CD Cd @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Weet je zeker dat je %1 wilt verwijderen? + Are you sure you want to delete the selected %1 songs? Weet je zeker dat je de %1 geselecteerde nummers wilt verwijderen? + The song files contained will also be deleted De bijbehorende muziekbestanden worden eveneens verwijderd + Delete Verwijderen + Cancel Annuleren @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Weet je zeker dat je %1 wilt verwijderen? + Are you sure you want to remove the selected %1 songs? Weet je zeker dat je de %1 geselecteerde nummers wilt verwijderen? + Are you sure you want to delete this playlist? Weet je zeker dat je deze afspeellijst wilt verwijderen? + Remove Verwijderen + Delete Verwijderen + Cancel Annuleren @@ -400,105 +492,138 @@ EqualizerDialog + Custom Aangepast + Monophony Monofonie + Classical Klassiek + Club Club + Dance Dance + Full Bass Volle bass + Full Bass and Treble Volle bass en treble + Full Treble Volle treble + Headphones Koptelefoon + Hall Concertzaal + Live Live + Party Feest + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Zacht + Soft Rock Zachte rock + Techno Techno + Equalizer Equalizer + Save Opslaan + Reset Herstellen + Preamplifier Versterker + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Het importeren is mislukt: geen geldig muziekbestand aangetroffen! + OK Oké @@ -506,18 +631,22 @@ ImportMenu + Play queue Wachtrij afspelen + My favorites Mijn favorieten + Create new playlist Afspeellijst maken + New playlist Nieuwe afspeellijst @@ -525,18 +654,22 @@ LyricPage + Artist Artiest + Album Album + No lyrics found Er is geen songtekst gevonden + Please put the lyric file (same name as the song) and the song file in the same folder Plaats het songtekstbestand (met dezelfde naam als het muziekbestand) en het nummer in dezelfde map @@ -544,46 +677,57 @@ MainWindow + Music Muziek + Play/Pause Afspelen/Pauzeren + Previous Vorige + Next Volgende + Exit Afsluiten + Already added to the playlist Reeds toegevoegd aan afspeellijst + Added to "%1" Toegevoegd aan %1 + Removed from "My Favorites" Verwijderd uit favorieten + A disc is connected Er is een schijf ingevoerd + My Favorites Mijn favorieten + All Songs Alle nummers @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Toevoegen aan + Remove from playlist Verwijderen van afspeellijst + Delete from local disk Verwijderen van lokale schijf @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliotheek + Albums Albums + Artists Artiesten + All Songs Alle nummers + Playlists Afspeellijsten + Create playlist Afspeellijst samenstellen + New playlist Nieuwe afspeellijst @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Mijn favorieten @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titel + Artist Artiest + Album Album + Type Soort + Size Grootte + Duration Duur + Path Pad @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pauzeren + Play Afspelen + Add to Toevoegen aan + Open in file manager Openen in bestandsbeheerder + Remove from playlist Verwijderen van afspeellijst + Delete from local disk Verwijderen van lokale schijf + Encoding Versleuteling + Song info Nummerinformatie @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Met Muziek kun je je lokale muziekverzameling afspelen in een mooi jasje voorzien van alle basisfuncties. + Music Muziek + Unknown album Onbekend album + Unknown artist Onbekende artiest @@ -729,14 +903,17 @@ SearchResultDialog + Songs Nummers + Artists Artiesten + Albums Albums @@ -744,34 +921,42 @@ SearchResultWindow + No search results Geen zoekresultaten + Search Results Zoekresultaat + %1 albums - %2 songs %1 albums - %2 nummers + 1 album - 1 song 1 album - 1 nummer + %1 album - %2 songs %1 album - %2 nummers + Music Muziek + Artist Artiest + Album Album @@ -779,78 +964,97 @@ SettingsDialog + Basic Algemeen + Play Afspelen + Autoplay Automatisch afspelen + Remember playback position on exit Afspeelpositie onthouden na afsluiten + Enable fade in/out Vervagen inschakelen + Close Main Window Hoofdvenster sluiten + Minimize to system tray Minimaliseren naar systeemvak + Exit Sluiten + Ask me always Altijd vragen + Shortcuts Sneltoetsen + Play/Pause Afspelen/Pauzeren + Previous Vorige + Next Volgende + Volume up Volume omhoog + Volume down Volume omlaag + Favorite Toevoegen aan favorieten + Cancel Annuleren + Replace Vervangen + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Deze sneltoets wordt al gebruikt door [1%]. Klik op ‘Vervangen’ om de nieuwe sneltoets toe te wijzen. @@ -858,78 +1062,97 @@ Shortcut + Play Afspelen + Songs Nummers + Playlists Afspeellijsten + Settings Instellingen + Play/Pause Afspelen/Pauzeren + Previous Vorige + Next Volgende + Volume Up Volume omhoog + Volume Down Volume omlaag + Mute Dempen + Favorite Toevoegen aan favorieten + Unfavorite Verwijderen uit favorieten + Song info Nummerinformatie + New playlist Nieuwe afspeellijst + Add music Muziek toevoegen + Rename playlist Naam wijzigen + Remove from playlist Verwijderen van afspeellijst + Help Hulp + Display shortcuts Sneltoetsen tonen @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nieuwe afspeellijst + My Favorites Mijn favorieten @@ -948,18 +1173,22 @@ SidebarMenu + Play Afspelen + Add songs Nummers toevoegen + Rename Naam wijzigen + Delete Verwijderen @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD-afspeellijst + Custom Aangepast + + + Date added Toegevoegd + + Album Album + + Artist Artiest + Title Titel @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 nummer + %1 songs %1 nummers + Play All Alles afspelen @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Alles afspelen @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Herhalen + List loop Lijst herhalen + Single loop Eén keer herhalen + Shuffle Willekeurig + Unfavorite Verwijderen uit favorieten + Favorite Toevoegen aan favorieten + My Favorites Mijn favorieten + Previous Vorige + Play/Pause Afspelen/Pauzeren + Next Volgende + Lyrics Songtekst + Play Queue Wachtrij afspelen @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Afspeellijst toevoegen + New playlist Nieuwe afspeellijst + + Add music Muziek toevoegen + Equalizer Equalizer + Settings Instellingen + Music Muziek + Music is a local music player with beautiful design and simple functions. Met Muziek kun je je lokale muziekverzameling afspelen in een mooi jasje voorzien van alle basisfuncties. + Version: Versie: - Quit - Afsluiten - - + Previous page Vorige pagina + Next page Volgende pagina + Search Zoeken - - %1 is released under %2 - %1 is uitgebracht onder de %2-licentie - - \ No newline at end of file + diff --git a/translations/deepin-music_pl.ts b/translations/deepin-music_pl.ts index 087ae92a5..e8ffe1bbe 100644 --- a/translations/deepin-music_pl.ts +++ b/translations/deepin-music_pl.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Dodaj utwory + Open Folders Otwórz foldery + Drag music files here or Przeciągnij tutaj pliki muzyczne lub - scan the Music directory - skanuj katalog Muzyka + + scan the Music directory + skanuj katalog Muzyka AlbumGridDelegate + 1 song 1 utwór + %1 songs %1 utworów @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Wykonawca + Tracks Utwory + Date added Data dodania @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Wyświetl szczegóły + Play all Odtwórz wszystkie + Add to Dodaj do @@ -73,14 +89,17 @@ AlbumSublist + Title Tytuł + Artist Wykonawca + Duration Czas trwania @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Moje ulubione @@ -95,14 +115,17 @@ AlbumSublistView + Title Tytuł + Artist Wykonawca + Duration Czas trwania @@ -110,10 +133,12 @@ AlbumView + Albums Albumy + %1 albums - %2 songs %1 albumów - %2 utworów @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Dodaj utwory + Open Folders Otwórz foldery + Drag music files here or Przeciągnij tutaj pliki muzyczne lub - Your favorite songs will be displayed here. - Twoje ulubione utwory pojawią się tutaj. + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - Kliknij“ ♥ ”,aby dodać utwór do Ulubionych + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Brak piosenek. Kliknij“ ➕ ”, aby dodać utwory do playlisty. + + ” to add songs to the playlist + + scan the Music directory skanuj katalog Muzyka @@ -152,14 +194,17 @@ AllMusicList + All Songs Wszystkie utwory + 1 song 1 utwór + %1 songs %1 utworów @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Moje ulubione @@ -174,18 +220,22 @@ AllMusicListView + Title Tytuł + Artist Wykonawca + Album Album + Duration Czas trwania @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Dodaj utwory + Open Folders Otwórz foldery + Drag music files here or Przeciągnij tutaj pliki muzyczne lub - scan the Music directory - skanuj katalog Muzyka + + scan the Music directory + skanuj katalog Muzyka ArtistGridDelegate + 1 song 1 utwór + %1 songs %1 utworów @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Wyświetl szczegóły + Play all Odtwórz wszystkie + Add to Dodaj do @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Moje ulubione @@ -245,14 +305,17 @@ ArtistSublistView + Title Tytuł + Album Album + Duration Czas trwania @@ -260,10 +323,12 @@ ArtistView + Artists Wykonawcy + %1 artists - %2 songs %1 wykonawców - %2 utworów @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Płyta CD została wyjęta + Cancel Anuluj @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Wybierz działanie + Minimize to system tray Minimalizuj do zasobnika systemowego + Exit Wyjdź + Do not ask again Nie pytaj ponownie + Cancel Anuluj + Confirm Potwierdź @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Kolejka + 1 song 1 utwór + %1 songs %1 utworów + Empty Opróżnij @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Moje ulubione @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Moje ulubione + CD playlist Playlista CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Czy na pewno chcesz usunąć %1? + Are you sure you want to delete the selected %1 songs? Czy na pewno chcesz usunąć %1 zaznaczonych utworów? + The song files contained will also be deleted Zawarte pliki utworów również zostaną usunięte + Delete Usuń + Cancel Anuluj @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Czy na pewno chcesz usunąć %1? + Are you sure you want to remove the selected %1 songs? Czy na pewno chcesz usunąć %1 zaznaczonych utworów? + Are you sure you want to delete this playlist? Czy na pewno chcesz usunąć tę playlistę? + Remove Usuń + Delete Usuń + Cancel Anuluj @@ -400,105 +492,138 @@ EqualizerDialog + Custom Własne + Monophony Monofonia + Classical Klasyczny + Club Klub + Dance Taneczna + Full Bass Pełny bas + Full Bass and Treble Pełny bas i wysokie tony + Full Treble Wysokie tony + Headphones Słuchawki + Hall Hala + Live Na żywo + Party Impreza + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Miękki + Soft Rock Soft Rock + Techno Techno + Equalizer Korektor + Save Zapisz + Reset Resetuj + Preamplifier Przedwzm. + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Import nie powiódł się, nie znaleziono prawidłowego pliku muzycznego + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Kolejka + My favorites Moje ulubione + Create new playlist Utwórz nową playlistę + New playlist Nowa playlista @@ -525,18 +654,22 @@ LyricPage + Artist Wykonawca + Album Album + No lyrics found Nie znaleziono tekstu piosenki + Please put the lyric file (same name as the song) and the song file in the same folder Umieść tekst piosenki w tym samym folderze co piosenka (upewnij się, że posiadają tę samą nazwę). @@ -544,46 +677,57 @@ MainWindow + Music Muzyka + Play/Pause Odtwórz/Wstrzymaj + Previous Poprzedni + Next Dalej + Exit Wyjdź + Already added to the playlist Utwór znajduje się już na playliście + Added to "%1" Dodano do "%1" + Removed from "My Favorites" Usunięto z "Moje ulubione" + A disc is connected Płyta jest podłączona + My Favorites Moje ulubione + All Songs Wszystkie utwory @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Dodaj do + Remove from playlist Usuń z playlisty + Delete from local disk Usuń z dysku lokalnego @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteka + Albums Albumy + Artists Wykonawcy + All Songs Wszystkie utwory + Playlists Playlisty + Create playlist Utwórz playlistę + New playlist Nowa playlista @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Moje ulubione @@ -644,30 +799,37 @@ MusicInfoDialog + Title Tytuł + Artist Wykonawca + Album Album + Type Typ + Size Rozmiar + Duration Czas trwania + Path Ścieżka @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Wstrzymaj + Play Odtwórz + Add to Dodaj do + Open in file manager Otwórz w Menedżerze plików + Remove from playlist Usuń z playlisty + Delete from local disk Usuń z dysku lokalnego + Encoding Kodowanie + Song info Informacje o utworze @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Muzyka to lokalny odtwarzacz muzyki o pięknym wyglądzie i prostych funkcjach. + Music Muzyka + Unknown album Nieznany album + Unknown artist Nieznany wykonawca @@ -729,14 +903,17 @@ SearchResultDialog + Songs Utwory + Artists Wykonawcy + Albums Albumy @@ -744,34 +921,42 @@ SearchResultWindow + No search results Brak wyników wyszukiwania + Search Results Wyniki wyszukiwania + %1 albums - %2 songs %1 albumów - %2 utworów + 1 album - 1 song 1 album - 1 utwór + %1 album - %2 songs %1 album - %2 utworów + Music Muzyka + Artist Wykonawca + Album Album @@ -779,78 +964,97 @@ SettingsDialog + Basic Podstawowe + Play Odtwarzanie + Autoplay Autoodtwarzanie + Remember playback position on exit Zapamiętaj pozycję odtwarzania przy wyjściu + Enable fade in/out Włącz efekt rozpoczęcia/zakończenia + Close Main Window Akcja zamknięcia + Minimize to system tray Minimalizuj do zasobnika systemowego + Exit Wyjdź + Ask me always Zawsze pytaj + Shortcuts Skróty + Play/Pause Odtwórz/Wstrzymaj + Previous Poprzedni + Next Następna + Volume up Podgłośnij + Volume down Przycisz + Favorite Ulubione + Cancel Anuluj + Replace Zamień + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Ten skrót powoduje konflikt z [%1], kliknij Zastąp, aby skrót zadziałał od razu @@ -858,78 +1062,97 @@ Shortcut + Play Odtwórz + Songs Utwory + Playlists Playlisty + Settings Ustawienia + Play/Pause Odtwórz/Wstrzymaj + Previous Poprzednia + Next Następna + Volume Up Podgłośnij + Volume Down Przycisz + Mute Wycisz + Favorite Ulubione + Unfavorite Usuń z ulubionych + Song info Informacje o utworze + New playlist Nowa playlista + Add music Dodaj muzykę + Rename playlist Zmień nazwę playlisty + Remove from playlist Usuń z playlisty + Help Pomoc + Display shortcuts Wyświetl skróty @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nowa playlista + My Favorites Moje ulubione @@ -948,18 +1173,22 @@ SidebarMenu + Play Odtwórz + Add songs Dodaj utwory + Rename Zmień nazwę + Delete Usuń @@ -967,26 +1196,36 @@ SortMenu + CD playlist Playlista CD + Custom Własne + + + Date added Data dodania + + Album Album + + Artist Wykonawca + Title Tytuł @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 utwór + %1 songs %1 utworów + Play All Odtwórz wszystkie @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Odtwórz wszystkie @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Odtwarzanie sekwencyjne + List loop Zapętlona lista + Single loop Pojedyncza pętla + Shuffle Odtwarzanie losowe + Unfavorite Usuń z ulubionych + Favorite Ulubione + My Favorites Moje ulubione + Previous Poprzedni + Play/Pause Odtwórz/Wstrzymaj + Next Następna + Lyrics Tekst piosenki + Play Queue Kolejka @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Dodaj playlistę + New playlist Nowa playlista + + Add music Dodaj muzykę + Equalizer Korektor + Settings Ustawienia + Music Muzyka + Music is a local music player with beautiful design and simple functions. Muzyka to lokalny odtwarzacz muzyki o pięknym wyglądzie i prostych funkcjach. + Version: Wersja: - Quit - Wyjdź - - + Previous page Poprzednia strona + Next page Następna strona + Search Szukaj - - %1 is released under %2 - %1 został wydany na licencji %2 - - \ No newline at end of file + diff --git a/translations/deepin-music_ps.ts b/translations/deepin-music_ps.ts index 905c0091c..daa8bc2c6 100644 --- a/translations/deepin-music_ps.ts +++ b/translations/deepin-music_ps.ts @@ -1,307 +1,380 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit وتون + Do not ask again بیا پوښتنه ونکړې + Cancel - + + Confirm باورييل @@ -309,814 +382,1000 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom دوديز + Monophony - + + Classical - + + Club - + + Dance نڅا + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones غوږۍ + Hall - + + Live ژوندى + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save ساتل + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit وتون + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit وتون + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom دوديز + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_pt.ts b/translations/deepin-music_pt.ts index 5ec704d37..3501aa258 100644 --- a/translations/deepin-music_pt.ts +++ b/translations/deepin-music_pt.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Adicionar músicas + Open Folders Abrir pastas + Drag music files here or Arrastar ficheiros de música para aqui ou - scan the Music directory - analisar o diretório de Música + + scan the Music directory + AlbumGridDelegate + 1 song 1 música + %1 songs %1 músicas @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Álbum + Artist Artista + Tracks Faixas + Date added Data de adição @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Ver detalhes + Play all Reproduzir tudo + Add to Adicionar a @@ -73,14 +89,17 @@ AlbumSublist + Title Título + Artist Artista + Duration Duração @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Minhas favoritas @@ -95,14 +115,17 @@ AlbumSublistView + Title Título + Artist Artista + Duration Duração @@ -110,10 +133,12 @@ AlbumView + Albums Álbuns + %1 albums - %2 songs %1 álbuns - %2 músicas @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs Adicionar músicas + Open Folders Abrir pastas + Drag music files here or Arrastar ficheiros de música para aqui ou - Your favorite songs will be displayed here. - As suas músicas favoritas serão exibidas aqui. + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - Clique em" ♥ "para adicionar uma música às Minhas favoritas + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Ainda não há músicas. Clique em" ➕ "para adicionar músicas à lista de reprodução. + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs Todas as músicas + 1 song 1 música + %1 songs %1 músicas @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Minhas favoritas @@ -174,18 +220,22 @@ AllMusicListView + Title Título + Artist Artista + Album Álbum + Duration Duração @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Adicionar músicas + Open Folders Abrir pastas + Drag music files here or Arrastar ficheiros de música para aqui ou - scan the Music directory - analisar o diretório de Música + + scan the Music directory + ArtistGridDelegate + 1 song 1 música + %1 songs %1 músicas @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Ver detalhes + Play all Repruduzir tudo + Add to Adicionar a @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Minhas favoritas @@ -245,14 +305,17 @@ ArtistSublistView + Title Título + Album Álbum + Duration Duração @@ -260,10 +323,12 @@ ArtistView + Artists Artistas + %1 artists - %2 songs %1 artistas - %2 músicas @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed O CD foi removido + Cancel Cancelar @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Escolha a sua ação + Minimize to system tray Minimizar para a área de notificação + Exit Sair + Do not ask again Não voltar a perguntar + Cancel Cancelar + Confirm Confirmar @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Reproduzir fila de espera + 1 song 1 música + %1 songs %1 músicas + Empty Esvaziar @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Minhas favoritas @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Minhas favoritas + CD playlist Lista de reprodução de CD + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Tem a certeza que deseja eliminar %1? + Are you sure you want to delete the selected %1 songs? Tem a certeza que deseja eliminar as %1 músicas selecionadas? + The song files contained will also be deleted Os ficheiros da música contidos também serão eliminados + Delete Eliminar + Cancel Cancelar @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Tem a certeza que deseja remover %1? + Are you sure you want to remove the selected %1 songs? Tem a certeza que deseja remover as %1 músicas selecionadas? + Are you sure you want to delete this playlist? Tem a certeza que deseja eliminar esta lista de reprodução? + Remove Remover + Delete Eliminar + Cancel Cancelar @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalizado + Monophony Monofonia + Classical Clássica + Club Clube + Dance Dança + Full Bass Baixo máximo + Full Bass and Treble Baixo e agudo máximo + Full Treble Agudo máximo + Headphones Auscultadores + Hall Salão + Live Ao vivo + Party Festa + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Suave + Soft Rock Rock suave + Techno Techno + Equalizer Equalizador + Save Guardar + Reset Repor + Preamplifier Pré-amplificador + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found A importação falhou, não foi encontrado nenhum ficheiro de música válido + OK Aceitar @@ -506,18 +631,22 @@ ImportMenu + Play queue Reproduzir fila de espera + My favorites Minhas favoritas + Create new playlist Criar nova lista de reprodução + New playlist Nova lista de reprodução @@ -525,18 +654,22 @@ LyricPage + Artist Artista + Album Álbum + No lyrics found Nenhuma letra encontrada + Please put the lyric file (same name as the song) and the song file in the same folder Coloque o ficheiro da letra (mesmo nome da música) e o ficheiro da música na mesma pasta @@ -544,46 +677,57 @@ MainWindow + Music Música + Play/Pause Reproduzir/Pausar + Previous Anterior + Next Seguinte + Exit Sair + Already added to the playlist Já adicionada à lista de reprodução + Added to "%1" Adicionada a "%1" + Removed from "My Favorites" Removido de "Minhas favoritas" + A disc is connected Um disco está ligado + My Favorites Minhas favoritas + All Songs Todas as músicas @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Adicionar a + Remove from playlist Remover da lista de reprodução + Delete from local disk Eliminar do disco local @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteca + Albums Álbuns + Artists Artistas + All Songs Todas as músicas + Playlists Listas de reprodução + Create playlist Criar lista de reprodução + New playlist Nova lista de reprodução @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Minhas favoritas @@ -644,30 +799,37 @@ MusicInfoDialog + Title Título + Artist Artista + Album Álbum + Type Tipo + Size Tamanho + Duration Duração + Path Caminho @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausa + Play Reproduzir + Add to Adicionar a + Open in file manager Abrir no gestor de ficheiros + Remove from playlist Remover da lista de reprodução + Delete from local disk Eliminar do disco local + Encoding Codificação + Song info Informação da música @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Música é um reprodutor de música local com um estilo elegante e funções simples. + Music Música + Unknown album Álbum desconhecido + Unknown artist Artista desconhecido @@ -729,14 +903,17 @@ SearchResultDialog + Songs Músicas + Artists Artistas + Albums Álbuns @@ -744,34 +921,42 @@ SearchResultWindow + No search results Sem resultados + Search Results Resultados da pesquisa + %1 albums - %2 songs %1 álbuns - %2 músicas + 1 album - 1 song 1 álbum - 1 música + %1 album - %2 songs %1 álbum - %2 músicas + Music Música + Artist Artista + Album Álbum @@ -779,157 +964,195 @@ SettingsDialog + Basic Básico + Play Reproduzir + Autoplay Reprodução automática + Remember playback position on exit Memorizar posição da reprodução ao sair + Enable fade in/out Ativar desvanecimento + Close Main Window Fechar janela principal + Minimize to system tray Minimizar para a área de notificação + Exit Sair + Ask me always Perguntar sempre + Shortcuts Atalhos + Play/Pause Reproduzir/Pausar + Previous Anterior + Next Seguinte + Volume up Aumentar volume + Volume down Diminuir volume + Favorite Adicionar às favoritas + Cancel Cancelar + Replace Substituir + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Reproduzir + Songs Músicas + Playlists Listas de reprodução + Settings Definições + Play/Pause Reproduzir/Pausar + Previous Anterior + Next Seguinte + Volume Up Aumentar volume + Volume Down Diminuir volume + Mute Silenciar + Favorite Adicionar às favoritas + Unfavorite Remover das favoritas + Song info Informação da música + New playlist Nova lista de reprodução + Add music Adicionar música + Rename playlist Renomear lista de reprodução + Remove from playlist Remover da lista de reprodução + Help Ajuda + Display shortcuts Mostrar atalhos @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nova lista de reprodução + My Favorites Minhas favoritas @@ -948,18 +1173,22 @@ SidebarMenu + Play Reproduzir + Add songs Adicionar músicas + Rename Renomear + Delete Eliminar @@ -967,26 +1196,36 @@ SortMenu + CD playlist Lista de reprodução de CD + Custom Personalizado + + + Date added Data de adição + + Album Álbum + + Artist Artista + Title Título @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 música + %1 songs %1 músicas + Play All Reproduzir tudo @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reproduzir tudo @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Reprodução sequencial + List loop Repetição de lista + Single loop Repetição única + Shuffle Aleatório + Unfavorite Remover das favoritas + Favorite Adicionar às favoritas + My Favorites Minhas favoritas + Previous Anterior + Play/Pause Reproduzir/Pausar + Next Seguinte + Lyrics Letras + Play Queue Reproduzir fila de espera @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Adicionar lista de reprodução + New playlist Nova lista de reprodução + + Add music Adicionar música + Equalizer Equalizador + Settings Definições + Music Música + Music is a local music player with beautiful design and simple functions. Música é um reprodutor de música local com um estilo elegante e funções simples. + Version: Versão: - Quit - Desistir - - + Previous page Página anterior + Next page Página seguinte + Search Pesquisar - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_pt_BR.ts b/translations/deepin-music_pt_BR.ts index a29a5675a..af746a5b8 100644 --- a/translations/deepin-music_pt_BR.ts +++ b/translations/deepin-music_pt_BR.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 música + %1 songs %1 músicas @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Álbum + Artist Artista + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Título + Artist Artista + Duration Duração @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Favoritos @@ -95,14 +115,17 @@ AlbumSublistView + Title Título + Artist Artista + Duration Duração @@ -110,10 +133,12 @@ AlbumView + Albums Álbuns + %1 albums - %2 songs %1 álbuns - %2 músicas @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 música + %1 songs %1 músicas @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Favoritos @@ -174,18 +220,22 @@ AllMusicListView + Title Título + Artist Artista + Album Álbum + Duration Duração @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 música + %1 songs %1 músicas @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Favoritos @@ -245,14 +305,17 @@ ArtistSublistView + Title Título + Album Álbum + Duration Duração @@ -260,10 +323,12 @@ ArtistView + Artists Artistas + %1 artists - %2 songs %1 artistas - %2 músicas @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed O CD foi removido + Cancel Cancelar @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Selecione uma ação + Minimize to system tray Minimizar para a bandeja do sistema + Exit Sair + Do not ask again Não perguntar novamente + Cancel Cancelar + Confirm Confirmar @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Fila de reprodução + 1 song 1 música + %1 songs %1 músicas + Empty Esvaziar @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Favoritos @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Favoritos + CD playlist Lista de reprodução do CD + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Excluir %1? + Are you sure you want to delete the selected %1 songs? Excluir as %1 músicas selecionadas? + The song files contained will also be deleted Os arquivos de música contidos também serão excluídos + Delete Excluir + Cancel Cancelar @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Remover %1? + Are you sure you want to remove the selected %1 songs? Remover as %1 músicas selecionadas? + Are you sure you want to delete this playlist? Excluir esta lista de reprodução? + Remove Remover + Delete Excluir + Cancel Cancelar @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalizar + Monophony Monofonia + Classical Clássico + Club Club + Dance Dance + Full Bass Baixo Completo + Full Bass and Treble Baixo Completo e Agudo + Full Treble Agudo Completo + Headphones Fones de Ouvido + Hall Auditório + Live Ao vivo + Party Festa + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Equalizador + Save Salvar + Reset Redefinir + Preamplifier Pré-amplificador + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found A importação falhou; nenhum arquivo de música válido foi encontrado + OK Ok @@ -506,18 +631,22 @@ ImportMenu + Play queue Fila de reprodução + My favorites Favoritos + Create new playlist - + + New playlist Nova lista de reprodução @@ -525,80 +654,98 @@ LyricPage + Artist Artista + Album Álbum + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Player de Música + Play/Pause Reproduzir / Pausar + Previous Anterior + Next Próximo + Exit Sair + Already added to the playlist Já adicionado à lista de reprodução + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Um disco está conectado + My Favorites Favoritos + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Remover da lista de reprodução + Delete from local disk Excluir do disco @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteca + Albums Álbuns + Artists Artistas + All Songs - + + Playlists Listas de Reprodução + Create playlist - + + New playlist Nova lista de reprodução @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Favoritos @@ -644,30 +799,37 @@ MusicInfoDialog + Title Título + Artist Artista + Album Álbum + Type Tipo + Size Tamanho + Duration Duração + Path Caminho @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausar + Play Reproduzir + Add to - + + Open in file manager Abrir no Gerenciador de Arquivos + Remove from playlist Remover da lista de reprodução + Delete from local disk Excluir do disco + Encoding Codificação + Song info Informações da música @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. O Música é um player de música local com um design bonito e funções simples. + Music Player de Música + Unknown album Álbum desconhecido + Unknown artist Artista desconhecido @@ -729,14 +903,17 @@ SearchResultDialog + Songs Músicas + Artists Artistas + Albums Álbuns @@ -744,34 +921,42 @@ SearchResultWindow + No search results Nenhum resultado + Search Results Resultados da Pesquisa + %1 albums - %2 songs %1 álbuns - %2 músicas + 1 album - 1 song 1 álbum - 1 música + %1 album - %2 songs %1 álbum - %2 músicas + Music Player de Música + Artist Artista + Album Álbum @@ -779,157 +964,195 @@ SettingsDialog + Basic Básico + Play Reproduzir + Autoplay Reprodução automática + Remember playback position on exit - + + Enable fade in/out Transição gradual + Close Main Window Fechar a Janela Principal + Minimize to system tray Minimizar para a bandeja do sistema + Exit Sair + Ask me always Sempre perguntar + Shortcuts Atalhos + Play/Pause Reproduzir / Pausar + Previous Anterior + Next Próximo + Volume up Aumentar volume + Volume down Reduzir volume + Favorite Favorito + Cancel Cancelar + Replace Substituir + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Reproduzir + Songs Músicas + Playlists Listas de Reprodução + Settings Configurações + Play/Pause Reproduzir/Pausar + Previous Anterior + Next Próximo + Volume Up Aumentar Volume + Volume Down Reduzir Volume + Mute Sem áudio + Favorite Favorito + Unfavorite Remover dos Favoritos + Song info Informações da música + New playlist Nova lista de reprodução + Add music Adicionar música + Rename playlist Renomear lista de reprodução + Remove from playlist Remover da lista de reprodução + Help Ajuda + Display shortcuts Exibir atalhos @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nova lista de reprodução + My Favorites Favoritos @@ -948,18 +1173,22 @@ SidebarMenu + Play Reproduzir + Add songs - + + Rename Renomear + Delete Excluir @@ -967,26 +1196,36 @@ SortMenu + CD playlist Lista de reprodução do CD + Custom Personalizar + + + Date added - + + + Album Álbum + + Artist Artista + Title Título @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 música + %1 songs %1 músicas + Play All Reproduzir Tudo @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Reproduzir Tudo @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Repetir lista + Single loop Repetir uma vez + Shuffle Aleatório + Unfavorite Remover dos Favoritos + Favorite Favorito + My Favorites Favoritos + Previous Anterior + Play/Pause Reproduzir / Pausar + Next Próximo + Lyrics Letra + Play Queue Fila de Reprodução @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Adicionar à lista de reprodução + New playlist Nova lista de reprodução + + Add music Adicionar música + Equalizer Equalizador + Settings Configurações + Music Player de Música + Music is a local music player with beautiful design and simple functions. O Música é um player de música local com um design bonito e funções simples. + Version: Versão: - Quit - Sair - - + Previous page - + + Next page - + + Search Pesquisar - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ro.ts b/translations/deepin-music_ro.ts index 75005c390..c5be9a690 100644 --- a/translations/deepin-music_ro.ts +++ b/translations/deepin-music_ro.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 cântec + %1 songs %1 cântece @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Artist + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Titlu + Artist Artist + Duration Durată @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Favorite @@ -95,14 +115,17 @@ AlbumSublistView + Title Titlu + Artist Artist + Duration Durată @@ -110,10 +133,12 @@ AlbumView + Albums Albume + %1 albums - %2 songs %1 albume - %2 piese @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 cântec + %1 songs %1 cântece @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Favorite @@ -174,18 +220,22 @@ AllMusicListView + Title Titlu + Artist Artist + Album Album + Duration Durată @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 cântec + %1 songs %1 cântece @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Favorite @@ -245,14 +305,17 @@ ArtistSublistView + Title Titlu + Album Album + Duration Durată @@ -260,10 +323,12 @@ ArtistView + Artists Artiști + %1 artists - %2 songs %1 artiști - %2 piese @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed - + + Cancel Anulează @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Vă rugăm alegeți o acțiune + Minimize to system tray Minimalizare + Exit Ieşire + Do not ask again Nu întreba din nou + Cancel Anulează + Confirm Confirmare @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Coadă de redare + 1 song 1 cântec + %1 songs %1 cântece + Empty Gol @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Favorite @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Favorite + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Sigur doriți să ștergeți% 1? + Are you sure you want to delete the selected %1 songs? Sigur doriți să ștergeți melodiile %1 selectate? + The song files contained will also be deleted Fișierele vor fi deasemenea șterse + Delete Ștergeți + Cancel Anulează @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Sigur doriți să eliminați %1? + Are you sure you want to remove the selected %1 songs? Sigur doriți să eliminați %1 melodii selectate? + Are you sure you want to delete this playlist? Sigur doriți să ștergeți această listă de redare? + Remove Elimină + Delete Ștergeți + Cancel Anulează @@ -400,105 +492,138 @@ EqualizerDialog + Custom Personalizare + Monophony Monofonie + Classical Clasic + Club Club + Dance Dance + Full Bass Full Bass + Full Bass and Treble Full Bass and Treble + Full Treble Full Treble + Headphones Căști + Hall Hală + Live Live + Party Petrecere + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Slabă + Soft Rock Soft Rock + Techno Techno + Equalizer Egalizator / Equalizer + Save Salvare + Reset Resetare + Preamplifier Preamplificator + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Importare eșuată, niciun fișier audio valid găsit + OK Ok @@ -506,18 +631,22 @@ ImportMenu + Play queue Coadă de redare + My favorites Preferatele mele + Create new playlist - + + New playlist Lista de redare nouă @@ -525,80 +654,98 @@ LyricPage + Artist Artist + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Muzică + Play/Pause Redare/Pauză + Previous Precedent + Next Următorul + Exit Ieşire + Already added to the playlist Deja adăugat în lista de redare + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites Favorite + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Scoatere din lista de redare + Delete from local disk Ștergere de pe discul local @@ -606,30 +753,37 @@ MusicBaselistview + Library Biblioteca + Albums Albume + Artists Artiști + All Songs - + + Playlists Liste de redare + Create playlist - + + New playlist Lista de redare nouă @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Favorite @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titlu + Artist Artist + Album Album + Type Tip + Size Dimensiune + Duration Durată + Path Cale fișier @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pauză + Play Redare + Add to - + + Open in file manager Deschidere în managerul de fișiere + Remove from playlist Scoatere din lista de redare + Delete from local disk Ștergere de pe discul local + Encoding Compresie + Song info Informație melodie @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Music este un music player local cu o interfață aspectuoasă și funcții simple. + Music Muzică + Unknown album Album necunoscut + Unknown artist Artist necunoscut @@ -729,14 +903,17 @@ SearchResultDialog + Songs Cântece + Artists Artiști + Albums Albume @@ -744,34 +921,42 @@ SearchResultWindow + No search results Niciun rezultat la căutare + Search Results Rezultatele căutării + %1 albums - %2 songs %1 albume - %2 piese + 1 album - 1 song 1 album - 1 piesă + %1 album - %2 songs %1 album - %2 piese + Music Muzică + Artist Artist + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Simplu + Play Redare + Autoplay Auto-redare + Remember playback position on exit - + + Enable fade in/out Activați fade in/out + Close Main Window Închidere fereastră principală + Minimize to system tray Minimalizare + Exit Ieşire + Ask me always Întreabă mereu + Shortcuts Scurtături + Play/Pause Redare/Pauză + Previous Precedent + Next Următorul + Volume up Crește volumul + Volume down Scade volumul + Favorite Favorite + Cancel Anulează + Replace Înlocuire + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Redare + Songs Cântece + Playlists Liste de redare + Settings Configurări + Play/Pause Redare/Pauză + Previous Precedent + Next Următorul + Volume Up Mărirea Volumului + Volume Down Micșorarea Volumului + Mute Mute + Favorite Favorite + Unfavorite Nefavorit + Song info Informație melodie + New playlist Lista de redare nouă + Add music Adaugă muzică + Rename playlist Redenumește lista de redare + Remove from playlist Scoatere din lista de redare + Help Ajutor + Display shortcuts Afișează scurtături @@ -937,10 +1160,12 @@ Shortcuts + New playlist Lista de redare nouă + My Favorites Favorite @@ -948,18 +1173,22 @@ SidebarMenu + Play Redare + Add songs - + + Rename Redenumire + Delete Ștergeți @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Personalizare + + + Date added - + + + Album Album + + Artist Artist + Title Titlu @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 cântec + %1 songs %1 cântece + Play All Redare toate @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Redare toate @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Amestecare + Unfavorite Nefavorit + Favorite Favorite + My Favorites Favorite + Previous Precedent + Play/Pause Redare/Pauză + Next Următorul + Lyrics Versuri + Play Queue Coadă de Redare @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Adaugă listă de redare + New playlist Lista de redare nouă + + Add music Adaugă muzică + Equalizer Egalizator / Equalizer + Settings Configurări + Music Muzică + Music is a local music player with beautiful design and simple functions. Music este un music player local cu o interfață aspectuoasă și funcții simple. + Version: Versiune: - Quit - Ieși - - + Previous page - + + Next page - + + Search Căutare - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ru.ts b/translations/deepin-music_ru.ts index d306eaa32..8353e4e66 100644 --- a/translations/deepin-music_ru.ts +++ b/translations/deepin-music_ru.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 песня + %1 songs %1 песни @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,33 +48,40 @@ AlbumListView + Album Альбом + Artist Исполнитель + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to Добавить в @@ -73,14 +89,17 @@ AlbumSublist + Title Название + Artist Исполнитель + Duration Продолжительность @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Избранное @@ -95,14 +115,17 @@ AlbumSublistView + Title Название + Artist Исполнитель + Duration Продолжительность @@ -110,10 +133,12 @@ AlbumView + Albums Альбомы + %1 albums - %2 songs %1 альбом - %2 песни @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 песня + %1 songs %1 песни @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Избранное @@ -174,18 +220,22 @@ AllMusicListView + Title Название + Artist Исполнитель + Album Альбом + Duration Продолжительность @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 песня + %1 songs %1 песни @@ -223,14 +279,17 @@ ArtistMoreMenu + View details - + + Play all - + + Add to Добавить в @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Избранное @@ -245,14 +305,17 @@ ArtistSublistView + Title Название + Album Альбом + Duration Продолжительность @@ -260,10 +323,12 @@ ArtistView + Artists Исполнители + %1 artists - %2 songs %1 артисты - %2 песни @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed Компакт диск был извлечен + Cancel Отмена @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Пожалуйста, выберите Ваше действие + Minimize to system tray Минимизировать в трей + Exit Выход + Do not ask again Не спрашивать больше + Cancel Отмена + Confirm Подтвердить @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Очередь воспроизведения + 1 song 1 песня + %1 songs %1 песни + Empty Очистить @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Избранное @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Избранное + CD playlist Плейлист компакт-диска + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Вы уверены, что хотите удалить %1? + Are you sure you want to delete the selected %1 songs? Вы уверены, что хотите удалить выбранные %1 песни? + The song files contained will also be deleted Файлы, содержащую песню будут также удалены + Delete Удалить + Cancel Отмена @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Вы уверены, что хотите удалить %1? + Are you sure you want to remove the selected %1 songs? Вы уверены, что хотите удалить выделенные %1 треков? + Are you sure you want to delete this playlist? Вы действительно хотите удалить этот список воспроизведения? + Remove Удалить + Delete Удалить + Cancel Отмена @@ -400,105 +492,138 @@ EqualizerDialog + Custom Пользовательский + Monophony Однотонность + Classical Классика + Club Клубный + Dance Танцевальный + Full Bass Низкие частоты + Full Bass and Treble Низкие и высокие частоты + Full Treble Высокие частоты + Headphones Наушники + Hall Зал + Live Лайв + Party Вечеринка + Pop Поп + Reggae Рэгги + Rock Рок + Ska Ска + Soft Мягко + Soft Rock Софт-рок + Techno Техно + Equalizer Эквалайзер + Save Сохранить + Reset Сброс + Preamplifier Предусилитель + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Не удалось импортировать, не найден действительный музыкальный файл + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Очередь воспроизведения + My favorites Избранное + Create new playlist Новый список воспроизведения + New playlist Новый список воспроизведения @@ -525,80 +654,98 @@ LyricPage + Artist Исполнитель + Album Альбом + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Музыка + Play/Pause Воспроизведение / Пауза + Previous Предыдущий + Next Далее + Exit Выход + Already added to the playlist Уже добавлено в список + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Диск подключен + My Favorites Избранное + All Songs - + MulitSelectMenu + Add to Добавить в + Remove from playlist Удалить из списка воспроизведения + Delete from local disk Удалить с локального диска @@ -606,30 +753,37 @@ MusicBaselistview + Library Библиотека + Albums Альбомы + Artists Исполнители + All Songs - + + Playlists Списки воспроизведения + Create playlist - + + New playlist Новый список воспроизведения @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Избранное @@ -644,30 +799,37 @@ MusicInfoDialog + Title Название + Artist Исполнитель + Album Альбом + Type Тип + Size Размер + Duration Продолжительность + Path Путь @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Пауза + Play Воспроизведение + Add to Добавить в + Open in file manager Открыть в файловом менеджере + Remove from playlist Удалить из списка воспроизведения + Delete from local disk Удалить с локального диска + Encoding Кодировка + Song info Информация о песне @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Плеер - это локальный музыкальный плеер с красивым дизайном и простыми функциями. + Music Музыка + Unknown album Неизвестный альбом + Unknown artist Неизвестный исполнитель @@ -729,14 +903,17 @@ SearchResultDialog + Songs Треки + Artists Исполнители + Albums Альбомы @@ -744,34 +921,42 @@ SearchResultWindow + No search results Ничего не найдено + Search Results Результаты поиска + %1 albums - %2 songs %1 альбом - %2 песни + 1 album - 1 song 1 альбом - 1 песня + %1 album - %2 songs %1 альбом - %2 песни + Music Музыка + Artist Исполнитель + Album Альбом @@ -779,157 +964,195 @@ SettingsDialog + Basic Основные + Play Воспроизведение + Autoplay Автовоспроизведение + Remember playback position on exit - + + Enable fade in/out Включить замирание вход/выход + Close Main Window Закрыть Главное Окно + Minimize to system tray Минимизировать в трей + Exit Выход + Ask me always Спрашивать меня всегда + Shortcuts Сочетание клавиш + Play/Pause Воспроизведение / Пауза + Previous Предыдущий + Next Далее + Volume up Громче + Volume down Тише + Favorite Избранное + Cancel Отмена + Replace Заменить + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Воспроизведение + Songs Треки + Playlists Списки воспроизведения + Settings Настройки + Play/Pause Воспроизведение / Пауза + Previous Предыдущий + Next Далее + Volume Up Громче + Volume Down Тише + Mute Приглушить + Favorite Избранное + Unfavorite Удалить из избранного + Song info Информация о песне + New playlist Новый список воспроизведения + Add music Добавить музыку + Rename playlist Переименовать список воспроизведения + Remove from playlist Удалить из списка воспроизведения + Help Помощь + Display shortcuts Показать сочетания клавиш @@ -937,10 +1160,12 @@ Shortcuts + New playlist Новый список воспроизведения + My Favorites Избранное @@ -948,18 +1173,22 @@ SidebarMenu + Play Воспроизведение + Add songs - + + Rename Переименовать + Delete Удалить @@ -967,26 +1196,36 @@ SortMenu + CD playlist Плейлист компакт-диска + Custom Пользовательский + + + Date added - + + + Album Альбом + + Artist Исполнитель + Title Название @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 песня + %1 songs %1 песни + Play All Воспроизвести Всё @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Воспроизвести Всё @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Непрерывно + Single loop Одиночный Цикл + Shuffle Перемешать + Unfavorite Удалить из избранного + Favorite Избранное + My Favorites Избранное + Previous Предыдущий + Play/Pause Воспроизведение / Пауза + Next Далее + Lyrics Текст песни + Play Queue Очередь воспроизведения @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Добавить список воспроизведения + New playlist Новый список воспроизведения + + Add music Добавить музыку + Equalizer Эквалайзер + Settings Настройки + Music Музыка + Music is a local music player with beautiful design and simple functions. Плеер - это локальный музыкальный плеер с красивым дизайном и простыми функциями. + Version: Версия: - Quit - Выйти - - + Previous page - + + Next page - + + Search Поиск - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ru_UA.ts b/translations/deepin-music_ru_UA.ts index 93cbb9e70..7b3125b15 100644 --- a/translations/deepin-music_ru_UA.ts +++ b/translations/deepin-music_ru_UA.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_sc.ts b/translations/deepin-music_sc.ts index 2e97f3bde..544d6f414 100644 --- a/translations/deepin-music_sc.ts +++ b/translations/deepin-music_sc.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_si.ts b/translations/deepin-music_si.ts index 70354a789..0c125012c 100644 --- a/translations/deepin-music_si.ts +++ b/translations/deepin-music_si.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel අවලංගු කරන්න @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel අවලංගු කරන්න + Confirm තහවුරු කරන්න @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty හිස් @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? %1 මකා දැමීමට අවශ්‍ය බව ඔබට විශ්වාසද? + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete මකා දමන්න + Cancel අවලංගු කරන්න @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete මකා දමන්න + Cancel අවලංගු කරන්න @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save සුරකින්න + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK හරි @@ -506,168 +631,205 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music සංගීතය + Play/Pause - + + Previous - + + Next ඊළඟ + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type වර්ගය + Size ප්‍රමාණය + Duration - + + Path පිහිටුම @@ -675,261 +837,322 @@ MusicMoreMenu + Pause - + + Play ධාවනය කරන්න + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music සංගීතය + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results සෙවුම් ප්‍රතිඵල නොමැත + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music සංගීතය + Artist - + + Album - + SettingsDialog + Basic මූලික + Play ධාවනය කරන්න + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always සැමවිටම මගෙන් විමසන්න + Shortcuts කෙටිමං + Play/Pause - + + Previous - + + Next ඊළඟ + Volume up - + + Volume down - + + Favorite - + + Cancel අවලංගු කරන්න + Replace ප්රතිස්ථාපනය කරන්න + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play ධාවනය කරන්න + Songs - + + Playlists - + + Settings සැකසුම් + Play/Pause - + + Previous - + + Next ඊළඟ + Volume Up - + + Volume Down - + + Mute නිහඬ කරන්න + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help උදව් + Display shortcuts කෙටිමං පෙන්වන්න @@ -937,29 +1160,35 @@ Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play ධාවනය කරන්න + Add songs - + + Rename - + + Delete මකා දමන්න @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next ඊළඟ + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings සැකසුම් + Music සංගීතය + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search සොයන්න - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_sk.ts b/translations/deepin-music_sk.ts index bca49a536..a437b32f8 100644 --- a/translations/deepin-music_sk.ts +++ b/translations/deepin-music_sk.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Umelca + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Názov + Artist Umelca + Duration Doba trvania @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Názov + Artist Umelca + Duration Doba trvania @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Názov + Artist Umelca + Album Album + Duration Doba trvania @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Názov + Album Album + Duration Doba trvania @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Zrušiť @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Minimalizovať na systémový panel + Exit Ukončiť + Do not ask again Nepýtať sa znovu + Cancel Zrušiť + Confirm Potvrdiť @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Vysypať @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Naozaj chcete vymazať %1? + Are you sure you want to delete the selected %1 songs? Naozaj chcete vymazať vybrané %1 piesne? + The song files contained will also be deleted - + + Delete Vymazať + Cancel Zrušiť @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? Naozaj chcete vymazať tento zoznam prehrávania? + Remove - + + Delete Vymazať + Cancel Zrušiť @@ -400,105 +492,138 @@ EqualizerDialog + Custom Vlastný + Monophony - + + Classical Klasická + Club Klub + Dance Tanečná + Full Bass Plné basy + Full Bass and Treble Plné basy a výšky + Full Treble Plné výšky + Headphones Slúchadlá + Hall - + + Live Live + Party Párty + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Jemné + Soft Rock Soft rock + Techno Techno + Equalizer Ekvalizér + Save Uložiť + Reset Nastaviť znovu + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Moje obľúbené + Create new playlist - + + New playlist Nový zoznam skladieb @@ -525,80 +654,98 @@ LyricPage + Artist Umelca + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Hudba + Play/Pause Prehrať/pozastaviť + Previous Predchádzajúce + Next Ďalšie + Exit Ukončiť + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Odstrániť zo zoznamu skladieb + Delete from local disk Odstrániť z lokálneho disku @@ -606,30 +753,37 @@ MusicBaselistview + Library Knižnica + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist Nový zoznam skladieb @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Názov + Artist Umelca + Album Album + Type Typ + Size Veľkosť + Duration Doba trvania + Path Cesta @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pozastaviť + Play Spustiť + Add to - + + Open in file manager Otvoriť v správcovi súborov + Remove from playlist Odstrániť zo zoznamu skladieb + Delete from local disk Odstrániť z lokálneho disku + Encoding Kódovanie + Song info Info o piesni @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Hudba + Unknown album Neznámy album + Unknown artist Neznámy autor @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Žiadne výsledky vyhľadávania + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Hudba + Artist Umelca + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Základné + Play Spustiť + Autoplay Automaticky prehrať + Remember playback position on exit - + + Enable fade in/out Povoliť zblednutie + Close Main Window Zatvoriť hlavné okno + Minimize to system tray Minimalizovať na systémový panel + Exit Ukončiť + Ask me always - + + Shortcuts Odkazy + Play/Pause Prehrať/pozastaviť + Previous Predchádzajúce + Next Ďalšie + Volume up Hlasnejšie + Volume down Tichšie + Favorite Obľúbené + Cancel Zrušiť + Replace Premiestniť + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Spustiť + Songs - + + Playlists - + + Settings Nastavenia + Play/Pause Prehrať/pozastaviť + Previous Predchádzajúce + Next Ďalšie + Volume Up Zvýšiť hlasitosť + Volume Down Znížiť hlasitosť + Mute Stlmiť + Favorite Obľúbené + Unfavorite - + + Song info Info o piesni + New playlist Nový zoznam skladieb + Add music Pridať hudbu + Rename playlist - + + Remove from playlist Odstrániť zo zoznamu skladieb + Help Nápoveda + Display shortcuts Zobraziť skratky @@ -937,29 +1160,35 @@ Shortcuts + New playlist Nový zoznam skladieb + My Favorites - + SidebarMenu + Play Spustiť + Add songs - + + Rename Premenovať + Delete Vymazať @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Vlastný + + + Date added - + + + Album Album + + Artist Umelca + Title Názov @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Prehrať všetko @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Prehrať všetko @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Miešanie + Unfavorite - + + Favorite Obľúbené + My Favorites - + + Previous Predchádzajúce + Play/Pause Prehrať/pozastaviť + Next Ďalšie + Lyrics Text piesne + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Nový zoznam skladieb + + Add music Pridať hudbu + Equalizer Ekvalizér + Settings Nastavenia + Music Hudba + Music is a local music player with beautiful design and simple functions. - + + Version: Verzia: - Quit - Ukončiť - - + Previous page - + + Next page - + + Search Hľadať - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_sl.ts b/translations/deepin-music_sl.ts index 4b3741cde..d2a1cac86 100644 --- a/translations/deepin-music_sl.ts +++ b/translations/deepin-music_sl.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Dodaj skladbe + Open Folders Odpri mape + Drag music files here or ali povlecite glasbene datoteke sem - scan the Music directory - preišči mapo z glasbo + + scan the Music directory + preišči mapo z glasbo AlbumGridDelegate + 1 song Ena skladba + %1 songs Skladb: %1 @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Izvajalec + Tracks Skladbe + Date added Datum dodajanja @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Prikaži podrobnosti + Play all Predvajaj vse + Add to Dodaj v @@ -73,14 +89,17 @@ AlbumSublist + Title Naslov + Artist Izvajalec + Duration Trajanje @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Moje prilljubljene @@ -95,14 +115,17 @@ AlbumSublistView + Title Naslov + Artist Izvajalec + Duration Trajanje @@ -110,10 +133,12 @@ AlbumView + Albums Albumi + %1 albums - %2 songs Albumov: %1; Skladb: %2 @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Dodaj skladbe + Open Folders Odpri mape + Drag music files here or Povlecite glasbene datoteke sem - Your favorite songs will be displayed here. - Vaše priljubljene skladbe bodo prikazane tukaj. + + Your favorite songs will be displayed here + - Click“ ♥ ”to add a song to My Favorites - Kliknite“ ♥ ” za dodajanje skladbe v Moje priljubene + + Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Ni še skladb. Kliknite“ ➕ ”za dodajanje skladb na seznam predvajanja. + + ” to add a song to My Favorites + + + No songs yet. Click “ + + + + + ” to add songs to the playlist + + + + scan the Music directory preišči mapo z glasbo @@ -152,14 +194,17 @@ AllMusicList + All Songs Vse skladbe + 1 song Ena skladba + %1 songs Skladb: %1 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Moje prilljubljene @@ -174,18 +220,22 @@ AllMusicListView + Title Naslov + Artist Izvajalec + Album Album + Duration Trajanje @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Dodaj skladbe + Open Folders Odpri mape + Drag music files here or Povlecite glasbene datoteke sem - scan the Music directory - preišči mapo z glasbo + + scan the Music directory + preišči mapo z glasbo ArtistGridDelegate + 1 song Ena skladba + %1 songs Skladb: %1 @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Prikaži podrobnosti + Play all Predvajaj vse + Add to Dodaj v @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Moje prilljubljene @@ -245,14 +305,17 @@ ArtistSublistView + Title Naslov + Album Album + Duration Trajanje @@ -260,10 +323,12 @@ ArtistView + Artists Izvajalci + %1 artists - %2 songs Izvajalcev: %1; Skladb: %2 @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD je bil odstranjen + Cancel Prekliči @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Izberite dejanje + Minimize to system tray Pomanjšaj v statusno vrstico + Exit Izhod + Do not ask again Tega več ne vprašaj + Cancel Prekini + Confirm Potrdi @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Predvajaj čakalno vrsto + 1 song Ena skladba + %1 songs Skladb: %1 + Empty Prazno @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Moje prilljubljene @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Moje prilljubljene + CD playlist CD seznam predvajanja + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Ali ste prepričani, da želite izbrisati %1? + Are you sure you want to delete the selected %1 songs? Ali ste prepričani, da želite izbrisati izbranih %1 skladb? + The song files contained will also be deleted Datoteke z glasbo bodo tudi izbrisane + Delete Izbriši + Cancel Prekliči @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Ali ste prepričani, da želite odstraniti %1? + Are you sure you want to remove the selected %1 songs? Ali ste prepričani, da želite odstraniti označenih %1 skladb? + Are you sure you want to delete this playlist? Ali ste prepričani, da želite izbrisati ta seznam predvajanja? + Remove Odstrani + Delete Izbriši + Cancel Prekliči @@ -400,105 +492,138 @@ EqualizerDialog + Custom Po meri + Monophony Monofonija + Classical Klasika + Club Klubska + Dance Plesna + Full Bass Poudarjeni basi + Full Bass and Treble Poudarjeni basi in visoki toni + Full Treble Poudarjeni visoki toni + Headphones Slušalke + Hall Dvorana + Live V živo + Party Zabava + Pop Pop + Reggae Regi + Rock Rock + Ska Ska + Soft Nežna + Soft Rock Nežni rock + Techno Tehno + Equalizer Izravnalnik + Save Shrani + Reset Ponastavi + Preamplifier Predojačevalnik + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Uvažanje ni uspelo. Ni veljavnih glasbenih datotek + OK V redu @@ -506,18 +631,22 @@ ImportMenu + Play queue Predvajaj čakalno vrsto + My favorites Moje priljubljene + Create new playlist Ustvari nov seznam predvajanja + New playlist Nov seznam predvajanja @@ -525,18 +654,22 @@ LyricPage + Artist Izvajalec + Album Album + No lyrics found Ne najdem besedila + Please put the lyric file (same name as the song) and the song file in the same folder Postavite datoteko z besedilom (z enakim imenom kot ga ima skladba) v isto mapo @@ -544,46 +677,57 @@ MainWindow + Music Glasba + Play/Pause Predvajaj/premor + Previous Predhodni + Next Naprej + Exit Izhod + Already added to the playlist Že dodano v seznam predvajanja + Added to "%1" Dodano k "%1" + Removed from "My Favorites" Odstranjeno iz "Moje priljubljene" + A disc is connected Povezan je disk + My Favorites Moje prilljubljene + All Songs Vse skladbe @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Dodaj v + Remove from playlist Odstrani s seznama predvajanja + Delete from local disk Izbriši z lokalnega diska @@ -606,30 +753,37 @@ MusicBaselistview + Library Knjižnica + Albums Albumi + Artists Izvajalci + All Songs Vse skladbe + Playlists Seznami predvajanja + Create playlist Ustvari seznam predvajanja + New playlist Nov seznam predvajanja @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Moje prilljubljene @@ -644,30 +799,37 @@ MusicInfoDialog + Title Naslov + Artist Izvajalec + Album Album + Type Vrsta + Size Velikost + Duration Trajanje + Path Pot @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Premor + Play Predvajaj + Add to Dodaj v + Open in file manager Odpri v upravitelju datotek + Remove from playlist Odstrani s seznama predvajanja + Delete from local disk Izbriši z lokalnega diska + Encoding Encoding + Song info Podatki o skladbi @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Glasba je predvajalnik lokalne glasbe z lepim in preprostim vmesnikom. + Music Glasba + Unknown album Neznan album + Unknown artist Neznan izvajalec @@ -729,14 +903,17 @@ SearchResultDialog + Songs Skladbe + Artists Izvajalci + Albums Albumi @@ -744,34 +921,42 @@ SearchResultWindow + No search results Ni rezultatov iskanja + Search Results Rezultati iskanja + %1 albums - %2 songs Albumov: %1; Skladb: %2 + 1 album - 1 song 1 album - 1 skladba + %1 album - %2 songs Albumov: %1; Skladb: %2 + Music Glasba + Artist Izvajalec + Album Album @@ -779,78 +964,97 @@ SettingsDialog + Basic Osnove + Play Predvajaj + Autoplay Samodejno predvajanje + Remember playback position on exit Ob izhodu si zapomni položaj predvajanja + Enable fade in/out Vklopi mehki vstop/izstop + Close Main Window Zapri glavno okno + Minimize to system tray Pomanjšaj v statusno vrstico + Exit Izhod + Ask me always Vedno vprašaj + Shortcuts Bližnjice + Play/Pause Predvajaj/premor + Previous Predhodni + Next Naprej + Volume up Glasneje + Volume down Tišje + Favorite Priljubljena + Cancel Prekini + Replace Zamenjaj + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Ta bližnjica se prekriva z/s [%1]. Lahko jo takoj omogočite s klikom na Zamenjaj @@ -858,78 +1062,97 @@ Shortcut + Play Predvajaj + Songs Skladbe + Playlists Seznami predvajanja + Settings Nastavitve + Play/Pause Predvajaj/premor + Previous Prejšnja + Next Naslednja + Volume Up Glasneje + Volume Down Tišje + Mute Izklopi zvok + Favorite Priljubljena + Unfavorite Odstrani iz priljubljenih + Song info Podatki o skladbi + New playlist Nov seznam predvajanja + Add music Dodaj glasbo + Rename playlist Preimenuj seznam predvajanja + Remove from playlist Odstrani s seznama predvajanja + Help Pomoč + Display shortcuts Prikaži bližnjice @@ -937,10 +1160,12 @@ Shortcuts + New playlist Nov seznam predvajanja + My Favorites Moje prilljubljene @@ -948,18 +1173,22 @@ SidebarMenu + Play Predvajaj + Add songs Dodaj skladbe + Rename Preimenuj + Delete Izbriši @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD seznam predvajanja + Custom Po meri + + + Date added Datum dodajanja + + Album Album + + Artist Izvajalec + Title Naslov @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song Ena skladba + %1 songs Skladb: %1 + Play All Predvajaj vse @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Predvajaj vse @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Zaporedno predvajanje + List loop Ponavljanje seznama + Single loop Posamično ponavljanje + Shuffle Premešaj + Unfavorite Odstrani iz priljubljenih + Favorite Priljubljena + My Favorites Moje prilljubljene + Previous Predhodni + Play/Pause Predvajaj/premor + Next Naprej + Lyrics Besedilo + Play Queue Čakalna vrsta @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Dodaj seznam predvajanja + New playlist Nov seznam predvajanja + + Add music Dodaj glasbo + Equalizer Izravnalnik + Settings Nastavitve + Music Glasba + Music is a local music player with beautiful design and simple functions. Glasba je predvajalnik lokalne glasbe z lepim in preprostim vmesnikom. + Version: Različica: - Quit - Izhod - - + Previous page Prejšnja stran + Next page Naslednja stran + Search Iskanje - - %1 is released under %2 - %1 je izdan(a) pod %2 - - \ No newline at end of file + diff --git a/translations/deepin-music_sq.ts b/translations/deepin-music_sq.ts index 22a67f212..30f9df674 100644 --- a/translations/deepin-music_sq.ts +++ b/translations/deepin-music_sq.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Shtoni Këngë + Open Folders Hap Dosje + Drag music files here or Tërhiqni këtu kartela muzikore, ose - scan the Music directory - kontrolloni te drejtoria Muzikë + + scan the Music directory + skano drejtorinë Muzikë AlbumGridDelegate + 1 song 1 këngë + %1 songs %1 këngë @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Album + Artist Artist + Tracks Pjesë + Date added Datë shtimi @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Shihni hollësi + Play all Luaji krejt + Add to Shtoje te @@ -73,14 +89,17 @@ AlbumSublist + Title Titull + Artist Artist + Duration Kohëzgjatje @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Të parapëlqyerat e Mia @@ -95,14 +115,17 @@ AlbumSublistView + Title Titull + Artist Artist + Duration Kohëzgjatje @@ -110,10 +133,12 @@ AlbumView + Albums Albume + %1 albums - %2 songs %1 albums - %2 këngë @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Shtoni Këngë + Open Folders Hap Dosje + Drag music files here or Tërhiqni këtu kartela muzikore, ose - Your favorite songs will be displayed here. - Këngët tuaja të parapëlqyera do të shfaqen këtu. + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - Klikoni mbi “ ♥ ” që të shtoni një këngë te Të parapëlqyerat e Mia + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Ende pa këngë. Klikoni mbi “ ➕ ” që të shtoni këngë te luajlista. + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory skano drejtorinë Muzikë @@ -152,14 +194,17 @@ AllMusicList + All Songs Krejt Këngët + 1 song 1 këngë + %1 songs %1 këngë @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Të parapëlqyerat e Mia @@ -174,18 +220,22 @@ AllMusicListView + Title Titull + Artist Artist + Album Album + Duration Kohëzgjatje @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Shtoni Këngë + Open Folders Hap Dosje + Drag music files here or Tërhiqni këtu kartela muzikore, ose - scan the Music directory - kontrolloni te drejtoria Muzikë + + scan the Music directory + skano drejtorinë Muzikë ArtistGridDelegate + 1 song 1 këngë + %1 songs %1 këngë @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Shihni hollësi + Play all Luaji krejt + Add to Shtoje te @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Të parapëlqyerat e Mia @@ -245,14 +305,17 @@ ArtistSublistView + Title Titull + Album Album + Duration Kohëzgjatje @@ -260,10 +323,12 @@ ArtistView + Artists Artistë + %1 artists - %2 songs %1 artists - %2 këngë @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD-ja është hequr + Cancel Anuloje @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Ju lutemi, zgjidhni veprimin tuaj + Minimize to system tray Minimizoje te paneli + Exit Dil + Do not ask again Mos pyet sërish + Cancel Anuloje + Confirm Ripohojeni @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Radhë luajtjeje + 1 song 1 këngë + %1 songs %1 këngë + Empty E zbrazët @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Të parapëlqyerat e Mia @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Të parapëlqyerat e Mia + CD playlist Luajlistë CD-je + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Jeni i sigurt se doni të fshihet %1? + Are you sure you want to delete the selected %1 songs? Jeni i sigurt se doni të hiqen %1 këngët e përzgjedhura? + The song files contained will also be deleted Do të fshihen gjithashtu edhe kartela këngësh që përmban + Delete Fshije + Cancel Anuloje @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Jeni i sigurt se doni të hiqet %1? + Are you sure you want to remove the selected %1 songs? Jeni i sigurt se doni të hiqen %1 këngët e përzgjedhura? + Are you sure you want to delete this playlist? Jeni i sigurt se doni të fshihet kjo luajlistë? + Remove Hiqe + Delete Fshije + Cancel Anuloje @@ -400,105 +492,138 @@ EqualizerDialog + Custom Vetjak + Monophony Monofoni + Classical Klasike + Club Klub + Dance Vallëzim + Full Bass Bas i Plotë + Full Bass and Treble Bas dhe Trebël i Plotë + Full Treble Trebël i Plotë + Headphones Kufje + Hall Holl + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Soft + Soft Rock Soft Rock + Techno Techno + Equalizer Ekualizator + Save Ruaje + Reset Ricaktojeni + Preamplifier Preamplifikator + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Importimi dështoi, s’u gjetën kartela të vlefshme muzike + OK OK @@ -506,18 +631,22 @@ ImportMenu + Play queue Radhë luajtjeje + My favorites Të parapëlqyerat e mia + Create new playlist Krijoni luajlistë të re + New playlist Luajlistë të re @@ -525,18 +654,22 @@ LyricPage + Artist Artist + Album Album + No lyrics found S’u gjetën vargje + Please put the lyric file (same name as the song) and the song file in the same folder Ju lutemi, vëreni kartelën e vargjeve (me të njëjtin emër si kënga) dhe kartelën e këngës në të njëjtën dosje @@ -544,46 +677,57 @@ MainWindow + Music Muzikë + Play/Pause Luaje/Pushoje + Previous E mëparshmja + Next Pasuesja + Exit Dalje + Already added to the playlist E shtuar tashmë te luajlista + Added to "%1" U shtua te “%1” + Removed from "My Favorites" Hiqe prej “Të parapëlqyerave të Mia” + A disc is connected Është futur një disk + My Favorites Të parapëlqyerat e Mia + All Songs Krejt Këngët @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Shtoje te + Remove from playlist Hiqe prej luajliste + Delete from local disk Fshije nga disku vendor @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliotekë + Albums Albume + Artists Artistë + All Songs Krejt Këngët + Playlists Luajlista + Create playlist Krijoni luajlistë + New playlist Luajlistë të re @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Të parapëlqyerat e Mia @@ -644,30 +799,37 @@ MusicInfoDialog + Title Titull + Artist Artist + Album Album + Type Lloj + Size Madhësi + Duration Kohëzgjatje + Path Shteg @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pushoje + Play Luaje + Add to Shtoje te + Open in file manager Hape në përgjegjës kartelash + Remove from playlist Hiqe prej luajliste + Delete from local disk Fshije nga disku vendor + Encoding Kodim + Song info Të dhëna kënge @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Muzika është një lojtës lokal muzike me konceptim të hijshëm dhe funksione të thjeshta. + Music Muzikë + Unknown album Album i panjohur + Unknown artist Artist i panjohur @@ -729,14 +903,17 @@ SearchResultDialog + Songs Këngë + Artists Artistë + Albums Albume @@ -744,34 +921,42 @@ SearchResultWindow + No search results S’ka përfundime kërkimi + Search Results Përfundime Kërkimi + %1 albums - %2 songs %1 albums - %2 këngë + 1 album - 1 song 1 album - 1 këngë + %1 album - %2 songs %1 album - %2 këngë + Music Muzikë + Artist Artist + Album Album @@ -779,78 +964,97 @@ SettingsDialog + Basic Elementare + Play Luaje + Autoplay Vetëluaje + Remember playback position on exit Gjatë daljes mbaj mend pozicionin e luajtjes + Enable fade in/out Aktivizo “fade in/out” + Close Main Window Mbylle Dritaren Kryesore + Minimize to system tray Minimizoje te paneli + Exit Dalje + Ask me always Pyetmë përherë + Shortcuts Shkurtore + Play/Pause Luaje/Pushoje + Previous E mëparshmja + Next Pasuesja + Volume up Ngrije volumin + Volume down Ule volumin + Favorite E parapëlqyer + Cancel Anuloje + Replace Zëvendësoje + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Ky tast shkurtoreje ka përplasje me [%1], klikoni mbi “Zëvendësoje” për ta bërë këtë tast shkurtore të hyjë në fuqi menjëherë @@ -858,78 +1062,97 @@ Shortcut + Play Luaje + Songs Këngë + Playlists Luajlista + Settings Rregullime + Play/Pause Luaje/Pushoje + Previous E mëparshmja + Next Pasuesja + Volume Up Ngrije Volumin + Volume Down Ule Volumin + Mute Pa zë + Favorite E parapëlqyer + Unfavorite Hiqe si të parapëlqyer + Song info Të dhëna kënge + New playlist Luajlistë të re + Add music Shtoni muzikë + Rename playlist Riemërto luajlistën + Remove from playlist Hiqe prej luajliste + Help Ndihmë + Display shortcuts Shfaq shkurtore @@ -937,10 +1160,12 @@ Shortcuts + New playlist Luajlistë të re + My Favorites Të parapëlqyerat e Mia @@ -948,18 +1173,22 @@ SidebarMenu + Play Luaje + Add songs Shtoni këngë + Rename Riemërtojeni + Delete Fshije @@ -967,26 +1196,36 @@ SortMenu + CD playlist Luajlistë CD-je + Custom Vetjak + + + Date added Datë shtimi + + Album Album + + Artist Artist + Title Titull @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 këngë + %1 songs %1 këngë + Play All Luaji Krejt @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Luaji Krejt @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Luajtje njëra pas tjetrës + List loop Ripërsëritje liste + Single loop Ripërsëritje pjese + Shuffle Përzieji + Unfavorite Hiqe si të parapëlqyer + Favorite E parapëlqyer + My Favorites Të parapëlqyerat e Mia + Previous E mëparshmja + Play/Pause Luaje/Pushoje + Next Pasuesja + Lyrics Vargje + Play Queue Radhë Luajtjeje @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Shtoni luajlistë + New playlist Luajlistë të re + + Add music Shtoni muzikë + Equalizer Ekualizator + Settings Rregullime + Music Muzikë + Music is a local music player with beautiful design and simple functions. Muzika është një lojtës lokal muzike me konceptim të hijshëm dhe funksione të thjeshta. + Version: Version: - Quit - Mbylle - - + Previous page Faqja e mëparshme + Next page Faqja pasuese + Search Kërkim - - %1 is released under %2 - %1 hidhet në qarkullim sipas %2 - - \ No newline at end of file + diff --git a/translations/deepin-music_sr.ts b/translations/deepin-music_sr.ts index 6ce036b26..f58b3c414 100644 --- a/translations/deepin-music_sr.ts +++ b/translations/deepin-music_sr.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 нумера + %1 songs %1 нумера/е @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Албум + Artist Извођач + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Наслов + Artist Извођач + Duration Трајање @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Моје омиљено @@ -95,14 +115,17 @@ AlbumSublistView + Title Наслов + Artist Извођач + Duration Трајање @@ -110,10 +133,12 @@ AlbumView + Albums Албуми + %1 albums - %2 songs %1 албума - %2 нумера/е @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 нумера + %1 songs %1 нумера/е @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Моје омиљено @@ -174,18 +220,22 @@ AllMusicListView + Title Наслов + Artist Извођач + Album Албум + Duration Трајање @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 нумера + %1 songs %1 нумера/е @@ -223,21 +279,25 @@ ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites Моје омиљено @@ -245,14 +305,17 @@ ArtistSublistView + Title Наслов + Album Албум + Duration Трајање @@ -260,10 +323,12 @@ ArtistView + Artists Извођачи + %1 artists - %2 songs %1 извођача - %2 нумера/е @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed ЦД је уклоњен + Cancel Откажи @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Изаберите радњу + Minimize to system tray Спусти у системску касету + Exit Изађи + Do not ask again Не питај ме поново + Cancel Откажи + Confirm Потврди @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Редослед пуштања + 1 song 1 нумера + %1 songs %1 нумера/е + Empty Испразни @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Моје омиљено @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Моје омиљено + CD playlist ЦД листа пуштања + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Заиста желите да обришете %1? + Are you sure you want to delete the selected %1 songs? Заиста желите да обришете %1 нумере/а? + The song files contained will also be deleted Припадајуће датотеке нумера ће такође бити обрисане + Delete Обриши + Cancel Откажи @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Заиста желите да уклоните %1? + Are you sure you want to remove the selected %1 songs? Заиста желите да уклоните %1 изабране/их нумере/а? + Are you sure you want to delete this playlist? Заиста желите да обришете листу пуштања? + Remove Уклони + Delete Обриши + Cancel Откажи @@ -400,105 +492,138 @@ EqualizerDialog + Custom Прилагођен + Monophony Монофонија + Classical Класика + Club Клуб + Dance Плес + Full Bass Пун бас + Full Bass and Treble Пун бас и високи тонови + Full Treble Пуни високи тонови + Headphones Слушалице + Hall Дворана + Live Уживо + Party Журка + Pop Поп + Reggae Реге + Rock Рок + Ska Ска + Soft Меко + Soft Rock Лагани рок + Techno Техно + Equalizer Еквилизатор + Save Сачувај + Reset Поново покрени + Preamplifier Претпојачало + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Неуспешан увоз, нису пронађене важеће музичке датотеке + OK У реду @@ -506,18 +631,22 @@ ImportMenu + Play queue Редослед пуштања + My favorites Моје омиљено + Create new playlist - + + New playlist Нова листа пуштања @@ -525,80 +654,98 @@ LyricPage + Artist Извођач + Album Албум + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Музика + Play/Pause Пусти/Паузирај + Previous Претходно + Next Следеће + Exit Изађи + Already added to the playlist Већ додато листи пуштања + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Диск је повезан + My Favorites Моје омиљено + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Уклони из листе пуштања + Delete from local disk Обриши са диска @@ -606,30 +753,37 @@ MusicBaselistview + Library Библиотека + Albums Албуми + Artists Извођачи + All Songs - + + Playlists Листа пуштања + Create playlist - + + New playlist Нова листа пуштања @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Моје омиљено @@ -644,30 +799,37 @@ MusicInfoDialog + Title Наслов + Artist Извођач + Album Албум + Type Врста + Size Величина + Duration Трајање + Path Путања @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Паузирај + Play Репродукција + Add to - + + Open in file manager Отвори у управнику података + Remove from playlist Уклони из листе пуштања + Delete from local disk Обриши са диска + Encoding Кодирање + Song info Подаци о нумери @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Музика је локални пуштач музике лепог дизајна са једноставним функцијама. + Music Музика + Unknown album Непознат албум + Unknown artist Непознат извођач @@ -729,14 +903,17 @@ SearchResultDialog + Songs Нумере + Artists Извођачи + Albums Албуми @@ -744,34 +921,42 @@ SearchResultWindow + No search results Нема резултата претраге + Search Results Резултати претраге + %1 albums - %2 songs %1 албума - %2 нумера/е + 1 album - 1 song 1 албум - 1 нумера + %1 album - %2 songs %1 албум - %2 нумера/е + Music Музика + Artist Извођач + Album Албум @@ -779,157 +964,195 @@ SettingsDialog + Basic Основно + Play Репродукција + Autoplay Аутоматски пуштај + Remember playback position on exit - + + Enable fade in/out Прелазно утишавање + Close Main Window Затварање главног прозора + Minimize to system tray Спусти у системску касету + Exit Изађи + Ask me always Увек ме питај + Shortcuts Пречице + Play/Pause Пусти/Паузирај + Previous Претходно + Next Следеће + Volume up Појачај + Volume down Утишај + Favorite Омиљено + Cancel Откажи + Replace Замени + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Репродукција + Songs Нумере + Playlists Листа пуштања + Settings Подeшавања + Play/Pause Пусти/Паузирај + Previous Претходно + Next Следеће + Volume Up Појачај звук + Volume Down Утишај звук + Mute Ућуткај + Favorite Омиљено + Unfavorite Уклони из омиљеног + Song info Подаци о нумери + New playlist Нова листа пуштања + Add music Додај музику + Rename playlist Преименуј листу пуштања + Remove from playlist Уклони из листе пуштања + Help Помоћ + Display shortcuts Прикажи пречице @@ -937,10 +1160,12 @@ Shortcuts + New playlist Нова листа пуштања + My Favorites Моје омиљено @@ -948,18 +1173,22 @@ SidebarMenu + Play Репродукција + Add songs - + + Rename Преименуј + Delete Обриши @@ -967,26 +1196,36 @@ SortMenu + CD playlist ЦД листа пуштања + Custom Прилагођен + + + Date added - + + + Album Албум + + Artist Извођач + Title Наслов @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 нумера + %1 songs %1 нумера/е + Play All Пусти све @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Пусти све @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Понављај листу + Single loop Понављај видео + Shuffle Насумично + Unfavorite Уклони из омиљеног + Favorite Омиљено + My Favorites Моје омиљено + Previous Претходно + Play/Pause Пусти/Паузирај + Next Следеће + Lyrics Текст + Play Queue Редослед @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Додај листу пуштања + New playlist Нова листа пуштања + + Add music Додај музику + Equalizer Еквилизатор + Settings Подeшавања + Music Музика + Music is a local music player with beautiful design and simple functions. Музика је локални пуштач музике лепог дизајна са једноставним функцијама. + Version: Верзија: - Quit - Искључи - - + Previous page - + + Next page - + + Search Претражи - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_sv.ts b/translations/deepin-music_sv.ts index eff006034..05a81541c 100644 --- a/translations/deepin-music_sv.ts +++ b/translations/deepin-music_sv.ts @@ -1,37 +1,46 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 %1 @@ -39,48 +48,58 @@ AlbumListView + Album Album + Artist Artist + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title Titel + Artist Artist + Duration Varaktighet @@ -88,21 +107,25 @@ AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title Titel + Artist Artist + Duration Varaktighet @@ -110,82 +133,109 @@ AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title Titel + Artist Artist + Album Album + Duration Varaktighet @@ -193,66 +243,79 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title Titel + Album Album + Duration Varaktighet @@ -260,21 +323,25 @@ ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Avbryt @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray Minimera till aktivitetsfältet + Exit Avsluta + Do not ask again Fråga inte igen + Cancel Avbryt + Confirm Bekräfta @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Tom @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Är du säker du vill ta bort %1? + Are you sure you want to delete the selected %1 songs? Är du säker du vill ta bort de valda %1 låtarna? + The song files contained will also be deleted - + + Delete Radera + Cancel Avbryt @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? Är du säker du vill radera denna spellista? + Remove - + + Delete Radera + Cancel Avbryt @@ -400,105 +492,138 @@ EqualizerDialog + Custom Egen + Monophony - + + Classical Klassiskt + Club Club + Dance Dance + Full Bass Full Bas + Full Bass and Treble Full bas och diskant + Full Treble Full diskant + Headphones Hörlurar + Hall - + + Live Live + Party Party + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Mjukt + Soft Rock Soft Rock + Techno - + + Equalizer Equalizer + Save Spara + Reset Återställ + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK Okej @@ -506,18 +631,22 @@ ImportMenu + Play queue - + + My favorites Mina favoriter + Create new playlist - + + New playlist Ny spellista @@ -525,80 +654,98 @@ LyricPage + Artist Artist + Album Album + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Musik + Play/Pause Spela/Pausa + Previous Föregående + Next Nästa + Exit Avsluta + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist Ta bort från spellista + Delete from local disk Ta bort från lokal disk @@ -606,30 +753,37 @@ MusicBaselistview + Library Bibliotek + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist Ny spellista @@ -637,37 +791,45 @@ MusicContentWindow + My Favorites - + MusicInfoDialog + Title Titel + Artist Artist + Album Album + Type Typ + Size Storlek + Duration Varaktighet + Path Sökväg @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Pausa + Play Spela + Add to - + + Open in file manager Öppna i filhanteraren + Remove from playlist Ta bort från spellista + Delete from local disk Ta bort från lokal disk + Encoding Kodning + Song info Sång info @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. - + + Music Musik + Unknown album Okänt album + Unknown artist Okänd Artist @@ -729,49 +903,60 @@ SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Inga sökresultat + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Musik + Artist Artist + Album Album @@ -779,157 +964,195 @@ SettingsDialog + Basic Grundläggande + Play Spela + Autoplay Autouppspelning + Remember playback position on exit - + + Enable fade in/out Aktivera fade in/ut + Close Main Window Stäng Huvudfönster + Minimize to system tray Minimera till aktivitetsfältet + Exit Avsluta + Ask me always - + + Shortcuts Kortkommandon + Play/Pause Spela/Pausa + Previous Föregående + Next Nästa + Volume up Volym upp + Volume down Volym ner + Favorite Favorit + Cancel Avbryt + Replace Ersätt + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Spela + Songs - + + Playlists - + + Settings Inställningar + Play/Pause Spela/Pausa + Previous Föregående + Next Nästa + Volume Up Volym Upp + Volume Down Volym Ner + Mute Tysta + Favorite Favorit + Unfavorite - + + Song info Sång info + New playlist Ny spellista + Add music - + + Rename playlist - + + Remove from playlist Ta bort från spellista + Help Hjälp + Display shortcuts Visa genvägar @@ -937,29 +1160,35 @@ Shortcuts + New playlist Ny spellista + My Favorites - + SidebarMenu + Play Spela + Add songs - + + Rename Byt namn + Delete Radera @@ -967,26 +1196,36 @@ SortMenu + CD playlist - + + Custom Egen + + + Date added - + + + Album Album + + Artist Artist + Title Titel @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song - + + %1 songs - + + Play All Spela Alla @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Spela Alla @@ -1016,107 +1259,123 @@ Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle Slumpa + Unfavorite - + + Favorite Favorit + My Favorites - + + Previous Föregående + Play/Pause Spela/Pausa + Next Nästa + Lyrics Låttexter + Play Queue - + WindowTitlebar + Add playlist - + + New playlist Ny spellista + + Add music - + + Equalizer Equalizer + Settings Inställningar + Music Musik + Music is a local music player with beautiful design and simple functions. - + + Version: Version: - Quit - Stäng - - + Previous page - + + Next page - + + Search Sök - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_sw.ts b/translations/deepin-music_sw.ts index b87175167..0c5752d0d 100644 --- a/translations/deepin-music_sw.ts +++ b/translations/deepin-music_sw.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Katisha @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit Toka + Do not ask again - + + Cancel Katisha + Confirm Hakikisha @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Tupu @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Futa + Cancel Katisha @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Futa + Cancel Katisha @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save Hifadhi + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK Sawa @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Muziki + Play/Pause - + + Previous - + + Next Ingine + Exit Toka + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size Ukubwa + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Muziki + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Hakuna matokeo ya utafutaji + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Muziki + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit Toka + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next Ingine + Volume up - + + Volume down - + + Favorite - + + Cancel Katisha + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings Sifa + Play/Pause - + + Previous - + + Next Ingine + Volume Up - + + Volume Down - + + Mute Zima sauti + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help Usaidizi + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete Futa @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next Ingine + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings Sifa + Music Muziki + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search Tafuta - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ta.ts b/translations/deepin-music_ta.ts index fe11b320e..d565a953d 100644 --- a/translations/deepin-music_ta.ts +++ b/translations/deepin-music_ta.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel நிறுத்து @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit வெளியேறுக + Do not ask again - + + Cancel நிறுத்து + Confirm உறுதிப்படுத்து @@ -309,63 +382,76 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete அழி + Cancel நிறுத்து @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete அழி + Cancel நிறுத்து @@ -400,105 +492,138 @@ EqualizerDialog + Custom விருப்பம் + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft மென்மையான + Soft Rock - + + Techno - + + Equalizer - + + Save சேமி + Reset மீட்டமை + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK சரி @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music இசை + Play/Pause இயக்கு/இடைநிறுத்து + Previous முந்தைய + Next அடுத்து + Exit வெளியேறுக + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type வகை + Size அளவு + Duration - + + Path - + MusicMoreMenu + Pause இடைநிறுத்து + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music இசை + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music இசை + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit வெளியேறுக + Ask me always - + + Shortcuts - + + Play/Pause இயக்கு/இடைநிறுத்து + Previous முந்தைய + Next அடுத்து + Volume up ஒலி அதிகரிக்க + Volume down ஒலி குறைக்க + Favorite - + + Cancel நிறுத்து + Replace மாற்றுக + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings அமைவுகள் + Play/Pause இயக்கு/இடைநிறுத்து + Previous முந்தைய + Next அடுத்து + Volume Up - + + Volume Down - + + Mute ஒலியடக்கு + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete அழி @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom விருப்பம் + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous முந்தைய + Play/Pause இயக்கு/இடைநிறுத்து + Next அடுத்து + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings அமைவுகள் + Music இசை + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_th.ts b/translations/deepin-music_th.ts index bcd858dbe..eddc646e8 100644 --- a/translations/deepin-music_th.ts +++ b/translations/deepin-music_th.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel ยกเลิก @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel ยกเลิก + Confirm ยืนยัน @@ -309,63 +382,76 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete ลบ + Cancel ยกเลิก @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete ลบ + Cancel ยกเลิก @@ -400,105 +492,138 @@ EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save บันทึก + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK ตกลง @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music เพลง + Play/Pause - + + Previous - + + Next ถัดไป + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type ประเภท + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music เพลง + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results ไม่มีผลลัพธ์การค้นหา + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music เพลง + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts ทางลัด + Play/Pause - + + Previous - + + Next ถัดไป + Volume up - + + Volume down - + + Favorite - + + Cancel ยกเลิก + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next ถัดไป + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help วิธีใช้ + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete ลบ @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next ถัดไป + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music เพลง + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_tlh.ts b/translations/deepin-music_tlh.ts index ce3ff0307..e2bc5b26d 100644 --- a/translations/deepin-music_tlh.ts +++ b/translations/deepin-music_tlh.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_tr.ts b/translations/deepin-music_tr.ts index d7d87b1ec..758b496a6 100644 --- a/translations/deepin-music_tr.ts +++ b/translations/deepin-music_tr.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 parça + %1 songs %1 parça @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,33 +48,40 @@ AlbumListView + Album Albüm + Artist Sanatçı + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to Şuraya ekle @@ -73,14 +89,17 @@ AlbumSublist + Title Başlık + Artist Sanatçı + Duration Süre @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Sık Kullandıklarım @@ -95,14 +115,17 @@ AlbumSublistView + Title Başlık + Artist Sanatçı + Duration Süre @@ -110,10 +133,12 @@ AlbumView + Albums Albümler + %1 albums - %2 songs %1 albüm - %2 parça @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 parça + %1 songs %1 parça @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Sık Kullandıklarım @@ -174,18 +220,22 @@ AllMusicListView + Title Başlık + Artist Sanatçı + Album Albüm + Duration Süre @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 parça + %1 songs %1 parça @@ -223,14 +279,17 @@ ArtistMoreMenu + View details - + + Play all - + + Add to Şuraya ekle @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Sık Kullandıklarım @@ -245,14 +305,17 @@ ArtistSublistView + Title Başlık + Album Albüm + Duration Süre @@ -260,10 +323,12 @@ ArtistView + Artists Sanatçılar + %1 artists - %2 songs %1 sanatçı - %2 parça @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD çıkarıldı + Cancel İptal @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Lütfen işleminizi seçin + Minimize to system tray Sistem tepsisine küçült + Exit Çıkış + Do not ask again Bir daha sorma + Cancel Vazgeç + Confirm Onayla @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Oynatma sırası + 1 song 1 parça + %1 songs %1 parça + Empty Boşalt @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Sık Kullandıklarım @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites Sık Kullandıklarım + CD playlist CD oynatma listesi + CD - + DeleteLocalDialog + Are you sure you want to delete %1? %1 ögesini silmek istediğinize emin misiniz? + Are you sure you want to delete the selected %1 songs? %1 seçili parçayı silmek istediğinize emin misiniz? + The song files contained will also be deleted Parça dosyalarının içeriği de silinecek + Delete Sil + Cancel İptal @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Kaldırmak istediğinizden emin misiniz %1? + Are you sure you want to remove the selected %1 songs? Seçilen %1 parçayı kaldırmak istediğinizden emin misiniz? + Are you sure you want to delete this playlist? Bu oynatma listesini silmek istediğinize emin misiniz? + Remove Kaldır + Delete Sil + Cancel İptal @@ -400,105 +492,138 @@ EqualizerDialog + Custom Özel + Monophony Monofoni + Classical Klasik + Club Klüp + Dance Dans + Full Bass Full Bass + Full Bass and Treble Full Bass ve Tiz + Full Treble Full Tiz + Headphones Kulaklık + Hall Salon + Live Canlı + Party Parti + Pop Pop + Reggae Reggae + Rock Rock + Ska Ska + Soft Yumuşak + Soft Rock Soft Rock + Techno Tekno + Equalizer Ekolayzer + Save Kaydet + Reset Sıfırla + Preamplifier Ön amplifikatör + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found İçe aktarılamadı, geçerli müzik dosyası bulunamadı + OK Tamam @@ -506,18 +631,22 @@ ImportMenu + Play queue Oynatma sırası + My favorites Sık kullandıklarım + Create new playlist Yeni oynatma listesi oluştur + New playlist Yeni oynatma listesi @@ -525,80 +654,98 @@ LyricPage + Artist Sanatçı + Album Albüm + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Müzik + Play/Pause Oynat/Duraklat + Previous Önceki + Next Sonraki + Exit Çıkış + Already added to the playlist Oynatma listesine zaten eklenmiş + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected Bir disk bağlandı + My Favorites Sık Kullandıklarım + All Songs - + MulitSelectMenu + Add to Şuraya ekle + Remove from playlist Oynatma listesinden kaldır + Delete from local disk Yerel diskten sil @@ -606,30 +753,37 @@ MusicBaselistview + Library Kütüphane + Albums Albümler + Artists Sanatçılar + All Songs - + + Playlists Oynatma listesi + Create playlist - + + New playlist Yeni oynatma listesi @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Sık Kullandıklarım @@ -644,30 +799,37 @@ MusicInfoDialog + Title Başlık + Artist Sanatçı + Album Albüm + Type Tür + Size Boyut + Duration Süre + Path Yol @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Duraklat + Play Oynat + Add to Şuraya ekle + Open in file manager Dosya yöneticisinde aç + Remove from playlist Oynatma listesinden kaldır + Delete from local disk Yerel diskten sil + Encoding Kodlama + Song info Parça bilgileri @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. Müzik, hoş tasarımı ve basit işlevleri olan sade bir müzik çalardır. + Music Müzik + Unknown album Bilinmeyen albüm + Unknown artist Bilinmeyen sanatçı @@ -729,14 +903,17 @@ SearchResultDialog + Songs Parçalar + Artists Sanatçılar + Albums Albümler @@ -744,34 +921,42 @@ SearchResultWindow + No search results Arama sonucu bulunamadı + Search Results Arama Sonuçları + %1 albums - %2 songs %1 albüm - %2 parça + 1 album - 1 song 1 albüm - 1 parça + %1 album - %2 songs %1 albüm - %2 parça + Music Müzik + Artist Sanatçı + Album Albüm @@ -779,157 +964,195 @@ SettingsDialog + Basic Temel + Play Oynat + Autoplay Otomatik oynat + Remember playback position on exit - + + Enable fade in/out Geçişlerde açma/kısma kullan + Close Main Window Ana Pencereyi Kapat + Minimize to system tray Sistem tepsisine küçült + Exit Çıkış + Ask me always Her zaman sor + Shortcuts Kısayollar + Play/Pause Oynat/Duraklat + Previous Önceki + Next Sonraki + Volume up Sesi yükselt + Volume down Sesi azalt + Favorite Sık kullanılanlara ekle + Cancel İptal + Replace Değiştir + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play Oynat + Songs Parçalar + Playlists Oynatma listesi + Settings Ayarlar + Play/Pause Oynat/Duraklat + Previous Önceki + Next Sonraki + Volume Up Sesi Yükselt + Volume Down Sesi Azalt + Mute Sesi kapat + Favorite Sık kullanılanlara ekle + Unfavorite Favoriden çıkar + Song info Parça bilgileri + New playlist Yeni oynatma listesi + Add music Müzik ekle + Rename playlist Çalma listesini yeniden adlandır + Remove from playlist Oynatma listesinden kaldır + Help Yardım + Display shortcuts Kısayolları görüntüle @@ -937,10 +1160,12 @@ Shortcuts + New playlist Yeni oynatma listesi + My Favorites Sık Kullandıklarım @@ -948,18 +1173,22 @@ SidebarMenu + Play Oynat + Add songs - + + Rename Yeniden adlandır + Delete Sil @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD oynatma listesi + Custom Özel + + + Date added - + + + Album Albüm + + Artist Sanatçı + Title Başlık @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 parça + %1 songs %1 parça + Play All Tümünü Oynat @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Tümünü Oynat @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop Liste döngüsü + Single loop Tek döngü + Shuffle Karıştır + Unfavorite Favoriden çıkar + Favorite Sık kullanılanlara ekle + My Favorites Sık Kullandıklarım + Previous Önceki + Play/Pause Oynat/Duraklat + Next Sonraki + Lyrics Sözler + Play Queue Oynatma Sırası @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Oynatma listesi ekle + New playlist Yeni oynatma listesi + + Add music Müzik ekle + Equalizer Ekolayzer + Settings Ayarlar + Music Müzik + Music is a local music player with beautiful design and simple functions. Müzik, hoş tasarımı ve basit işlevleri olan sade bir müzik çalardır. + Version: Sürüm: - Quit - Çıkış - - + Previous page - + + Next page - + + Search Ara - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_ug.ts b/translations/deepin-music_ug.ts index 3fb3928cd..2948e075e 100644 --- a/translations/deepin-music_ug.ts +++ b/translations/deepin-music_ug.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song 1 ناخشا + %1 songs %1 ناخشا @@ -32,6 +40,7 @@ AlbumListDelegate + %1 1% @@ -39,33 +48,40 @@ AlbumListView + Album پىلاستىنكا + Artist سەنئەتكار + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to غا قوشۇش @@ -73,14 +89,17 @@ AlbumSublist + Title تېما + Artist سەنئەتكار + Duration داۋاملاشتۇرىدىغان ۋاقىت @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites ياقتۇرغانلىرىم @@ -95,14 +115,17 @@ AlbumSublistView + Title تېما + Artist سەنئەتكار + Duration داۋاملاشتۇرىدىغان ۋاقىت @@ -110,10 +133,12 @@ AlbumView + Albums ئالبۇملار + %1 albums - %2 songs %1 پىلاستىنكا -%2 ناخشا @@ -121,45 +146,65 @@ AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song 1 ناخشا + %1 songs %1 ناخشا @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites ياقتۇرغانلىرىم @@ -174,18 +220,22 @@ AllMusicListView + Title تېما + Artist سەنئەتكار + Album پىلاستىنكا + Duration داۋاملاشتۇرىدىغان ۋاقىت @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song 1 ناخشا + %1 songs %1 ناخشا @@ -223,14 +279,17 @@ ArtistMoreMenu + View details - + + Play all - + + Add to غا قوشۇش @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites ياقتۇرغانلىرىم @@ -245,14 +305,17 @@ ArtistSublistView + Title تېما + Album پىلاستىنكا + Duration داۋاملاشتۇرىدىغان ۋاقىت @@ -260,10 +323,12 @@ ArtistView + Artists ئارتىسلار + %1 artists - %2 songs %1 سەنئەتكار -%2 ناخشا @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed CD چىقىرىۋېتىلدى + Cancel بىكار قىلىش @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action مەشغۇلاتىڭىزنى تاللاڭ + Minimize to system tray سىستېما تەخسىگە كىچىكلىتىش + Exit چېكىنىش + Do not ask again خاتالىق كۆرۈلدى + Cancel بىكار قىلىش + Confirm جەزملەشتۈرۈش @@ -309,18 +382,22 @@ CurrentPlayList + Play queue قويغۇچ ئۆچرىتى + 1 song 1 ناخشا + %1 songs %1 ناخشا + Empty قۇرۇق @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites ياقتۇرغانلىرىم @@ -335,37 +413,45 @@ CustomPlaylistModel + My Favorites ياقتۇرغانلىرىم + CD playlist CD ناخشا تىزىملىكى + CD - + DeleteLocalDialog + Are you sure you want to delete %1? %1 نى ئۆچۈرمەكچىمۇ؟ + Are you sure you want to delete the selected %1 songs? تاللانغان%1 ناخشىنى ئۆچۈرمەكچىمۇ؟ + The song files contained will also be deleted مەزمۇندىكى ناخشا ھۆججەتلىرىمۇ ئۆچۈرۈلىدۇ + Delete ئۆچۈرۈش + Cancel بىكار قىلىش @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? %1 نى ئۆچۈرمەكچىمۇ؟ + Are you sure you want to remove the selected %1 songs? تاللانغان%1 ناخشىنى ئۆچۈرمەكچىمۇ؟ + Are you sure you want to delete this playlist? بۇ تىزىملىكنى ئۆچۈرمەكچىمۇ؟ + Remove چىقىرىۋېتىش + Delete ئۆچۈرۈش + Cancel بىكار قىلىش @@ -400,105 +492,138 @@ EqualizerDialog + Custom بەلگىلەش + Monophony تاق ئاۋاز + Classical كىلاسسىك + Club كۇلۇب + Dance ئۇسۇل + Full Bass تولۇق تۆۋەن ئاۋاز + Full Bass and Treble يۇقرى تۆۋەن ئاۋاز + Full Treble پۈتۈن يۇقرى ئاۋاز + Headphones تىڭشىغۇچلار + Hall زال + Live جانلىق + Party يىغىلىش + Pop مودا + Reggae رېگگا + Rock روك + Ska سىكا + Soft يۇمشاق + Soft Rock يۇمشاق روك + Techno تېخنىك + Equalizer مۇۋازىنېتور + Save ساقلاش + Reset قايتا بېكىتىش + Preamplifier ئالدى چوڭايتقۇ + + FileDialog + + + All Music + بارلىق مۇزىكىلار + + ImportFailedDialog + Import failed, no valid music file found ئەكىرىش مەغلۇپ بولدى ، ئۈنۈملۈك مۇزىكا ھۆججىتى تېپىلمىدى + OK جەزىملەشتۈرۈش @@ -506,18 +631,22 @@ ImportMenu + Play queue قويغۇچ ئۆچرىتى + My favorites ياقتۇرغانلىرىم + Create new playlist يېڭى ناخشا تىزىملىكى قۇرۇش + New playlist يېڭى تىزىملىك قۇرۇش @@ -525,80 +654,98 @@ LyricPage + Artist سەنئەتكار + Album پىلاستىنكا + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music مۇزىكا + Play/Pause قويۇش\توختۇتۇش + Previous ئالدىنقى + Next كېيىنكى + Exit چېكىنىش + Already added to the playlist قويۇش تىزىملىكىگە بۇرۇنلا قوشۇلغان + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected CD چېتىلغانلىقى بايقالدى + My Favorites ياقتۇرغانلىرىم + All Songs - + MulitSelectMenu + Add to غا قوشۇش + Remove from playlist قويۇش تىزىملىكىدىن ئۆچۈرۈڭ + Delete from local disk يەرلىك دىسكىدىن ئۆچۈرۈڭ @@ -606,30 +753,37 @@ MusicBaselistview + Library ئامبار + Albums ئالبۇملار + Artists ئارتىسلار + All Songs - + + Playlists قويۇش تىزىملىكى + Create playlist - + + New playlist يېڭى تىزىملىك قۇرۇش @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites ياقتۇرغانلىرىم @@ -644,30 +799,37 @@ MusicInfoDialog + Title تېما + Artist سەنئەتكار + Album پىلاستىنكا + Type تىپ + Size چوڭلۇقى + Duration داۋاملاشتۇرىدىغان ۋاقىت + Path يولى @@ -675,34 +837,42 @@ MusicMoreMenu + Pause تورمۇزلاش + Play قويۇش + Add to غا قوشۇش + Open in file manager ھۆججەت باشقۇرغۇچتا ئاچسۇن + Remove from playlist قويۇش تىزىملىكىدىن ئۆچۈرۈڭ + Delete from local disk يەرلىك دىسكىدىن ئۆچۈرۈڭ + Encoding كودلاش + Song info ناخشا ئۇچۇرى @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. مۇزىكا گۈزەل لايىھىلەش ۋە ئاددىي ئىقتىدارغا ئىگە يەرلىك مۇزىكا قويغۇچ. + Music مۇزىكا + Unknown album نامەلۇم ئالبۇم + Unknown artist نامەلۇم سەنئەتچى @@ -729,14 +903,17 @@ SearchResultDialog + Songs ناخشىلار + Artists ئارتىسلار + Albums ئالبۇملار @@ -744,34 +921,42 @@ SearchResultWindow + No search results ھېچقانداق ئىزدەش نەتىجىسى تىپىلمىدى + Search Results ئىزدەش نەتىجىسى + %1 albums - %2 songs %1 پىلاستىنكا -%2 ناخشا + 1 album - 1 song 1 پىلاستىنكا - 1 ناخشا + %1 album - %2 songs %1 پىلاستىنكا -%2 ناخشا + Music مۇزىكا + Artist سەنئەتكار + Album پىلاستىنكا @@ -779,157 +964,195 @@ SettingsDialog + Basic ئاساسىي ئۇچۇر + Play قويۇش + Autoplay ئاپتۇماتىك قويۇش + Remember playback position on exit - + + Enable fade in/out ئاقما ئېقىم قوزغۇتۇش + Close Main Window نۆۋەتتىكى كۆزنەكنى تاقاش + Minimize to system tray سىستېما تەخسىگە كىچىكلىتىش + Exit چېكىنىش + Ask me always دائىم جەزملەشتۈرسۇن + Shortcuts تىزلەتمە كۇنۇپكىلار + Play/Pause قويۇش\توختۇتۇش + Previous ئالدىنقى + Next كېيىنكى + Volume up يۇقىرى ئاۋاز + Volume down تۆۋەن ئاۋاز + Favorite ياقتۇرغانلىرىم + Cancel بىكار قىلىش + Replace ئالماشتۇرۇش + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play قويۇش + Songs ناخشىلار + Playlists قويۇش تىزىملىكى + Settings تەڭشەك + Play/Pause قويۇش\توختۇتۇش + Previous ئالدىنقى + Next كېيىنكى + Volume Up يۇقىرى ئاۋاز + Volume Down تۆۋەن ئاۋاز + Mute ئاۋازسىز + Favorite ياقتۇرغانلىرىم + Unfavorite ياقتۇرمىغانلار + Song info ناخشا ئۇچۇرى + New playlist يېڭى تىزىملىك قۇرۇش + Add music مۇزىكا قوشۇش + Rename playlist قويۇش تىزىملىكىنىڭ نامىنى ئۆزگەرتىش + Remove from playlist قويۇش تىزىملىكىدىن ئۆچۈرۈڭ + Help ياردەم + Display shortcuts تېزلەتمە كۆرسىتىش @@ -937,10 +1160,12 @@ Shortcuts + New playlist يېڭى تىزىملىك قۇرۇش + My Favorites ياقتۇرغانلىرىم @@ -948,18 +1173,22 @@ SidebarMenu + Play قويۇش + Add songs - + + Rename قايتا ئىسىم قويۇش + Delete ئۆچۈرۈش @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD ناخشا تىزىملىكى + Custom بەلگىلەش + + + Date added - + + + Album پىلاستىنكا + + Artist سەنئەتكار + Title تېما @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 ناخشا + %1 songs %1 ناخشا + Play All ھەممىسىنى قويۇش @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All ھەممىسىنى قويۇش @@ -1016,50 +1259,62 @@ Toolbar + Sequential play - + + List loop تىزىملىك ھالقىسى + Single loop يەككە ھالقا + Shuffle ئۆزگەرتىش + Unfavorite ياقتۇرمىغانلار + Favorite ياقتۇرغانلىرىم + My Favorites ياقتۇرغانلىرىم + Previous ئالدىنقى + Play/Pause قويۇش\توختۇتۇش + Next كېيىنكى + Lyrics ناخشا تېكىستى + Play Queue قويۇش تەرتىپى @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist قويۇش تىزىملىكىگە قوشۇش + New playlist يېڭى تىزىملىك قۇرۇش + + Add music مۇزىكا قوشۇش + Equalizer مۇۋازىنېتور + Settings تەڭشەك + Music مۇزىكا + Music is a local music player with beautiful design and simple functions. مۇزىكا گۈزەل لايىھىلەش ۋە ئاددىي ئىقتىدارغا ئىگە يەرلىك مۇزىكا قويغۇچ. + Version: نەشر نومۇرى: - Quit - - - + Previous page - + + Next page - + + Search ئىزدەش - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_uk.ts b/translations/deepin-music_uk.ts index 683ec7048..c8ce2caec 100644 --- a/translations/deepin-music_uk.ts +++ b/translations/deepin-music_uk.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs Додати композиції + Open Folders Відкрити теки + Drag music files here or Перетягніть сюди музичні файли або - scan the Music directory - виконайте сканування каталогу «Музика» + + scan the Music directory + сканувати каталог «Музика» AlbumGridDelegate + 1 song 1 піісня + %1 songs %1 пісні @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1 @@ -39,18 +48,22 @@ AlbumListView + Album Альбом + Artist Виконавець + Tracks Доріжки + Date added Дата додавання @@ -58,14 +71,17 @@ AlbumMoreMenu + View details Переглянути параметри + Play all Відтворити усе + Add to Додати @@ -73,14 +89,17 @@ AlbumSublist + Title Назва + Artist Виконавець + Duration Тривалість @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites Мої улюблені @@ -95,14 +115,17 @@ AlbumSublistView + Title Назва + Artist Виконавець + Duration Тривалість @@ -110,10 +133,12 @@ AlbumView + Albums Альбоми + %1 albums - %2 songs %1 альбомів — %2 композицій @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs Додати композиції + Open Folders Відкрити теки + Drag music files here or Перетягніть сюди музичні файли або - Your favorite songs will be displayed here. - Тут буде показано ваші улюблені композиції. + + Your favorite songs will be displayed here + + + + + Click “ + - Click“ ♥ ”to add a song to My Favorites - Натисніть « ♥ », щоб додати композицію до улюблених + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - Ще немає жодної композиції. Натисніть « ➕ », щоб додати композиції до списку відтворення. + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory сканувати каталог «Музика» @@ -152,14 +194,17 @@ AllMusicList + All Songs Усі композиції + 1 song 1 піісня + %1 songs %1 пісні @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites Мої улюблені @@ -174,18 +220,22 @@ AllMusicListView + Title Назва + Artist Виконавець + Album Альбом + Duration Тривалість @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs Додати композиції + Open Folders Відкрити теки + Drag music files here or Перетягніть сюди музичні файли або - scan the Music directory - виконайте сканування каталогу «Музика» + + scan the Music directory + сканувати каталог «Музика» ArtistGridDelegate + 1 song 1 піісня + %1 songs %1 пісні @@ -223,14 +279,17 @@ ArtistMoreMenu + View details Переглянути параметри + Play all Відтворити усе + Add to Додати @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites Мої улюблені @@ -245,14 +305,17 @@ ArtistSublistView + Title Назва + Album Альбом + Duration Тривалість @@ -260,10 +323,12 @@ ArtistView + Artists Виконавці + %1 artists - %2 songs %1 виконавців — %2 композицій @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed КД було вилучено + Cancel Скасувати @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action Будь ласка, виберіть дію + Minimize to system tray Згорнути до лотка + Exit Вихід + Do not ask again Не запитуй знову + Cancel Скасувати + Confirm Підтвердити @@ -309,18 +382,22 @@ CurrentPlayList + Play queue Відтворити чергу + 1 song 1 піісня + %1 songs %1 пісні + Empty Пусто @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites Мої улюблені @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites Мої улюблені + CD playlist Список відтворення КД + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? Ви впевнені, що хочете видалити %1? + Are you sure you want to delete the selected %1 songs? Ви впевнені, що хочете видалити вибрані %1 пісні? + The song files contained will also be deleted Файли пісень, які там зберігаються, також буде вилучено. + Delete Видалити + Cancel Скасувати @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? Ви впевнені, що хочете видалити %1? + Are you sure you want to remove the selected %1 songs? Ви впевнені, що хочете видалити вибрані %1 пісні? + Are you sure you want to delete this playlist? Ви впевнені, що хочете видалити цей плейлист? + Remove Видалити + Delete Видалити + Cancel Скасувати @@ -400,105 +492,138 @@ EqualizerDialog + Custom Користувацький + Monophony Монофонія + Classical Класика + Club Клубна музика + Dance Танець + Full Bass Повний бас + Full Bass and Treble Повні низькі і високі частоти + Full Treble Повна частота + Headphones Навушники + Hall Зал + Live Наживо + Party Вечірка + Pop Поп + Reggae Реґґі + Rock Рок + Ska Ска + Soft Програми + Soft Rock Софт-рок + Techno Техно + Equalizer Еквалайзер + Save Зберегти + Reset Скинути + Preamplifier Підсилювач + + FileDialog + + + All Music + + + ImportFailedDialog + Import failed, no valid music file found Не вдалося імпортувати. Не знайдено коректного файла звукових даних. + OK Гаразд @@ -506,18 +631,22 @@ ImportMenu + Play queue Відтворити чергу + My favorites Мої улюблені + Create new playlist Створити список відтворення + New playlist Новий плейлист @@ -525,18 +654,22 @@ LyricPage + Artist Виконавець + Album Альбом + No lyrics found Тексту не знайдено + Please put the lyric file (same name as the song) and the song file in the same folder Будь ласка, розмістіть файл тексту (із тією самою назвою, що і файл композиції) та файл композиції в одній теці @@ -544,46 +677,57 @@ MainWindow + Music Музика + Play/Pause Відтворення/Пауза + Previous Назад + Next Далі + Exit Вихід + Already added to the playlist Вже додано до списку відтворення + Added to "%1" Додано до «%1» + Removed from "My Favorites" Вилучено з улюблених + A disc is connected Диск з'єднано + My Favorites Мої улюблені + All Songs Усі композиції @@ -591,14 +735,17 @@ MulitSelectMenu + Add to Додати + Remove from playlist Видалити з плейлисту + Delete from local disk Видалити з локального диску @@ -606,30 +753,37 @@ MusicBaselistview + Library Бібліотека + Albums Альбоми + Artists Виконавці + All Songs Усі композиції + Playlists Списки відтворення + Create playlist Створити список відтворення + New playlist Новий плейлист @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites Мої улюблені @@ -644,30 +799,37 @@ MusicInfoDialog + Title Назва + Artist Виконавець + Album Альбом + Type Тип + Size Розмір + Duration Тривалість + Path Шлях @@ -675,34 +837,42 @@ MusicMoreMenu + Pause Пауза + Play Відтворити + Add to Додати + Open in file manager Відкрити у файловому менеджері + Remove from playlist Видалити з плейлисту + Delete from local disk Видалити з локального диску + Encoding Кодування + Song info Інформація про пісню @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. «Музика» — програма-програвач для музичних файлів на вашому комп'ютері. Має чудовий та зручний дизайн. + Music Музика + Unknown album Невідомий альбом + Unknown artist Невідомий виконавець @@ -729,14 +903,17 @@ SearchResultDialog + Songs Пісні + Artists Виконавці + Albums Альбоми @@ -744,34 +921,42 @@ SearchResultWindow + No search results Немає результатів пошуку + Search Results Результати пошуку + %1 albums - %2 songs %1 альбомів — %2 композицій + 1 album - 1 song 1 альбом — 1 композиція + %1 album - %2 songs %1 альбом — %2 композиції + Music Музика + Artist Виконавець + Album Альбом @@ -779,78 +964,97 @@ SettingsDialog + Basic Основний + Play Відтворити + Autoplay Автовідтворення + Remember playback position on exit Запам'ятовувати позицію відтворення при виході + Enable fade in/out Увімкнути згасання вхід/вихід + Close Main Window Закрити головне вікно + Minimize to system tray Згорнути до лотка + Exit Вихід + Ask me always Завжди питати + Shortcuts Поєднання клавіш + Play/Pause Відтворення/Пауза + Previous Назад + Next Далі + Volume up Збільшити гучність + Volume down Тихіше + Favorite Улюблені + Cancel Скасувати + Replace Замінити + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately Це скорочення конфліктує з [%1], натисніть «Замінити», щоб негайно активувати це скорочення @@ -858,78 +1062,97 @@ Shortcut + Play Відтворити + Songs Пісні + Playlists Списки відтворення + Settings Налаштування + Play/Pause Відтворення/Пауза + Previous Назад + Next Далі + Volume Up Збільшити гучність + Volume Down Зменшити гучність + Mute Вимкнути звук + Favorite Улюблені + Unfavorite Вилучити з вибраних + Song info Інформація про пісню + New playlist Новий плейлист + Add music Додати музику + Rename playlist Перейменувати список відтворення + Remove from playlist Видалити з плейлисту + Help Допомога + Display shortcuts Показати ярлики @@ -937,10 +1160,12 @@ Shortcuts + New playlist Новий плейлист + My Favorites Мої улюблені @@ -948,18 +1173,22 @@ SidebarMenu + Play Відтворити + Add songs Додати композиції + Rename Перейменувати + Delete Видалити @@ -967,26 +1196,36 @@ SortMenu + CD playlist Список відтворення КД + Custom Користувацький + + + Date added Дата додавання + + Album Альбом + + Artist Виконавець + Title Назва @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1 піісня + %1 songs %1 пісні + Play All Відтворити всі @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All Відтворити всі @@ -1016,50 +1259,62 @@ Toolbar + Sequential play Послідовне відтворення + List loop Циклічне відтворення списку + Single loop Циклічне відтворення композиції + Shuffle Перемішати + Unfavorite Вилучити з вибраних + Favorite Улюблені + My Favorites Мої улюблені + Previous Назад + Play/Pause Відтворення/Пауза + Next Далі + Lyrics Текст пісні + Play Queue Відтворити чергу @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist Додати список відтворення + New playlist Новий плейлист + + Add music Додати музику + Equalizer Еквалайзер + Settings Налаштування + Music Музика + Music is a local music player with beautiful design and simple functions. «Музика» — програма-програвач для музичних файлів на вашому комп'ютері. Має чудовий та зручний дизайн. + Version: Версія: - Quit - Вийти - - + Previous page Попередня сторінка + Next page Наступна сторінка + Search Пошук - - %1 is released under %2 - %1 випущено за умов дотримання %2 - - \ No newline at end of file + diff --git a/translations/deepin-music_ur.ts b/translations/deepin-music_ur.ts index 39f84d500..8bac19d46 100644 --- a/translations/deepin-music_ur.ts +++ b/translations/deepin-music_ur.ts @@ -1,1122 +1,1381 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + - Your favorite songs will be displayed here. - + + Click “ + - Click“ ♥ ”to add a song to My Favorites - + + ” to add a song to My Favorites + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + No songs yet. Click “ + + + ” to add songs to the playlist + + + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel - + CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit - + + Do not ask again - + + Cancel - + + Confirm - + CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty - + CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? - + + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete - + + Cancel - + DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete - + + Cancel - + EqualizerDialog + Custom - + + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft - + + Soft Rock - + + Techno - + + Equalizer - + + Save - + + Reset - + + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK - + ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music - + + Play/Pause - + + Previous - + + Next - + + Exit - + + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type - + + Size - + + Duration - + + Path - + MusicMoreMenu + Pause - + + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music - + + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results - + + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music - + + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay - + + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit - + + Ask me always - + + Shortcuts - + + Play/Pause - + + Previous - + + Next - + + Volume up - + + Volume down - + + Favorite - + + Cancel - + + Replace - + + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings - + + Play/Pause - + + Previous - + + Next - + + Volume Up - + + Volume Down - + + Mute - + + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help - + + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete - + SortMenu + CD playlist - + + Custom - + + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous - + + Play/Pause - + + Next - + + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings - + + Music - + + Music is a local music player with beautiful design and simple functions. - + + Version: - - - - Quit - + + Previous page - + + Next page - + + Search - - - - %1 is released under %2 - + - \ No newline at end of file + diff --git a/translations/deepin-music_vi.ts b/translations/deepin-music_vi.ts index 7f23556e1..db6bdfa9a 100644 --- a/translations/deepin-music_vi.ts +++ b/translations/deepin-music_vi.ts @@ -1,280 +1,347 @@ - + + + AlbumDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + AlbumGridDelegate + 1 song - + + %1 songs - + AlbumListDelegate + %1 - + AlbumListView + Album - + + Artist - + + Tracks - + + Date added - + AlbumMoreMenu + View details - + + Play all - + + Add to - + AlbumSublist + Title - + + Artist - + + Duration - + AlbumSublistDelegate + My Favorites - + AlbumSublistView + Title - + + Artist - + + Duration - + AlbumView + Albums - + + %1 albums - %2 songs - + AllMusicDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + + + + + Your favorite songs will be displayed here + + + + + Click “ + - Your favorite songs will be displayed here. - + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - + + ” to add songs to the playlist + + scan the Music directory - + AllMusicList + All Songs - + + 1 song - + + %1 songs - + AllMusicListDelegate + My Favorites - + AllMusicListView + Title - + + Artist - + + Album - + + Duration - + ArtistDefaultPage + Add Songs - + + Open Folders - + + Drag music files here or - + - scan the Music directory - + + scan the Music directory + ArtistGridDelegate + 1 song - + + %1 songs - + ArtistMoreMenu + View details - + + Play all - + + Add to - + ArtistSublistDelegate + My Favorites - + ArtistSublistView + Title - + + Album - + + Duration - + ArtistView + Artists - + + %1 artists - %2 songs - + CDRemovedDialog + The CD has been removed - + + Cancel Hủy @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action - + + Minimize to system tray - + + Exit Thoát + Do not ask again - + + Cancel Hủy + Confirm Xác nhận @@ -309,18 +382,22 @@ CurrentPlayList + Play queue - + + 1 song - + + %1 songs - + + Empty Làm sạch @@ -328,44 +405,53 @@ CurrentPlayListDelegate + My Favorites - + CustomPlaylistModel + My Favorites - + + CD playlist - + + CD - + DeleteLocalDialog + Are you sure you want to delete %1? Bạn có chắc muốn xóa %1? + Are you sure you want to delete the selected %1 songs? - + + The song files contained will also be deleted - + + Delete Xóa + Cancel Hủy @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? - + + Are you sure you want to remove the selected %1 songs? - + + Are you sure you want to delete this playlist? - + + Remove - + + Delete Xóa + Cancel Hủy @@ -400,105 +492,138 @@ EqualizerDialog + Custom Tùy biến + Monophony - + + Classical - + + Club - + + Dance - + + Full Bass - + + Full Bass and Treble - + + Full Treble - + + Headphones - + + Hall - + + Live - + + Party - + + Pop - + + Reggae - + + Rock - + + Ska - + + Soft Mềm + Soft Rock - + + Techno - + + Equalizer - + + Save Lưu + Reset Thiết đặt lại + Preamplifier - + + + + + FileDialog + + + All Music + ImportFailedDialog + Import failed, no valid music file found - + + OK OK @@ -506,460 +631,564 @@ ImportMenu + Play queue - + + My favorites - + + Create new playlist - + + New playlist - + LyricPage + Artist - + + Album - + + No lyrics found - + + Please put the lyric file (same name as the song) and the song file in the same folder - + MainWindow + Music Âm nhạc + Play/Pause Chạy/Tạm dừng + Previous Trước + Next Kế tiếp + Exit Thoát + Already added to the playlist - + + Added to "%1" - + + Removed from "My Favorites" - + + A disc is connected - + + My Favorites - + + All Songs - + MulitSelectMenu + Add to - + + Remove from playlist - + + Delete from local disk - + MusicBaselistview + Library - + + Albums - + + Artists - + + All Songs - + + Playlists - + + Create playlist - + + New playlist - + MusicContentWindow + My Favorites - + MusicInfoDialog + Title - + + Artist - + + Album - + + Type Loại + Size Kích thước + Duration - + + Path - + MusicMoreMenu + Pause Dừng + Play - + + Add to - + + Open in file manager - + + Remove from playlist - + + Delete from local disk - + + Encoding - + + Song info - + QObject + Music is a local music player with beautiful design and simple functions. - + + Music Âm nhạc + Unknown album - + + Unknown artist - + SearchResultDialog + Songs - + + Artists - + + Albums - + SearchResultWindow + No search results Không có kết quả tìm kiếm nào + Search Results - + + %1 albums - %2 songs - + + 1 album - 1 song - + + %1 album - %2 songs - + + Music Âm nhạc + Artist - + + Album - + SettingsDialog + Basic - + + Play - + + Autoplay Tự động chơi + Remember playback position on exit - + + Enable fade in/out - + + Close Main Window - + + Minimize to system tray - + + Exit Thoát + Ask me always Luôn hỏi + Shortcuts Các Phím tắt + Play/Pause Chạy/Tạm dừng + Previous Trước + Next Kế tiếp + Volume up Tăng âm thanh + Volume down Giảm âm thanh + Favorite - + + Cancel Hủy + Replace Thay thế + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately - + Shortcut + Play - + + Songs - + + Playlists - + + Settings Cài đặt + Play/Pause Chạy/Tạm dừng + Previous Trước + Next Kế tiếp + Volume Up - + + Volume Down - + + Mute Câm + Favorite - + + Unfavorite - + + Song info - + + New playlist - + + Add music - + + Rename playlist - + + Remove from playlist - + + Help Giúp đỡ + Display shortcuts - + Shortcuts + New playlist - + + My Favorites - + SidebarMenu + Play - + + Add songs - + + Rename - + + Delete Xóa @@ -967,156 +1196,186 @@ SortMenu + CD playlist - + + Custom Tùy biến + + + Date added - + + + Album - + + + Artist - + + Title - + SublistTitleButton + 1 song - + + %1 songs - + + Play All - + ToolButtonItem + Play All - + Toolbar + Sequential play - + + List loop - + + Single loop - + + Shuffle - + + Unfavorite - + + Favorite - + + My Favorites - + + Previous Trước + Play/Pause Chạy/Tạm dừng + Next Kế tiếp + Lyrics - + + Play Queue - + WindowTitlebar + Add playlist - + + New playlist - + + + Add music - + + Equalizer - + + Settings Cài đặt + Music Âm nhạc + Music is a local music player with beautiful design and simple functions. - + + Version: Phiên bản: - Quit - Thoát - - + Previous page - + + Next page - + + Search Tìm kiếm - - %1 is released under %2 - - - \ No newline at end of file + diff --git a/translations/deepin-music_zh_CN.ts b/translations/deepin-music_zh_CN.ts index 7ef59186b..55285c50d 100644 --- a/translations/deepin-music_zh_CN.ts +++ b/translations/deepin-music_zh_CN.ts @@ -4,18 +4,22 @@ AlbumDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目录 + Drag music files here or 拖拽歌曲文件来添加歌曲 或 + scan the Music directory 扫描歌曲目录 @@ -23,10 +27,12 @@ AlbumGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -34,6 +40,7 @@ AlbumListDelegate + %1 %1首 @@ -41,18 +48,22 @@ AlbumListView + Album 专辑 + Artist 艺人 + Tracks 歌曲数 + Date added 添加日期 @@ -60,14 +71,17 @@ AlbumMoreMenu + View details 查看详情 + Play all 播放全部 + Add to 添加到 @@ -75,14 +89,17 @@ AlbumSublist + Title 歌曲名 + Artist 艺人 + Duration 时长 @@ -90,6 +107,7 @@ AlbumSublistDelegate + My Favorites 我喜欢的歌曲 @@ -97,14 +115,17 @@ AlbumSublistView + Title 歌曲名 + Artist 艺人 + Duration 时长 @@ -112,10 +133,12 @@ AlbumView + Albums 专辑 + %1 albums - %2 songs %1部专辑 - %2首歌曲 @@ -123,38 +146,47 @@ AllMusicDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目录 + Drag music files here or 拖拽歌曲文件来添加歌曲 或 + scan the Music directory 扫描歌曲目录 + Your favorite songs will be displayed here 您喜欢的歌曲会显示在这里 + Click “ 点击 “ + ” to add a song to My Favorites ” 添加歌曲到“我喜欢” + No songs yet. Click “ 歌单内暂无歌曲,点击 “ + ” to add songs to the playlist ” 将歌曲添加到歌单 @@ -162,14 +194,17 @@ AllMusicList + All Songs 所有歌曲 + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -177,6 +212,7 @@ AllMusicListDelegate + My Favorites 我喜欢的歌曲 @@ -184,18 +220,22 @@ AllMusicListView + Title 歌曲名 + Artist 艺人 + Album 专辑 + Duration 时长 @@ -203,18 +243,22 @@ ArtistDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目录 + Drag music files here or 拖拽歌曲文件来添加歌曲 或 + scan the Music directory 扫描歌曲目录 @@ -222,10 +266,12 @@ ArtistGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -233,14 +279,17 @@ ArtistMoreMenu + View details 查看详情 + Play all 播放全部 + Add to 添加到 @@ -248,6 +297,7 @@ ArtistSublistDelegate + My Favorites 我喜欢的歌曲 @@ -255,14 +305,17 @@ ArtistSublistView + Title 歌曲名 + Album 专辑 + Duration 时长 @@ -270,10 +323,12 @@ ArtistView + Artists 艺人 + %1 artists - %2 songs %1位艺人 - %2首歌曲 @@ -281,10 +336,12 @@ CDRemovedDialog + The CD has been removed 检测到您的CD已退出 + Cancel 取消 @@ -292,26 +349,32 @@ CloseConfirmDialog + Please choose your action 请选择您的操作 + Minimize to system tray 最小化到系统托盘 + Exit 退出 + Do not ask again 不再询问 + Cancel 取消 + Confirm 确定 @@ -319,18 +382,22 @@ CurrentPlayList + Play queue 播放列表 + 1 song 1首歌曲 + %1 songs %1首歌曲 + Empty 清空 @@ -338,6 +405,7 @@ CurrentPlayListDelegate + My Favorites 我喜欢的歌曲 @@ -345,14 +413,17 @@ CustomPlaylistModel + My Favorites 我喜欢的歌曲 + CD playlist CD歌单 + CD CD @@ -360,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? 您确定要删除 %1 吗? + Are you sure you want to delete the selected %1 songs? 您确定要删除选中的%1首歌曲吗? + The song files contained will also be deleted 这些歌曲所包含的歌曲文件也将被删除 + Delete 删除 + Cancel 取消 @@ -383,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? 您确定要移除%1吗? + Are you sure you want to remove the selected %1 songs? 您确定要移除选中的%1首歌曲吗? + Are you sure you want to delete this playlist? 您确定要删除此歌单吗? + Remove 移除 + Delete 删除 + Cancel 取消 @@ -410,105 +492,138 @@ EqualizerDialog + Custom 自定义 + Monophony 单调 + Classical 古典 + Club 俱乐部 + Dance 舞曲 + Full Bass 全低音 + Full Bass and Treble 全低音和高音 + Full Treble 全高音 + Headphones 耳机 + Hall 大厅 + Live 实况 + Party 聚会 + Pop 流行 + Reggae 雷鬼 + Rock 摇滚 + Ska 斯卡 + Soft 柔和 + Soft Rock 慢摇 + Techno 电子乐 + Equalizer 均衡器 + Save 保存 + Reset 重 置 + Preamplifier 前置放大 + + FileDialog + + + All Music + 所有音乐 + + ImportFailedDialog + Import failed, no valid music file found 导入失败,未找到有效的音乐文件 + OK 确定 @@ -516,18 +631,22 @@ ImportMenu + Play queue 播放列表 + My favorites 我喜欢的歌曲 + Create new playlist 创建新歌单 + New playlist 新建歌单 @@ -535,18 +654,22 @@ LyricPage + Artist 艺人 + Album 专辑 + No lyrics found 该歌曲暂无歌词 + Please put the lyric file (same name as the song) and the song file in the same folder 请将同名的LRC文件放到歌曲文件目录下 @@ -554,46 +677,57 @@ MainWindow + Music 音乐 + Play/Pause 播放/暂停 + Previous 上一曲 + Next 下一曲 + Exit 退出 + Already added to the playlist 已添加此音乐 + Added to "%1" 已添加到“%1” + Removed from "My Favorites" 歌曲已取消喜欢 + A disc is connected 检测到有CD接入 + My Favorites 我喜欢的歌曲 + All Songs 所有歌曲 @@ -601,14 +735,17 @@ MulitSelectMenu + Add to 添加到 + Remove from playlist 从歌单中删除 + Delete from local disk 从本地删除 @@ -616,30 +753,37 @@ MusicBaselistview + Library 资料库 + Albums 专辑 + Artists 艺人 + All Songs 所有歌曲 + Playlists 歌单 + Create playlist 创建歌单 + New playlist 新建歌单 @@ -647,6 +791,7 @@ MusicContentWindow + My Favorites 我喜欢的歌曲 @@ -654,30 +799,37 @@ MusicInfoDialog + Title 歌曲名 + Artist 艺人 + Album 专辑 + Type 文件类型 + Size 大小 + Duration 时长 + Path 保存路径 @@ -685,34 +837,42 @@ MusicMoreMenu + Pause 暂停 + Play 播放 + Add to 添加到 + Open in file manager 在文件管理器中打开 + Remove from playlist 从歌单中删除 + Delete from local disk 从本地删除 + Encoding 编码 + Song info 歌曲信息 @@ -720,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. 音乐是一款设计美观,功能简洁的本地音乐播放器。 + Music 音乐 + Unknown album 未知专辑 + Unknown artist 未知艺人 @@ -739,14 +903,17 @@ SearchResultDialog + Songs 歌曲 + Artists 艺人 + Albums 专辑 @@ -754,34 +921,42 @@ SearchResultWindow + No search results 无搜索结果 + Search Results 搜索结果 + %1 albums - %2 songs %1部专辑 - %2首歌曲 + 1 album - 1 song 1部专辑 - 1首歌曲 + %1 album - %2 songs %1部专辑 - %2首歌曲 + Music 音乐 + Artist 艺人 + Album 专辑 @@ -789,78 +964,97 @@ SettingsDialog + Basic 基础设置 + Play 播放 + Autoplay 启动时自动播放 + Remember playback position on exit 退出时记住上次播放进度 + Enable fade in/out 开启淡入淡出 + Close Main Window 关闭主窗口 + Minimize to system tray 最小化到系统托盘 + Exit 退出 + Ask me always 总是询问 + Shortcuts 快捷键 + Play/Pause 播放/暂停 + Previous 上一曲 + Next 下一曲 + Volume up 音量增大 + Volume down 音量减小 + Favorite 喜欢歌曲 + Cancel 取消 + Replace 替换 + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately 此快捷键与 [%1] 冲突,点击替换使这个快捷键立即生效 @@ -868,78 +1062,97 @@ Shortcut + Play 播放 + Songs 歌曲 + Playlists 歌单 + Settings 设置 + Play/Pause 播放/暂停 + Previous 上一曲 + Next 下一曲 + Volume Up 音量增大 + Volume Down 音量减小 + Mute 静音 + Favorite 喜欢 + Unfavorite 取消喜欢 + Song info 歌曲信息 + New playlist 新建歌单 + Add music 添加歌曲 + Rename playlist 重命名歌单 + Remove from playlist 从歌单中删除 + Help 帮助 + Display shortcuts 显示快捷键 @@ -947,10 +1160,12 @@ Shortcuts + New playlist 新建歌单 + My Favorites 我喜欢的歌曲 @@ -958,18 +1173,22 @@ SidebarMenu + Play 播放 + Add songs 添加歌曲 + Rename 重命名 + Delete 删除 @@ -977,26 +1196,36 @@ SortMenu + CD playlist CD歌单 + Custom 自定义 + + + Date added 添加日期 + + Album 专辑 + + Artist 艺人 + Title 歌曲名 @@ -1004,14 +1233,17 @@ SublistTitleButton + 1 song 1首歌曲 + %1 songs %1首歌曲 + Play All 播放全部 @@ -1019,6 +1251,7 @@ ToolButtonItem + Play All 播放全部 @@ -1026,50 +1259,62 @@ Toolbar + Sequential play 顺序播放 + List loop 列表循环 + Single loop 单曲循环 + Shuffle 随机播放 + Unfavorite 取消喜欢 + Favorite 喜欢 + My Favorites 我喜欢的歌曲 + Previous 上一曲 + Play/Pause 播放/暂停 + Next 下一曲 + Lyrics 歌词 + Play Queue 播放列表 @@ -1077,56 +1322,60 @@ WindowTitlebar + Add playlist 创建歌单 + New playlist 新建歌单 + + Add music 添加歌曲 + Equalizer 均衡器 + Settings 设置 + Music 音乐 + Music is a local music player with beautiful design and simple functions. 音乐是一款设计美观,功能简洁的本地音乐播放器。 + Version: 版本号: - Quit - 退出 - - + Previous page 上一页 + Next page 下一页 + Search 搜索 - - %1 is released under %2 - %1在%2许可下发布 - diff --git a/translations/deepin-music_zh_HK.ts b/translations/deepin-music_zh_HK.ts index bc8706978..37582dd85 100644 --- a/translations/deepin-music_zh_HK.ts +++ b/translations/deepin-music_zh_HK.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖拽歌曲文件來添加歌曲 或 - scan the Music directory - 掃描歌曲目錄 + + scan the Music directory + 扫描歌曲目录 AlbumGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1首 @@ -39,18 +48,22 @@ AlbumListView + Album 專輯 + Artist 藝人 + Tracks 歌曲數 + Date added 添加日期 @@ -58,14 +71,17 @@ AlbumMoreMenu + View details 查看詳情 + Play all 播放全部 + Add to 添加到 @@ -73,14 +89,17 @@ AlbumSublist + Title 歌曲名 + Artist 藝人 + Duration 時長 @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites 我喜歡的歌曲 @@ -95,14 +115,17 @@ AlbumSublistView + Title 歌曲名 + Artist 藝人 + Duration 時長 @@ -110,10 +133,12 @@ AlbumView + Albums 專輯 + %1 albums - %2 songs %1部專輯 - %2首歌曲 @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖拽歌曲文件來添加歌曲 或 - Your favorite songs will be displayed here. - 您喜歡的歌曲會顯示在這裏 + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - 點擊“♥”添加歌曲到“我喜歡” + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - 歌單內暫無歌曲,點擊“➕”圖標將歌曲添加到歌單 + + ” to add songs to the playlist + + scan the Music directory 扫描歌曲目录 @@ -152,14 +194,17 @@ AllMusicList + All Songs 所有歌曲 + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites 我喜歡的歌曲 @@ -174,18 +220,22 @@ AllMusicListView + Title 歌曲名 + Artist 藝人 + Album 專輯 + Duration 時長 @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖拽歌曲文件來添加歌曲 或 - scan the Music directory - 掃描歌曲目錄 + + scan the Music directory + 扫描歌曲目录 ArtistGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -223,14 +279,17 @@ ArtistMoreMenu + View details 查看詳情 + Play all 播放全部 + Add to 添加到 @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites 我喜歡的歌曲 @@ -245,14 +305,17 @@ ArtistSublistView + Title 歌曲名 + Album 專輯 + Duration 時長 @@ -260,10 +323,12 @@ ArtistView + Artists 藝人 + %1 artists - %2 songs %1位藝人 - %2首歌曲 @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed 檢測到您的CD已退出 + Cancel 取消 @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action 請選擇您的操作 + Minimize to system tray 最小化到系統托盤 + Exit 退出 + Do not ask again 不再詢問 + Cancel 取消 + Confirm 確定 @@ -309,18 +382,22 @@ CurrentPlayList + Play queue 播放隊列 + 1 song 1首歌曲 + %1 songs %1首歌曲 + Empty 清空 @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites 我喜歡的歌曲 @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites 我喜歡的歌曲 + CD playlist CD歌單 + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? 您確定要刪除 %1 嗎? + Are you sure you want to delete the selected %1 songs? 您確定要刪除選中的%1首歌曲嗎? + The song files contained will also be deleted 這些歌曲所包含的歌曲文件也將被刪除 + Delete 刪除 + Cancel 取消 @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? 您確定要移除%1嗎? + Are you sure you want to remove the selected %1 songs? 您確定要移除選中的%1首歌曲嗎? + Are you sure you want to delete this playlist? 您確定要刪除此歌單嗎? + Remove 移除 + Delete 刪除 + Cancel 取消 @@ -400,105 +492,138 @@ EqualizerDialog + Custom 自定義 + Monophony 單調 + Classical 古典 + Club 俱樂部 + Dance 舞曲 + Full Bass 全低音 + Full Bass and Treble 全低音和高音 + Full Treble 全高音 + Headphones 耳機 + Hall 大廳 + Live 實況 + Party 聚會 + Pop 流行 + Reggae 雷鬼 + Rock 搖滾 + Ska 斯卡 + Soft 柔和 + Soft Rock 慢搖 + Techno 電子樂 + Equalizer 均衡器 + Save 保存 + Reset 重 置 + Preamplifier 前置放大 + + FileDialog + + + All Music + 所有音樂 + + ImportFailedDialog + Import failed, no valid music file found 導入失敗,未找到有效的音樂文件 + OK 確定 @@ -506,18 +631,22 @@ ImportMenu + Play queue 播放隊列 + My favorites 我喜歡的歌曲 + Create new playlist 創建新歌單 + New playlist 新建歌單 @@ -525,18 +654,22 @@ LyricPage + Artist 藝人 + Album 專輯 + No lyrics found 該歌曲暫無歌詞 + Please put the lyric file (same name as the song) and the song file in the same folder 請將同名的LRC文件放到歌曲文件目錄下 @@ -544,46 +677,57 @@ MainWindow + Music 音樂 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Exit 退出 + Already added to the playlist 已添加此音樂 + Added to "%1" 已添加到“%1” + Removed from "My Favorites" 歌曲已取消喜歡 + A disc is connected 檢測到有CD接入 + My Favorites 我喜歡的歌曲 + All Songs 所有歌曲 @@ -591,14 +735,17 @@ MulitSelectMenu + Add to 添加到 + Remove from playlist 從歌單中刪除 + Delete from local disk 從本地刪除 @@ -606,30 +753,37 @@ MusicBaselistview + Library 資料庫 + Albums 專輯 + Artists 藝人 + All Songs 所有歌曲 + Playlists 歌單 + Create playlist 創建歌單 + New playlist 新建歌單 @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites 我喜歡的歌曲 @@ -644,30 +799,37 @@ MusicInfoDialog + Title 歌曲名 + Artist 藝人 + Album 專輯 + Type 文件類型 + Size 大小 + Duration 時長 + Path 保存路徑 @@ -675,34 +837,42 @@ MusicMoreMenu + Pause 暫停 + Play 播放 + Add to 添加到 + Open in file manager 在文件管理器中打開 + Remove from playlist 從歌單中刪除 + Delete from local disk 從本地刪除 + Encoding 編碼 + Song info 歌曲訊息 @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. 音樂是一款設計美觀,功能簡潔的本地音樂播放器。 + Music 音樂 + Unknown album 未知專輯 + Unknown artist 未知藝人 @@ -729,14 +903,17 @@ SearchResultDialog + Songs 歌曲 + Artists 藝人 + Albums 專輯 @@ -744,34 +921,42 @@ SearchResultWindow + No search results 無搜索結果 + Search Results 搜索結果 + %1 albums - %2 songs %1部專輯 - %2首歌曲 + 1 album - 1 song 1部專輯 - 1首歌曲 + %1 album - %2 songs %1部專輯 - %2首歌曲 + Music 音樂 + Artist 藝人 + Album 專輯 @@ -779,78 +964,97 @@ SettingsDialog + Basic 基礎設置 + Play 播放 + Autoplay 啟動時自動播放 + Remember playback position on exit 退出時記住上次播放進度 + Enable fade in/out 開啟淡入淡出 + Close Main Window 關閉主窗口 + Minimize to system tray 最小化到系統托盤 + Exit 退出 + Ask me always 總是詢問 + Shortcuts 快捷鍵 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Volume up 音量增大 + Volume down 音量減小 + Favorite 收藏 + Cancel 取 消 + Replace 替 換 + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately 此快捷鍵與[%1]衝突,點擊替換使這個快捷鍵立即生效 @@ -858,78 +1062,97 @@ Shortcut + Play 播放 + Songs 歌曲 + Playlists 歌單 + Settings 設置 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Volume Up 音量增大 + Volume Down 音量減小 + Mute 靜音 + Favorite 收藏 + Unfavorite 取消收藏 + Song info 歌曲訊息 + New playlist 新建歌單 + Add music 添加音樂 + Rename playlist 重命名歌單 + Remove from playlist 從歌單中刪除 + Help 幫助 + Display shortcuts 顯示快捷鍵 @@ -937,10 +1160,12 @@ Shortcuts + New playlist 新建歌單 + My Favorites 我喜歡的歌曲 @@ -948,18 +1173,22 @@ SidebarMenu + Play 播放 + Add songs 添加歌曲 + Rename 重命名 + Delete 刪除 @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD歌單 + Custom 自定義 + + + Date added 添加日期 + + Album 專輯 + + Artist 藝人 + Title 歌曲名 @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1首歌曲 + %1 songs %1首歌曲 + Play All 播放全部 @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All 播放全部 @@ -1016,50 +1259,62 @@ Toolbar + Sequential play 順序播放 + List loop 列表循環 + Single loop 單曲循環 + Shuffle 隨機播放 + Unfavorite 取消收藏 + Favorite 收藏 + My Favorites 我喜歡的歌曲 + Previous 上一曲 + Play/Pause 播放/暫停 + Next 下一曲 + Lyrics 歌詞 + Play Queue 播放隊列 @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist 添加新歌單 + New playlist 新建歌單 + + Add music 添加音樂 + Equalizer 均衡器 + Settings 設置 + Music 音樂 + Music is a local music player with beautiful design and simple functions. 音樂是一款設計美觀,功能簡潔的本地音樂播放器。 + Version: 版本號: - Quit - 退出 - - + Previous page 上一頁 + Next page 下一曲 + Search 搜索 - - %1 is released under %2 - %1遵循%2協議發布 - - \ No newline at end of file + diff --git a/translations/deepin-music_zh_TW.ts b/translations/deepin-music_zh_TW.ts index e4ceafe80..219747665 100644 --- a/translations/deepin-music_zh_TW.ts +++ b/translations/deepin-music_zh_TW.ts @@ -1,30 +1,38 @@ - + + + AlbumDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖曳歌曲文件來添加歌曲 或 - scan the Music directory - 掃描歌曲目錄 + + scan the Music directory + 掃描歌曲目錄 AlbumGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -32,6 +40,7 @@ AlbumListDelegate + %1 %1首 @@ -39,18 +48,22 @@ AlbumListView + Album 專輯 + Artist 藝人 + Tracks 歌曲數 + Date added 添加日期 @@ -58,14 +71,17 @@ AlbumMoreMenu + View details 查看詳情 + Play all 播放全部 + Add to 添加到 @@ -73,14 +89,17 @@ AlbumSublist + Title 歌曲名 + Artist 藝人 + Duration 時長 @@ -88,6 +107,7 @@ AlbumSublistDelegate + My Favorites 我喜歡的歌曲 @@ -95,14 +115,17 @@ AlbumSublistView + Title 歌曲名 + Artist 藝人 + Duration 時長 @@ -110,10 +133,12 @@ AlbumView + Albums 專輯 + %1 albums - %2 songs %1部專輯 - %2首歌曲 @@ -121,30 +146,47 @@ AllMusicDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖曳歌曲文件來添加歌曲 或 - Your favorite songs will be displayed here. - 您喜歡的歌曲會顯示在這裡 + + Your favorite songs will be displayed here + + + + + Click “ + + + + + ” to add a song to My Favorites + - Click“ ♥ ”to add a song to My Favorites - 點擊“♥”添加歌曲到“我喜歡” + + No songs yet. Click “ + - No songs yet. Click“ ➕ ”to add songs to the playlist. - 歌單內暫無歌曲,點擊“➕”圖示將歌曲添加到歌單 + + ” to add songs to the playlist + + scan the Music directory 掃描歌曲目錄 @@ -152,14 +194,17 @@ AllMusicList + All Songs 所有歌曲 + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -167,6 +212,7 @@ AllMusicListDelegate + My Favorites 我喜歡的歌曲 @@ -174,18 +220,22 @@ AllMusicListView + Title 歌曲名 + Artist 藝人 + Album 專輯 + Duration 時長 @@ -193,29 +243,35 @@ ArtistDefaultPage + Add Songs 添加歌曲 + Open Folders 添加歌曲目錄 + Drag music files here or 拖曳歌曲文件來添加歌曲 或 - scan the Music directory - 掃描歌曲目錄 + + scan the Music directory + 掃描歌曲目錄 ArtistGridDelegate + 1 song 1首歌曲 + %1 songs %1首歌曲 @@ -223,14 +279,17 @@ ArtistMoreMenu + View details 查看詳情 + Play all 播放全部 + Add to 添加到 @@ -238,6 +297,7 @@ ArtistSublistDelegate + My Favorites 我喜歡的歌曲 @@ -245,14 +305,17 @@ ArtistSublistView + Title 歌曲名 + Album 專輯 + Duration 時長 @@ -260,10 +323,12 @@ ArtistView + Artists 藝人 + %1 artists - %2 songs %1位藝人 - %2首歌曲 @@ -271,10 +336,12 @@ CDRemovedDialog + The CD has been removed 檢測到您的CD已退出 + Cancel 取消 @@ -282,26 +349,32 @@ CloseConfirmDialog + Please choose your action 請選擇您的操作 + Minimize to system tray 最小化到系統工具列 + Exit 退出 + Do not ask again 不再詢問 + Cancel 取消 + Confirm 確定 @@ -309,18 +382,22 @@ CurrentPlayList + Play queue 播放佇列 + 1 song 1首歌曲 + %1 songs %1首歌曲 + Empty 清空 @@ -328,6 +405,7 @@ CurrentPlayListDelegate + My Favorites 我喜歡的歌曲 @@ -335,14 +413,17 @@ CustomPlaylistModel + My Favorites 我喜歡的歌曲 + CD playlist CD歌單 + CD CD @@ -350,22 +431,27 @@ DeleteLocalDialog + Are you sure you want to delete %1? 您確定要刪除 %1 嗎? + Are you sure you want to delete the selected %1 songs? 您確定要刪除選中的%1首歌曲嗎? + The song files contained will also be deleted 這些歌曲所包含的歌曲文件也將被刪除 + Delete 刪除 + Cancel 取消 @@ -373,26 +459,32 @@ DeleteSonglistDialog + Are you sure you want to remove %1? 您確定要移除%1嗎? + Are you sure you want to remove the selected %1 songs? 您確定要移除選中的%1首歌曲嗎? + Are you sure you want to delete this playlist? 您確定要刪除此歌單嗎? + Remove 移除 + Delete 刪除 + Cancel 取消 @@ -400,105 +492,138 @@ EqualizerDialog + Custom 自訂 + Monophony 單調 + Classical 古典 + Club 俱樂部 + Dance 舞曲 + Full Bass 全低音 + Full Bass and Treble 全低音和高音 + Full Treble 全高音 + Headphones 耳機 + Hall 大廳 + Live 實況 + Party 聚會 + Pop 流行 + Reggae 雷鬼 + Rock 搖滾 + Ska 斯卡 + Soft 柔和 + Soft Rock 慢搖 + Techno 電子樂 + Equalizer 均衡器 + Save 儲存 + Reset 重 置 + Preamplifier 前置放大 + + FileDialog + + + All Music + 所有音乐 + + ImportFailedDialog + Import failed, no valid music file found 匯入失敗,未找到有效的音樂文件 + OK 確定 @@ -506,18 +631,22 @@ ImportMenu + Play queue 播放佇列 + My favorites 我喜歡的歌曲 + Create new playlist 建立新歌單 + New playlist 建立歌單 @@ -525,18 +654,22 @@ LyricPage + Artist 藝人 + Album 專輯 + No lyrics found 該歌曲暫無歌詞 + Please put the lyric file (same name as the song) and the song file in the same folder 請將同名的LRC文件放到歌曲文件目錄下 @@ -544,46 +677,57 @@ MainWindow + Music 音樂 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Exit 退出 + Already added to the playlist 已添加此音樂 + Added to "%1" 已添加到“%1” + Removed from "My Favorites" 歌曲已取消喜歡 + A disc is connected 檢測到有CD接入 + My Favorites 我喜歡的歌曲 + All Songs 所有歌曲 @@ -591,14 +735,17 @@ MulitSelectMenu + Add to 添加到 + Remove from playlist 從歌單中刪除 + Delete from local disk 從本機刪除 @@ -606,30 +753,37 @@ MusicBaselistview + Library 資料庫 + Albums 專輯 + Artists 藝人 + All Songs 所有歌曲 + Playlists 歌單 + Create playlist 建立歌單 + New playlist 建立歌單 @@ -637,6 +791,7 @@ MusicContentWindow + My Favorites 我喜歡的歌曲 @@ -644,30 +799,37 @@ MusicInfoDialog + Title 歌曲名 + Artist 藝人 + Album 專輯 + Type 文件類型 + Size 大小 + Duration 時長 + Path 儲存路徑 @@ -675,34 +837,42 @@ MusicMoreMenu + Pause 暫停 + Play 播放 + Add to 添加到 + Open in file manager 在檔案管理器中打開 + Remove from playlist 從歌單中刪除 + Delete from local disk 從本機刪除 + Encoding 編碼 + Song info 歌曲訊息 @@ -710,18 +880,22 @@ QObject + Music is a local music player with beautiful design and simple functions. 音樂是一款設計美觀,功能簡潔的本機音樂播放器。 + Music 音樂 + Unknown album 未知專輯 + Unknown artist 未知藝人 @@ -729,14 +903,17 @@ SearchResultDialog + Songs 歌曲 + Artists 藝人 + Albums 專輯 @@ -744,34 +921,42 @@ SearchResultWindow + No search results 無搜尋結果 + Search Results 搜尋結果 + %1 albums - %2 songs %1部專輯 - %2首歌曲 + 1 album - 1 song 1部專輯 - 1首歌曲 + %1 album - %2 songs %1部專輯 - %2首歌曲 + Music 音樂 + Artist 藝人 + Album 專輯 @@ -779,78 +964,97 @@ SettingsDialog + Basic 基礎設定 + Play 播放 + Autoplay 啟動時自動播放 + Remember playback position on exit 退出時記住上次播放進度 + Enable fade in/out 開啟淡入淡出 + Close Main Window 關閉主視窗 + Minimize to system tray 最小化到系統工具列 + Exit 退出 + Ask me always 總是詢問 + Shortcuts 快捷鍵 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Volume up 音量增大 + Volume down 音量減小 + Favorite 收藏 + Cancel 取 消 + Replace 取 代 + This shortcut key conflicts with [%1], click Replace to make this shortcut key take effect immediately 此快捷鍵與[%1]衝突,點擊取代使這個快捷鍵立即生效 @@ -858,78 +1062,97 @@ Shortcut + Play 播放 + Songs 歌曲 + Playlists 歌單 + Settings 設定 + Play/Pause 播放/暫停 + Previous 上一曲 + Next 下一曲 + Volume Up 音量增大 + Volume Down 音量減小 + Mute 靜音 + Favorite 收藏 + Unfavorite 取消收藏 + Song info 歌曲訊息 + New playlist 建立歌單 + Add music 添加音樂 + Rename playlist 重新命名歌單 + Remove from playlist 從歌單中刪除 + Help 幫助 + Display shortcuts 顯示快捷鍵 @@ -937,10 +1160,12 @@ Shortcuts + New playlist 建立歌單 + My Favorites 我喜歡的歌曲 @@ -948,18 +1173,22 @@ SidebarMenu + Play 播放 + Add songs 添加歌曲 + Rename 重新命名 + Delete 刪除 @@ -967,26 +1196,36 @@ SortMenu + CD playlist CD歌單 + Custom 自訂 + + + Date added 添加日期 + + Album 專輯 + + Artist 藝人 + Title 歌曲名 @@ -994,14 +1233,17 @@ SublistTitleButton + 1 song 1首歌曲 + %1 songs %1首歌曲 + Play All 播放全部 @@ -1009,6 +1251,7 @@ ToolButtonItem + Play All 播放全部 @@ -1016,50 +1259,62 @@ Toolbar + Sequential play 順序播放 + List loop 列表循環 + Single loop 單曲循環 + Shuffle 隨機播放 + Unfavorite 取消收藏 + Favorite 收藏 + My Favorites 我喜歡的歌曲 + Previous 上一曲 + Play/Pause 播放/暫停 + Next 下一曲 + Lyrics 歌詞 + Play Queue 播放佇列 @@ -1067,56 +1322,60 @@ WindowTitlebar + Add playlist 添加新歌單 + New playlist 建立歌單 + + Add music 添加音樂 + Equalizer 均衡器 + Settings 設定 + Music 音樂 + Music is a local music player with beautiful design and simple functions. 音樂是一款設計美觀,功能簡潔的本機音樂播放器。 + Version: 版本號: - Quit - 退出 - - + Previous page 上一頁 + Next page 下一曲 + Search 搜尋 - - %1 is released under %2 - %1遵循%2協議發布 -