[pitivi/ges: 213/287] medialibrary: Cleanup the gtk actions



commit c651dc951223eb43a506ed76a2c9ec50cee12095
Author: Jean-FranÃois Fortin Tam <nekohayo gmail com>
Date:   Fri Jan 13 10:28:26 2012 -0500

    medialibrary: Cleanup the gtk actions

 pitivi/medialibrary.py |   31 ++++++++++++++++---------------
 1 files changed, 16 insertions(+), 15 deletions(-)
---
diff --git a/pitivi/medialibrary.py b/pitivi/medialibrary.py
index 211b2c0..502c1d2 100644
--- a/pitivi/medialibrary.py
+++ b/pitivi/medialibrary.py
@@ -443,25 +443,26 @@ class MediaLibraryWidget(gtk.VBox, Loggable):
         # always available
         actions = (
             ("ImportSources", gtk.STOCK_ADD, _("_Import Files..."),
-                None, _("Add media files to your project"),
-                self._importSourcesCb),
-            ("ImportSourcesFolder", gtk.STOCK_ADD,
-                _("Import _Folders..."), None,
-                _("Add the contents of a folder as clips in your project"),
-                self._importSourcesFolderCb),
-            ("SelectUnusedSources", None, _("Select Unused Media"), None,
-                _("Select clips that have not been used in the project"),
-                self._selectUnusedSourcesCb),
+            None, _("Add media files to your project"),
+            self._importSourcesCb),
+
+            ("ImportSourcesFolder", gtk.STOCK_ADD, _("Import _Folders..."),
+            None, _("Add the contents of a folder as clips in your project"),
+            self._importSourcesFolderCb),
+
+            # Translators: "select" means "find" rather than "choose"
+            ("SelectUnusedSources", None, _("Select Unused Media"),
+            None, _("Select clips that have not been used in the project"),
+            self._selectUnusedSourcesCb),
         )
 
         # only available when selection is non-empty
         selection_actions = (
-            ("RemoveSources", gtk.STOCK_DELETE,
-                _("_Remove from Project"), "<Control>Delete", None,
-                self._removeSourcesCb),
-            ("InsertEnd", gtk.STOCK_COPY,
-                _("Insert at _End of Timeline"), "Insert", None,
-                self._insertEndCb),
+            ("RemoveSources", gtk.STOCK_DELETE, _("_Remove from Project"),
+            "<Control>Delete", None, self._removeSourcesCb),
+
+            ("InsertEnd", gtk.STOCK_COPY, _("Insert at _End of Timeline"),
+            "Insert", None, self._insertEndCb),
         )
 
         actiongroup = gtk.ActionGroup("medialibrarypermanent")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]