Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Resources
diff options
context:
space:
mode:
authorNat <Nat@localhost.localdomain>2007-03-04 21:51:07 (GMT)
committer Nat <Nat@localhost.localdomain>2007-03-04 21:51:07 (GMT)
commit767c288ffdf5c9d19360b02d4ac25c20e96538d8 (patch)
treefb7f913e449392a97278266c0e3d89bac9f4b3f2 /Resources
parent6194447c96921f7db5806e7a73a7acc54da4814c (diff)
Tooltips cleanup in edit
Diffstat (limited to 'Resources')
-rw-r--r--Resources/tooltips_en.py65
1 files changed, 33 insertions, 32 deletions
diff --git a/Resources/tooltips_en.py b/Resources/tooltips_en.py
index 2e85506..a2514ad 100644
--- a/Resources/tooltips_en.py
+++ b/Resources/tooltips_en.py
@@ -1,4 +1,37 @@
class Tooltips:
+ def __init__(self):
+ #Edit
+ self.Edit = {}
+ self.Edit["2toolPointerButton"] = 'Select tool'
+ self.Edit["2toolPencilButton"] = 'Draw tool'
+ self.Edit["2pageGenerateButton"] = 'Generate page'
+ self.Edit["2pagePropertiesButton"] = 'Page properties'
+ self.Edit["2pageDeleteButton"] = 'Delete page(s)'
+ self.Edit["2pageDuplicateButton"] = 'Duplicate page(s)'
+ self.Edit["2pageNewButton"] = 'Add page'
+ self.Edit["2pageBeatsButton"] = 'Beats per page'
+ self.Edit["2trackGenerateButton"] = 'Generate track'
+ self.Edit["2trackPropertiesButton"] = 'Track properties'
+ self.Edit["2trackDeleteButton"] = 'Clear track'
+ self.Edit["2trackDuplicateButton"] = 'Duplicate track'
+ self.Edit["2notePropertiesButton"] = 'Note(s) properties'
+ self.Edit["2noteDeleteButton"] = 'Delete note(s)'
+ self.Edit["2noteDuplicateButton"] = 'Duplicate note(s)'
+ self.Edit["2noteOnsetMinusButton"] = 'Move note in time'
+ self.Edit["2noteOnsetPlusButton"] = 'Move note in time'
+ self.Edit["2notePitchMinusButton"] = 'Lower pitch'
+ self.Edit["2notePitchPlusButton"] = 'Raise pitch'
+ self.Edit["2noteDurationMinusButton"] = 'Modify duration'
+ self.Edit["2noteDurationPlusButton"] = 'Modify duration'
+ self.Edit["2noteVolumeMinusButton"] = 'Lower volume'
+ self.Edit["2noteVolumePlusButton"] = 'Raise volume'
+ self.Edit["2playButton"] = 'Play'
+ self.Edit["2pauseButton"] = 'Pause'
+ self.Edit["2stopButton"] = 'Stop'
+ self.Edit["2recordButton"] = 'Record'
+ self.Edit["2rewindButton"] = 'Rewind'
+ self.Edit["2closeButton"] = 'Go back to main screen'
+
#miniTamTam
VOL = 'Volume'
REV = 'Reverb'
@@ -16,38 +49,6 @@ class Tooltips:
RECMIC = 'Record with the microphone'
RECLAB = 'Open SynthLab to create noise'
- #Edit
- TOOLS_SEL = 'Select tool'
- TOOLS_DRAW = 'Draw tool'
- PAGE_GEN = 'Generate page'
- PAGE_PROP = 'Page properties'
- PAGE_DEL = 'Delete page(s)'
- PAGE_DUP = 'Duplicate page(s)'
- PAGE_ADD = 'Add page'
- PAGE_BEAT = 'Beats per page'
- TRACK_GEN = 'Generate track'
- TRACK_PROP = 'Track properties'
- TRACK_DEL = 'Clear track'
- TRACK_DUP = 'Duplicate track'
- NOTE_PROP = 'Note(s) properties'
- NOTE_DEL = 'Delete note(s)'
- NOTE_DUP = 'Duplicate note(s)'
- NOTE_ONSET_MINUS = 'Move note in time'
- NOTE_ONSET_PLUS = 'Move note in time'
- NOTE_PITCH_MINUS = 'Lower pitch'
- NOTE_PITCH_PLUS = 'Raise pitch'
- NOTE_DUR_MINUS = 'Modify duration'
- NOTE_DUR_PLUS = 'Modify duration'
- NOTE_VOL_MINUS = 'Lower volume'
- NOTE_VOL_PLUS = 'Raise volume'
- TRANSPORT_PLAY = 'Play'
- TRANSPORT_PAUSE = 'Pause'
- TRANSPORT_STOP = 'Stop'
- TRANSPORT_REC = 'Record'
- TRANSPORT_RW = 'Rewind'
- TRANSPORT_CLOSE = 'Go back to main screen'
-
-
#Synthlab
SOURCE = 'Source'
EFFECT = 'Effect'