Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/drawwaveform.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2012-06-18 11:53:08 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-06-18 11:53:08 (GMT)
commit0a8b604d3c7d4fb27f1302017535da7b4cdd8c62 (patch)
treec0102ed7dcd5508dce9f472cf0bf77ba35a0a8fb /drawwaveform.py
parenta1c3b29f7c80f2a4f81d242dd08508dd21229e6c (diff)
use uppercase names for instruments
Diffstat (limited to 'drawwaveform.py')
-rw-r--r--drawwaveform.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/drawwaveform.py b/drawwaveform.py
index b6657f0..8206772 100644
--- a/drawwaveform.py
+++ b/drawwaveform.py
@@ -30,11 +30,12 @@ logging.basicConfig()
from gettext import gettext as _
-TUNING_DICT = {_('guitar'): [82.4069, 110, 146.832, 195.998, 246.942, 329.628],
- _('violin'): [195.998, 293.665, 440, 659.255],
- _('viola'): [130.813, 195.998, 293.665, 440],
- _('cello'): [65.4064, 97.9989, 146.832, 220],
- _('bass'): [41.2034, 55, 73.4162, 97.9989]}
+# TRANS: Please use short versions of instrument names if possible
+TUNING_DICT = {_('Guitar'): [82.4069, 110, 146.832, 195.998, 246.942, 329.628],
+ _('Violin'): [195.998, 293.665, 440, 659.255],
+ _('Viola'): [130.813, 195.998, 293.665, 440],
+ _('Cello'): [65.4064, 97.9989, 146.832, 220],
+ _('Bass'): [41.2034, 55, 73.4162, 97.9989]}
class DrawWaveform(gtk.DrawingArea):
""" Handles all the drawing of waveforms """