Merge lp:~vthompson/music-app/add-translator-notes into lp:music-app/remix

Proposed by Victor Thompson
Status: Merged
Approved by: Andrew Hayzen
Approved revision: 818
Merged at revision: 817
Proposed branch: lp:~vthompson/music-app/add-translator-notes
Merge into: lp:music-app/remix
Diff against target: 462 lines (+92/-71)
5 files modified
MusicNowPlaying.qml (+7/-1)
MusicaddtoPlaylist.qml (+1/-0)
common/AlbumsPage.qml (+3/-0)
common/SongsPage.qml (+3/-0)
po/com.ubuntu.music.pot (+78/-70)
To merge this branch: bzr merge lp:~vthompson/music-app/add-translator-notes
Reviewer Review Type Date Requested Status
David Planella Approve
Andrew Hayzen Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+247787@code.launchpad.net

Commit message

* Add notes to translators concerning string lengths.

Description of the change

* Add notes to translators concerning string lengths.

To post a comment you must log in.
817. By Victor Thompson

remove newline

818. By Victor Thompson

remove newline

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Andrew Hayzen (ahayzen) wrote :

LGTM :)

review: Approve
Revision history for this message
David Planella (dpm) wrote :

Looks good to me too, good work, translators will be happy :)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'MusicNowPlaying.qml'
--- MusicNowPlaying.qml 2015-01-26 03:20:37 +0000
+++ MusicNowPlaying.qml 2015-01-28 02:32:37 +0000
@@ -32,10 +32,14 @@
32 id: nowPlaying32 id: nowPlaying
33 flickable: isListView ? queueListLoader.item : null // Ensures that the header is shown in fullview33 flickable: isListView ? queueListLoader.item : null // Ensures that the header is shown in fullview
34 objectName: "nowPlayingPage"34 objectName: "nowPlayingPage"
35 title: isListView ? i18n.tr("Queue") : i18n.tr("Now playing")35 title: isListView ? queueTitle : nowPlayingTitle
36 visible: false36 visible: false
3737
38 property bool isListView: false38 property bool isListView: false
39 // TRANSLATORS: this appears in the header with limited space (around 20 characters)
40 property string nowPlayingTitle: i18n.tr("Now playing")
41 // TRANSLATORS: this appears in the header with limited space (around 20 characters)
42 property string queueTitle: i18n.tr("Queue")
3943
40 onIsListViewChanged: {44 onIsListViewChanged: {
41 if (isListView) { // When changing to the queue positionAt the currentIndex45 if (isListView) { // When changing to the queue positionAt the currentIndex
@@ -87,6 +91,7 @@
87 Action {91 Action {
88 enabled: trackQueue.model.count > 092 enabled: trackQueue.model.count > 0
89 iconName: "add-to-playlist"93 iconName: "add-to-playlist"
94 // TRANSLATORS: this action appears in the overflow drawer with limited space (around 18 characters)
90 text: i18n.tr("Add to playlist")95 text: i18n.tr("Add to playlist")
91 onTriggered: {96 onTriggered: {
92 var items = []97 var items = []
@@ -107,6 +112,7 @@
107 enabled: trackQueue.model.count > 0112 enabled: trackQueue.model.count > 0
108 iconName: "delete"113 iconName: "delete"
109 objectName: "clearQueue"114 objectName: "clearQueue"
115 // TRANSLATORS: this action appears in the overflow drawer with limited space (around 18 characters)
110 text: i18n.tr("Clear queue")116 text: i18n.tr("Clear queue")
111 onTriggered: {117 onTriggered: {
112 pageStack.pop()118 pageStack.pop()
113119
=== modified file 'MusicaddtoPlaylist.qml'
--- MusicaddtoPlaylist.qml 2015-01-25 16:44:49 +0000
+++ MusicaddtoPlaylist.qml 2015-01-28 02:32:37 +0000
@@ -39,6 +39,7 @@
39MusicPage {39MusicPage {
40 id: addToPlaylistPage40 id: addToPlaylistPage
41 objectName: "addToPlaylistPage"41 objectName: "addToPlaylistPage"
42 // TRANSLATORS: this appears in the header with limited space (around 20 characters)
42 title: i18n.tr("Select playlist")43 title: i18n.tr("Select playlist")
43 searchable: true44 searchable: true
44 searchResultsCount: addToPlaylistModelFilter.count45 searchResultsCount: addToPlaylistModelFilter.count
4546
=== modified file 'common/AlbumsPage.qml'
--- common/AlbumsPage.qml 2015-01-17 12:44:57 +0000
+++ common/AlbumsPage.qml 2015-01-28 02:32:37 +0000
@@ -60,6 +60,7 @@
60 centerIn: parent60 centerIn: parent
61 }61 }
62 color: "white"62 color: "white"
63 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
63 text: i18n.tr("Shuffle")64 text: i18n.tr("Shuffle")
64 }65 }
65 onClicked: shuffleModel(songArtistModel)66 onClicked: shuffleModel(songArtistModel)
@@ -74,6 +75,7 @@
74 centerIn: parent75 centerIn: parent
75 }76 }
76 color: "white"77 color: "white"
78 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
77 text: i18n.tr("Queue all")79 text: i18n.tr("Queue all")
78 }80 }
79 onClicked: addQueueFromModel(songArtistModel)81 onClicked: addQueueFromModel(songArtistModel)
@@ -82,6 +84,7 @@
82 id: playRow84 id: playRow
83 color: UbuntuColors.green85 color: UbuntuColors.green
84 height: units.gu(4)86 height: units.gu(4)
87 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
85 text: i18n.tr("Play all")88 text: i18n.tr("Play all")
86 width: units.gu(15)89 width: units.gu(15)
87 onClicked: trackClicked(songArtistModel, 0, true)90 onClicked: trackClicked(songArtistModel, 0, true)
8891
=== modified file 'common/SongsPage.qml'
--- common/SongsPage.qml 2015-01-26 03:20:37 +0000
+++ common/SongsPage.qml 2015-01-28 02:32:37 +0000
@@ -308,6 +308,7 @@
308 centerIn: parent308 centerIn: parent
309 }309 }
310 color: "white"310 color: "white"
311 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
311 text: i18n.tr("Shuffle")312 text: i18n.tr("Shuffle")
312 }313 }
313 onClicked: {314 onClicked: {
@@ -334,6 +335,7 @@
334 centerIn: parent335 centerIn: parent
335 }336 }
336 color: "white"337 color: "white"
338 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
337 text: i18n.tr("Queue all")339 text: i18n.tr("Queue all")
338 }340 }
339 onClicked: addQueueFromModel(albumtrackslist.model)341 onClicked: addQueueFromModel(albumtrackslist.model)
@@ -342,6 +344,7 @@
342 id: playRow344 id: playRow
343 color: UbuntuColors.green345 color: UbuntuColors.green
344 height: units.gu(4)346 height: units.gu(4)
347 // TRANSLATORS: this appears in a button with limited space (around 14 characters)
345 text: i18n.tr("Play all")348 text: i18n.tr("Play all")
346 width: units.gu(15)349 width: units.gu(15)
347 onClicked: {350 onClicked: {
348351
=== modified file 'po/com.ubuntu.music.pot'
--- po/com.ubuntu.music.pot 2015-01-21 01:16:38 +0000
+++ po/com.ubuntu.music.pot 2015-01-28 02:32:37 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: music-app\n"9"Project-Id-Version: music-app\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2015-01-21 01:16+0000\n"11"POT-Creation-Date: 2015-01-27 20:23-0600\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,18 +22,18 @@
22msgid "Albums"22msgid "Albums"
23msgstr ""23msgstr ""
2424
25#: ../MusicAlbums.qml:69 ../MusicStart.qml:78 ../common/AlbumsPage.qml:14825#: ../MusicAlbums.qml:69 ../MusicStart.qml:78 ../common/AlbumsPage.qml:152
26#: ../common/AlbumsPage.qml:162 ../common/SongsPage.qml:37326#: ../common/AlbumsPage.qml:166 ../common/SongsPage.qml:380
27msgid "Unknown Album"27msgid "Unknown Album"
28msgstr ""28msgstr ""
2929
30#: ../MusicAlbums.qml:70 ../MusicArtists.qml:77 ../MusicStart.qml:7930#: ../MusicAlbums.qml:70 ../MusicArtists.qml:77 ../MusicStart.qml:79
31#: ../common/AlbumsPage.qml:104 ../common/AlbumsPage.qml:16131#: ../common/AlbumsPage.qml:108 ../common/AlbumsPage.qml:165
32#: ../common/SongsPage.qml:39432#: ../common/SongsPage.qml:401
33msgid "Unknown Artist"33msgid "Unknown Artist"
34msgstr ""34msgstr ""
3535
36#: ../MusicAlbums.qml:81 ../MusicStart.qml:95 ../common/AlbumsPage.qml:16036#: ../MusicAlbums.qml:81 ../MusicStart.qml:95 ../common/AlbumsPage.qml:164
37msgid "Album"37msgid "Album"
38msgstr ""38msgstr ""
3939
@@ -49,56 +49,60 @@
49msgid "Genres"49msgid "Genres"
50msgstr ""50msgstr ""
5151
52#: ../MusicGenres.qml:108 ../MusicGenres.qml:110 ../common/SongsPage.qml:31252#: ../MusicGenres.qml:108 ../MusicGenres.qml:110 ../common/SongsPage.qml:317
53#: ../common/SongsPage.qml:346 ../common/SongsPage.qml:36053#: ../common/SongsPage.qml:353 ../common/SongsPage.qml:367
54#: ../common/SongsPage.qml:396 ../common/SongsPage.qml:41554#: ../common/SongsPage.qml:403 ../common/SongsPage.qml:422
55#: ../common/SongsPage.qml:44755#: ../common/SongsPage.qml:454
56msgid "Genre"56msgid "Genre"
57msgstr ""57msgstr ""
5858
59#: ../MusicNowPlaying.qml:35 ../music-app.qml:668 ../music-app.qml:70059#. TRANSLATORS: this appears in the header with limited space (around 20 characters)
60#: ../music-app.qml:1059 ../music-app.qml:1262 ../music-app.qml:127460#: ../MusicNowPlaying.qml:40 ../music-app.qml:672 ../music-app.qml:1050
61#: ../music-app.qml:130261#: ../music-app.qml:1253 ../music-app.qml:1294
62msgid "Now playing"
63msgstr ""
64
65#. TRANSLATORS: this appears in the header with limited space (around 20 characters)
66#: ../MusicNowPlaying.qml:42 ../music-app.qml:672 ../music-app.qml:704
67#: ../music-app.qml:1051 ../music-app.qml:1254 ../music-app.qml:1266
68#: ../music-app.qml:1294
62msgid "Queue"69msgid "Queue"
63msgstr ""70msgstr ""
6471
65#: ../MusicNowPlaying.qml:35 ../music-app.qml:668 ../music-app.qml:105872#. TRANSLATORS: this action appears in the overflow drawer with limited space (around 18 characters)
66#: ../music-app.qml:1261 ../music-app.qml:130273#: ../MusicNowPlaying.qml:96 ../MusicNowPlaying.qml:157 ../MusicTracks.qml:74
67msgid "Now playing"
68msgstr ""
69
70#: ../MusicNowPlaying.qml:90 ../MusicNowPlaying.qml:150 ../MusicTracks.qml:74
71#: ../common/ListItemActions/AddToPlaylist.qml:26 ../common/SongsPage.qml:16974#: ../common/ListItemActions/AddToPlaylist.qml:26 ../common/SongsPage.qml:169
72msgid "Add to playlist"75msgid "Add to playlist"
73msgstr ""76msgstr ""
7477
75#: ../MusicNowPlaying.qml:11078#. TRANSLATORS: this action appears in the overflow drawer with limited space (around 18 characters)
79#: ../MusicNowPlaying.qml:117
76msgid "Clear queue"80msgid "Clear queue"
77msgstr ""81msgstr ""
7882
79#: ../MusicNowPlaying.qml:128 ../MusicTracks.qml:5183#: ../MusicNowPlaying.qml:135 ../MusicTracks.qml:51
80#: ../common/SongsPage.qml:14784#: ../common/SongsPage.qml:147
81msgid "Cancel selection"85msgid "Cancel selection"
82msgstr ""86msgstr ""
8387
84#: ../MusicNowPlaying.qml:137 ../MusicTracks.qml:6288#: ../MusicNowPlaying.qml:144 ../MusicTracks.qml:62
85#: ../common/SongsPage.qml:15789#: ../common/SongsPage.qml:157
86msgid "Select All"90msgid "Select All"
87msgstr ""91msgstr ""
8892
89#: ../MusicNowPlaying.qml:173 ../common/SongsPage.qml:20493#: ../MusicNowPlaying.qml:180 ../common/SongsPage.qml:208
90msgid "Delete"94msgid "Delete"
91msgstr ""95msgstr ""
9296
93#. TRANSLATORS: this is the name of the playlists page shown in the tab header.97#. TRANSLATORS: this is the name of the playlists page shown in the tab header.
94#. Remember to keep the translation short to fit the screen width98#. Remember to keep the translation short to fit the screen width
95#: ../MusicPlaylists.qml:35 ../MusicaddtoPlaylist.qml:11599#: ../MusicPlaylists.qml:35 ../MusicaddtoPlaylist.qml:112
96#: ../common/SongsPage.qml:85100#: ../common/SongsPage.qml:85
97msgid "Playlists"101msgid "Playlists"
98msgstr ""102msgstr ""
99103
100#: ../MusicPlaylists.qml:97 ../MusicaddtoPlaylist.qml:105104#: ../MusicPlaylists.qml:97 ../MusicaddtoPlaylist.qml:106
101#: ../common/SongsPage.qml:416 ../common/SongsPage.qml:417105#: ../common/SongsPage.qml:423 ../common/SongsPage.qml:424
102#, qt-format106#, qt-format
103msgid "%1 song"107msgid "%1 song"
104msgid_plural "%1 songs"108msgid_plural "%1 songs"
@@ -107,14 +111,14 @@
107111
108#: ../MusicPlaylists.qml:110 ../MusicPlaylists.qml:111 ../MusicStart.qml:79112#: ../MusicPlaylists.qml:110 ../MusicPlaylists.qml:111 ../MusicStart.qml:79
109#: ../MusicStart.qml:95 ../common/SongsPage.qml:64 ../common/SongsPage.qml:105113#: ../MusicStart.qml:95 ../common/SongsPage.qml:64 ../common/SongsPage.qml:105
110#: ../common/SongsPage.qml:205 ../common/SongsPage.qml:314114#: ../common/SongsPage.qml:209 ../common/SongsPage.qml:319
111#: ../common/SongsPage.qml:348 ../common/SongsPage.qml:359115#: ../common/SongsPage.qml:355 ../common/SongsPage.qml:366
112#: ../common/SongsPage.qml:395 ../common/SongsPage.qml:431116#: ../common/SongsPage.qml:402 ../common/SongsPage.qml:438
113#: ../common/SongsPage.qml:434 ../common/SongsPage.qml:449117#: ../common/SongsPage.qml:441 ../common/SongsPage.qml:456
114msgid "Playlist"118msgid "Playlist"
115msgstr ""119msgstr ""
116120
117#: ../MusicStart.qml:34 ../MusicaddtoPlaylist.qml:123121#: ../MusicStart.qml:34 ../MusicaddtoPlaylist.qml:120
118#: ../common/SongsPage.qml:95122#: ../common/SongsPage.qml:95
119msgid "Recent"123msgid "Recent"
120msgstr ""124msgstr ""
@@ -131,23 +135,27 @@
131msgid "Add to queue"135msgid "Add to queue"
132msgstr ""136msgstr ""
133137
134#: ../MusicaddtoPlaylist.qml:42 ../music-app.qml:1414138#. TRANSLATORS: this appears in the header with limited space (around 20 characters)
139#: ../MusicaddtoPlaylist.qml:43 ../music-app.qml:1406
135msgid "Select playlist"140msgid "Select playlist"
136msgstr ""141msgstr ""
137142
138#: ../common/AlbumsPage.qml:63 ../common/SongsPage.qml:307143#. TRANSLATORS: this appears in a button with limited space (around 14 characters)
144#: ../common/AlbumsPage.qml:65 ../common/SongsPage.qml:312
139msgid "Shuffle"145msgid "Shuffle"
140msgstr ""146msgstr ""
141147
142#: ../common/AlbumsPage.qml:77 ../common/SongsPage.qml:333148#. TRANSLATORS: this appears in a button with limited space (around 14 characters)
149#: ../common/AlbumsPage.qml:80 ../common/SongsPage.qml:339
143msgid "Queue all"150msgid "Queue all"
144msgstr ""151msgstr ""
145152
146#: ../common/AlbumsPage.qml:85 ../common/SongsPage.qml:341153#. TRANSLATORS: this appears in a button with limited space (around 14 characters)
154#: ../common/AlbumsPage.qml:89 ../common/SongsPage.qml:348
147msgid "Play all"155msgid "Play all"
148msgstr ""156msgstr ""
149157
150#: ../common/AlbumsPage.qml:123158#: ../common/AlbumsPage.qml:127
151#, qt-format159#, qt-format
152msgid "%1 album"160msgid "%1 album"
153msgid_plural "%1 albums"161msgid_plural "%1 albums"
@@ -158,7 +166,7 @@
158msgid "Add to Queue"166msgid "Add to Queue"
159msgstr ""167msgstr ""
160168
161#: ../common/ListItemActions/Remove.qml:27 ../common/SongsPage.qml:586169#: ../common/ListItemActions/Remove.qml:27 ../common/SongsPage.qml:593
162msgid "Remove"170msgid "Remove"
163msgstr ""171msgstr ""
164172
@@ -175,73 +183,73 @@
175msgstr ""183msgstr ""
176184
177#. TRANSLATORS: this is a title of a dialog with a prompt to rename a playlist185#. TRANSLATORS: this is a title of a dialog with a prompt to rename a playlist
178#: ../common/SongsPage.qml:521186#: ../common/SongsPage.qml:528
179msgid "Rename playlist"187msgid "Rename playlist"
180msgstr ""188msgstr ""
181189
182#: ../common/SongsPage.qml:528 ../music-app.qml:1012190#: ../common/SongsPage.qml:535 ../music-app.qml:1004
183msgid "Enter playlist name"191msgid "Enter playlist name"
184msgstr ""192msgstr ""
185193
186#: ../common/SongsPage.qml:537194#: ../common/SongsPage.qml:544
187msgid "Change"195msgid "Change"
188msgstr ""196msgstr ""
189197
190#: ../common/SongsPage.qml:558 ../music-app.qml:1038198#: ../common/SongsPage.qml:565 ../music-app.qml:1030
191msgid "Playlist already exists"199msgid "Playlist already exists"
192msgstr ""200msgstr ""
193201
194#: ../common/SongsPage.qml:562 ../music-app.qml:1043202#: ../common/SongsPage.qml:569 ../music-app.qml:1035
195msgid "Please type in a name."203msgid "Please type in a name."
196msgstr ""204msgstr ""
197205
198#: ../common/SongsPage.qml:567 ../common/SongsPage.qml:605206#: ../common/SongsPage.qml:574 ../common/SongsPage.qml:612
199#: ../music-app.qml:485 ../music-app.qml:1049207#: ../music-app.qml:488 ../music-app.qml:1041
200msgid "Cancel"208msgid "Cancel"
201msgstr ""209msgstr ""
202210
203#. TRANSLATORS: this is a title of a dialog with a prompt to delete a playlist211#. TRANSLATORS: this is a title of a dialog with a prompt to delete a playlist
204#: ../common/SongsPage.qml:580212#: ../common/SongsPage.qml:587
205msgid "Permanently delete playlist?"213msgid "Permanently delete playlist?"
206msgstr ""214msgstr ""
207215
208#: ../common/SongsPage.qml:581216#: ../common/SongsPage.qml:588
209msgid "This cannot be undone"217msgid "This cannot be undone"
210msgstr ""218msgstr ""
211219
212#: ../common/Walkthrough/Slide1.qml:56220#: ../common/Walkthrough/Slide1.qml:57
213msgid "Welcome to Music"221msgid "Welcome to Music"
214msgstr ""222msgstr ""
215223
216#: ../common/Walkthrough/Slide1.qml:68224#: ../common/Walkthrough/Slide1.qml:70
217msgid ""225msgid ""
218"Enjoy your favorite music with Ubuntu's Music App. Take a short tour on how "226"Enjoy your favorite music with Ubuntu's Music App. Take a short tour on how "
219"to get started or press skip to start listening now."227"to get started or press skip to start listening now."
220msgstr ""228msgstr ""
221229
222#: ../common/Walkthrough/Slide2.qml:51230#: ../common/Walkthrough/Slide2.qml:52
223msgid "Import your music"231msgid "Import your music"
224msgstr ""232msgstr ""
225233
226#: ../common/Walkthrough/Slide2.qml:62 ../music-app.qml:1399234#: ../common/Walkthrough/Slide2.qml:64 ../music-app.qml:1391
227msgid ""235msgid ""
228"Connect your device to any computer and simply drag files to the Music "236"Connect your device to any computer and simply drag files to the Music "
229"folder or insert removable media with music."237"folder or insert removable media with music."
230msgstr ""238msgstr ""
231239
232#: ../common/Walkthrough/Slide3.qml:51240#: ../common/Walkthrough/Slide3.qml:52
233msgid "Download new music"241msgid "Download new music"
234msgstr ""242msgstr ""
235243
236#: ../common/Walkthrough/Slide3.qml:62244#: ../common/Walkthrough/Slide3.qml:64
237msgid "Directly import music bought while browsing online."245msgid "Directly import music bought while browsing online."
238msgstr ""246msgstr ""
239247
240#: ../common/Walkthrough/Slide3.qml:76248#: ../common/Walkthrough/Slide3.qml:78
241msgid "Start"249msgid "Start"
242msgstr ""250msgstr ""
243251
244#: ../common/Walkthrough/Walkthrough.qml:82252#: ../common/Walkthrough/Walkthrough.qml:85
245msgid "Skip"253msgid "Skip"
246msgstr ""254msgstr ""
247255
@@ -294,71 +302,71 @@
294msgstr ""302msgstr ""
295303
296#. TRANSLATORS: This string represents that the target destination filepath does not start with ~/Music/Imported/304#. TRANSLATORS: This string represents that the target destination filepath does not start with ~/Music/Imported/
297#: ../music-app.qml:328305#: ../music-app.qml:331
298msgid "Filepath must start with"306msgid "Filepath must start with"
299msgstr ""307msgstr ""
300308
301#. TRANSLATORS: This string represents that a blank filepath destination has been used309#. TRANSLATORS: This string represents that a blank filepath destination has been used
302#: ../music-app.qml:354310#: ../music-app.qml:357
303msgid "Filepath must be a file"311msgid "Filepath must be a file"
304msgstr ""312msgstr ""
305313
306#. TRANSLATORS: This string represents that there was failure moving the file to the target destination314#. TRANSLATORS: This string represents that there was failure moving the file to the target destination
307#: ../music-app.qml:360315#: ../music-app.qml:363
308msgid "Failed to move file"316msgid "Failed to move file"
309msgstr ""317msgstr ""
310318
311#: ../music-app.qml:439319#: ../music-app.qml:442
312msgid "Waiting for file(s)..."320msgid "Waiting for file(s)..."
313msgstr ""321msgstr ""
314322
315#: ../music-app.qml:458323#: ../music-app.qml:461
316msgid "OK"324msgid "OK"
317msgstr ""325msgstr ""
318326
319#: ../music-app.qml:471327#: ../music-app.qml:474
320msgid "Imported file not found"328msgid "Imported file not found"
321msgstr ""329msgstr ""
322330
323#: ../music-app.qml:475331#: ../music-app.qml:478
324msgid "Wait"332msgid "Wait"
325msgstr ""333msgstr ""
326334
327#. TRANSLATORS: this refers to a number of songs greater than one. The actual number will be prepended to the string automatically (plural forms are not yet fully supported in usermetrics, the library that displays that string)335#. TRANSLATORS: this refers to a number of songs greater than one. The actual number will be prepended to the string automatically (plural forms are not yet fully supported in usermetrics, the library that displays that string)
328#: ../music-app.qml:496336#: ../music-app.qml:499
329msgid "songs played today"337msgid "songs played today"
330msgstr ""338msgstr ""
331339
332#: ../music-app.qml:497340#: ../music-app.qml:500
333msgid "No songs played today"341msgid "No songs played today"
334msgstr ""342msgstr ""
335343
336#: ../music-app.qml:590 ../music-app.qml:1298344#: ../music-app.qml:593 ../music-app.qml:1290
337#: com.ubuntu.music_music.desktop.in.in.h:1345#: com.ubuntu.music_music.desktop.in.in.h:1
338msgid "Music"346msgid "Music"
339msgstr ""347msgstr ""
340348
341#: ../music-app.qml:609349#: ../music-app.qml:612
342msgid "Debug: "350msgid "Debug: "
343msgstr ""351msgstr ""
344352
345#: ../music-app.qml:1008353#: ../music-app.qml:1000
346msgid "New playlist"354msgid "New playlist"
347msgstr ""355msgstr ""
348356
349#: ../music-app.qml:1022357#: ../music-app.qml:1014
350msgid "Create"358msgid "Create"
351msgstr ""359msgstr ""
352360
353#: ../music-app.qml:1388361#: ../music-app.qml:1380
354msgid "No music found"362msgid "No music found"
355msgstr ""363msgstr ""
356364
357#: ../music-app.qml:1427365#: ../music-app.qml:1419
358msgid "No playlists found"366msgid "No playlists found"
359msgstr ""367msgstr ""
360368
361#: ../music-app.qml:1438369#: ../music-app.qml:1430
362#, qt-format370#, qt-format
363msgid ""371msgid ""
364"Get more out of Music by tapping the %1 icon to start making playlists for "372"Get more out of Music by tapping the %1 icon to start making playlists for "

Subscribers

People subscribed via source and target branches