~neale/mixxx/m4a

« back to all changes in this revision

Viewing changes to mixxx/src/library/playlistfeature.cpp

  • Committer: RJ Ryan
  • Date: 2012-07-20 00:31:58 UTC
  • mfrom: (3283.1.38 1.11)
  • Revision ID: rryan@mit.edu-20120720003158-9fhwnbd43xyg1woo
MergingĀ fromĀ lp:mixxx/1.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
    QString playlistsSummary2 = tr("Some DJs construct playlists before they perform live, but others prefer to build them on-the-fly.");
203
203
    QString playlistsSummary3 = tr("When using a playlist during a live DJ set, remember to always pay close attention to how your audience reacts to the music you've chosen to play.");
204
204
    QString playlistsSummary4 = tr("It may be necessary to skip some songs in your prepared playlist or add some different songs in order to maintain the energy of your audience.");
 
205
    QString createPlaylistLink = tr("Create new playlist");
205
206
 
206
207
    QString html;
207
208
    html.append(QString("<h2>%1</h2>").arg(playlistsTitle));
210
211
    html.append(QString("<p>%1</p>").arg(playlistsSummary2));
211
212
    html.append(QString("<p>%1 %2</p>").arg(playlistsSummary3,
212
213
                                            playlistsSummary4));
 
214
    html.append("</td></tr>");
 
215
    html.append(
 
216
        QString("<tr><td><a href=\"create\">%1</a>")
 
217
        .arg(createPlaylistLink)
 
218
    );
213
219
    html.append("</td></tr></table>");
214
220
    return html;
215
221
}