--- a/Utilities/Startup.py Sat Jan 02 16:15:57 2010 +0000 +++ b/Utilities/Startup.py Sat Jan 02 17:09:08 2010 +0000 @@ -22,7 +22,7 @@ import UI.PixmapCache -from eric4config import getConfig +from eric5config import getConfig def makeAppInfo(argv, name, arg, description, options = []): @@ -154,7 +154,7 @@ be loaded (tuple of strings) @return the requested locale (string) """ - translations = ("qt", "eric4") + translationFiles + translations = ("qt", "eric5") + translationFiles loc = Preferences.getUILanguage() if loc is None: return @@ -173,7 +173,7 @@ if ok: app.installTranslator(translator) else: - if tf.startswith("eric4"): + if tf.startswith("eric5"): loca = None loc = loca else: @@ -184,7 +184,7 @@ """ Module function to start up an application that doesn't need a specialized start up. - This function is used by all of eric4's helper programs. + This function is used by all of eric5's helper programs. @param argv list of commandline parameters (list of strings) @param appinfo dictionary describing the application @@ -221,4 +221,4 @@ app.connect(app, SIGNAL("lastWindowClosed()"), app, SLOT("quit()")) w.show() - return app.exec_() + return app.exec_() \ No newline at end of file