Merge lp:~kroq-gar78/unity-lens-music/fix-972987 into lp:unity-lens-music

Proposed by Aditya V
Status: Merged
Approved by: Michal Hruby
Approved revision: 79
Merged at revision: 125
Proposed branch: lp:~kroq-gar78/unity-lens-music/fix-972987
Merge into: lp:unity-lens-music
Diff against target: 40 lines (+6/-6)
2 files modified
src/daemon.vala (+1/-1)
src/genre.vala (+5/-5)
To merge this branch: bzr merge lp:~kroq-gar78/unity-lens-music/fix-972987
Reviewer Review Type Date Requested Status
Michal Hruby (community) Approve
PS Jenkins bot continuous-integration Pending
Review via email: mp+101165@code.launchpad.net

Commit message

Changed the "Classic" filter to "Classical"

Description of the change

I changed the "Classic" filter to "Classical" because everywhere I've been, I never really hear classical music being referred to as classic music. If you feel that it should be "Classic" and not "Classical", please reject this proposal.

To post a comment you must log in.
Revision history for this message
Michal Hruby (mhr3) wrote :

We got a +1 from the design, could you please merge your branch with trunk? Currently there are conflicts.

review: Needs Fixing
79. By Aditya V

Merge lp:unity-lens-music to fix all merging conflicts

Revision history for this message
Aditya V (kroq-gar78) wrote :

Ok, I think I fixed all of the merging conflicts with lp:unity-lens-music :)

Revision history for this message
Michal Hruby (mhr3) wrote :

Great, thanks a lot!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/daemon.vala'
--- src/daemon.vala 2012-09-13 16:43:44 +0000
+++ src/daemon.vala 2012-12-24 07:39:22 +0000
@@ -87,7 +87,7 @@
87 filter.sort_type = OptionsFilter.SortType.DISPLAY_NAME;87 filter.sort_type = OptionsFilter.SortType.DISPLAY_NAME;
8888
89 filter.add_option (Genre.BLUES_ID, _("Blues"));89 filter.add_option (Genre.BLUES_ID, _("Blues"));
90 filter.add_option (Genre.CLASSIC_ID, _("Classic"));90 filter.add_option (Genre.CLASSICAL_ID, _("Classical"));
91 filter.add_option (Genre.COUNTRY_ID, _("Country"));91 filter.add_option (Genre.COUNTRY_ID, _("Country"));
92 filter.add_option (Genre.DISCO_ID, _("Disco"));92 filter.add_option (Genre.DISCO_ID, _("Disco"));
93 filter.add_option (Genre.FUNK_ID, _("Funk"));93 filter.add_option (Genre.FUNK_ID, _("Funk"));
9494
=== modified file 'src/genre.vala'
--- src/genre.vala 2012-04-10 16:33:20 +0000
+++ src/genre.vala 2012-12-24 07:39:22 +0000
@@ -24,7 +24,7 @@
24 public class Genre : GLib.Object24 public class Genre : GLib.Object
25 {25 {
26 public static const string BLUES_ID = "blues";26 public static const string BLUES_ID = "blues";
27 public static const string CLASSIC_ID = "classic";27 public static const string CLASSICAL_ID = "classical";
28 public static const string COUNTRY_ID = "country";28 public static const string COUNTRY_ID = "country";
29 public static const string DISCO_ID = "disco";29 public static const string DISCO_ID = "disco";
30 public static const string FUNK_ID = "funk";30 public static const string FUNK_ID = "funk";
@@ -52,10 +52,10 @@
52 /* blues */52 /* blues */
53 map.set (BLUES_ID, "blues");53 map.set (BLUES_ID, "blues");
5454
55 /* classic */55 /* classical */
56 map.set (CLASSIC_ID, "classic");56 map.set (CLASSICAL_ID, "classic");
57 map.set (CLASSIC_ID, "classical");57 map.set (CLASSICAL_ID, "classical");
58 map.set (CLASSIC_ID, "opera");58 map.set (CLASSICAL_ID, "opera");
5959
60 /* country */60 /* country */
61 map.set (COUNTRY_ID, "country");61 map.set (COUNTRY_ID, "country");

Subscribers

People subscribed via source and target branches

to all changes: