Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Util/Instruments.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@activitycentral.org>2011-02-28 17:44:46 (GMT)
committer Aleksey Lim <alsroot@activitycentral.org>2011-02-28 17:44:46 (GMT)
commit9f102e39661e19b330785f729c0fb3fecaca286a (patch)
tree4fade3f97e08f3b44dc6e02c8ed641e6f022eb6a /common/Util/Instruments.py
parenta0705d8ff9b25c1172e38925ec27bb28f9e5a1e9 (diff)
Various i18n cleanups #2646
Diffstat (limited to 'common/Util/Instruments.py')
-rw-r--r--common/Util/Instruments.py20
1 files changed, 6 insertions, 14 deletions
diff --git a/common/Util/Instruments.py b/common/Util/Instruments.py
index 315e451..8462e0d 100644
--- a/common/Util/Instruments.py
+++ b/common/Util/Instruments.py
@@ -291,19 +291,11 @@ DRUM6KIT = { 24 : "drum6madal00",
46 : "drum6madal11",
48 : "drum6madal12" }
-_addInstrument( "drum1kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM1KIT )
-_addInstrument( "drum2kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM2KIT )
-_addInstrument( "drum3kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM3KIT )
-_addInstrument( "drum4kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM4KIT )
-_addInstrument( "drum5kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM5KIT )
-_addInstrument( "drum6kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM6KIT )
-
-DRUMTIPS = [
- _('Jazz / Rock Kit'),
- _('African Kit'),
- _('Arabic Kit'),
- _('South American Kit'),
- _('Electronic Kit'),
- _('Nepali') ]
+_addInstrument( "drum1kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM1KIT, nameTooltip=_('Jazz / Rock Kit') )
+_addInstrument( "drum2kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM2KIT, nameTooltip=_('African Kit') )
+_addInstrument( "drum3kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM3KIT, nameTooltip=_('Arabic Kit') )
+_addInstrument( "drum4kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM4KIT, nameTooltip=_('South American Kit') )
+_addInstrument( "drum5kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM5KIT, nameTooltip=_('Electronic Kit') )
+_addInstrument( "drum6kit", 0, 0, "percussions", 0, 0, 0, 1, DRUM6KIT, nameTooltip=_('Nepali') )
DRUMCOUNT = 6