[pitivi] project: Simplify pipeline errors button labels



commit fc95bfd249973f15c74d0569824def956d0995a3
Author: Jean-François Fortin Tam <nekohayo gmail com>
Date:   Mon Mar 16 16:19:55 2015 -0400

    project: Simplify pipeline errors button labels
    
    This makes them more compact and reuses existing translated strings

 pitivi/project.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/pitivi/project.py b/pitivi/project.py
index 6944e82..346a3b9 100644
--- a/pitivi/project.py
+++ b/pitivi/project.py
@@ -238,9 +238,9 @@ class ProjectManager(GObject.Object, Loggable):
         """
         dialog = Gtk.Dialog(title="", transient_for=None)
 
-        dialog.add_buttons(_("Save project as"), Gtk.ResponseType.APPLY,
-                           _("Save project"), Gtk.ResponseType.OK,
-                           _("Close pitivi"), Gtk.ResponseType.CLOSE)
+        dialog.add_buttons(_("Save as..."), Gtk.ResponseType.APPLY,
+                           _("Save"), Gtk.ResponseType.OK,
+                           _("Close Pitivi"), Gtk.ResponseType.CLOSE)
         # GTK does not allow an empty string as the dialog title, so we use the
         # same translatable one as render.py's pipeline error message dialog:
         dialog.set_title(_("Sorry, something didn’t work right."))


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