[pitivi: 17/28] Changed the title of the Error Loading File dialog to Error Loading Project



commit d9b9826dc6f792eb2e9222e32e1088067f145012
Author: Alex BÄluÈ <alexandru balut gmail com>
Date:   Thu Jul 7 22:48:55 2011 +0200

    Changed the title of the Error Loading File dialog to Error Loading Project

 pitivi/ui/mainwindow.py |   16 +++++++---------
 1 files changed, 7 insertions(+), 9 deletions(-)
---
diff --git a/pitivi/ui/mainwindow.py b/pitivi/ui/mainwindow.py
index e43be9d..1016bad 100644
--- a/pitivi/ui/mainwindow.py
+++ b/pitivi/ui/mainwindow.py
@@ -844,19 +844,17 @@ class PitiviMainWindow(gtk.Window, Loggable):
     def _projectManagerRevertingToSavedCb(self, projectManager, project):
         if project.hasUnsavedModifications():
             dialog = gtk.MessageDialog(self,
-                                gtk.DIALOG_MODAL,
-                                gtk.MESSAGE_WARNING,
-                                gtk.BUTTONS_NONE,
-                                _("Do you want to reload current project?")
-                                )
+                    gtk.DIALOG_MODAL,
+                    gtk.MESSAGE_WARNING,
+                    gtk.BUTTONS_NONE,
+                    _("Do you want to reload current project?"))
             dialog.set_icon_name("pitivi")
             dialog.add_buttons(gtk.STOCK_CANCEL, gtk.RESPONSE_NO,
-                                        gtk.STOCK_REVERT_TO_SAVED, gtk.RESPONSE_YES)
+                    gtk.STOCK_REVERT_TO_SAVED, gtk.RESPONSE_YES)
             dialog.set_title(_("Revert to saved project"))
             dialog.set_resizable(False)
             dialog.set_property("secondary-text",
-                                            _("All unsaved changes will be lost.")
-                                        )
+                    _("All unsaved changes will be lost."))
             dialog.set_default_response(gtk.RESPONSE_NO)
             dialog.set_transient_for(self)
             response = dialog.run()
@@ -873,7 +871,7 @@ class PitiviMainWindow(gtk.Window, Loggable):
             gtk.BUTTONS_OK,
             _('Unable to load project "%s"') % project_filename)
         dialog.set_icon_name("pitivi")
-        dialog.set_title(_("Error Loading File"))
+        dialog.set_title(_("Error Loading Project"))
         dialog.set_property("secondary-text", unquote(str(exception)))
         dialog.set_transient_for(self)
         dialog.run()



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