OSDN Git Service

drawwindow: reword scratchpad menu entries
authorAndrew Chadwick <andrewc-git@piffle.org>
Wed, 10 Aug 2011 22:36:48 +0000 (23:36 +0100)
committerAndrew Chadwick <andrewc-git@piffle.org>
Wed, 10 Aug 2011 22:36:48 +0000 (23:36 +0100)
Slight rewording and letter case changes for consistency. Dots where
interaction's required off the next step, and not when it's not.

gui/drawwindow.py

index 6504a4b..004c231 100644 (file)
@@ -218,17 +218,17 @@ class Window (windowing.MainWindow, layout.MainWindow):
 
             # Scratchpad menu items
             ('ScratchMenu',    None, _('Scratchpad')),
-            ('ScratchNew',  gtk.STOCK_NEW, _('New scratchpad'), '', None, self.new_scratchpad_cb),
-            ('ScratchLoad',  gtk.STOCK_OPEN, _('Load into scratchpad'), '', None, self.load_scratchpad_cb),
+            ('ScratchNew',  gtk.STOCK_NEW, _('New Scratchpad'), '', None, self.new_scratchpad_cb),
+            ('ScratchLoad',  gtk.STOCK_OPEN, _('Load Scratchpad...'), '', None, self.load_scratchpad_cb),
             ('ScratchSaveNow',  gtk.STOCK_SAVE, _('Save Scratchpad Now'), '', None, self.save_current_scratchpad_cb),
             ('ScratchSaveAs',  gtk.STOCK_SAVE_AS, _('Save Scratchpad As...'), '', None, self.save_as_scratchpad_cb),
-            ('ScratchRevert',  gtk.STOCK_UNDO, _('Revert scratchpad'), '', None, self.revert_current_scratchpad_cb),
-            ('ScratchSaveAsDefault',  None, _('Save Scratchpad As Default'), None, None, self.save_scratchpad_as_default_cb),
+            ('ScratchRevert',  gtk.STOCK_UNDO, _('Revert Scratchpad'), '', None, self.revert_current_scratchpad_cb),
+            ('ScratchSaveAsDefault',  None, _('Save Scratchpad as Default'), None, None, self.save_scratchpad_as_default_cb),
             ('ScratchClearDefault',  None, _('Clear the Default Scratchpad'), None, None, self.clear_default_scratchpad_cb),
-            ('ScratchLoadPalette',  None, _('Draw a palette in the current Scratchpad'), None, None, self.draw_palette_cb),
-            ('ScratchPaletteOptions',    None, _('Draw a palette...')),
-            ('ScratchDrawSatPalette',  None, _('Draw a saturation palette of current color'), None, None, self.draw_sat_spectrum_cb),
-            ('ScratchCopyBackground',  None, _('Match scratchpad bg to canvas bg'), None, None, self.scratchpad_copy_background_cb),
+            ('ScratchPaletteOptions', None, _('Render a Palette')),
+            ('ScratchLoadPalette',  None, _('Load Palette File...'), None, None, self.draw_palette_cb),
+            ('ScratchDrawSatPalette',  None, _('Different Saturations of the current Color'), None, None, self.draw_sat_spectrum_cb),
+            ('ScratchCopyBackground',  None, _('Copy Background to Scratchpad'), None, None, self.scratchpad_copy_background_cb),
 
             ('BrushMenu',    None, _('Brush')),
             ('ImportBrushPack',       gtk.STOCK_OPEN, _('Import brush package...'), '', None, self.import_brush_pack_cb),