Skip to content

Commit

Permalink
Merge pull request #4236 from Shedward/master
Browse files Browse the repository at this point in the history
Fix "(%0 songs)" translation issue.
  • Loading branch information
davidsansome committed Mar 10, 2014
2 parents 42a5f4c + 2659a83 commit e944abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internet/vkservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ MusicOwner::MusicOwner(const QUrl& group_url) {

Song MusicOwner::toOwnerRadio() const {
Song song;
song.set_title(QObject::tr("%1 (%0 songs)").arg(songs_count_).arg(name_));
song.set_title(QObject::tr("%1 (%2 songs)").arg(name_).arg(songs_count_));
song.set_url(QUrl(QString("vk://group/%1/%2/%3/%4")
.arg(-id_)
.arg(songs_count_)
Expand Down

0 comments on commit e944abf

Please sign in to comment.