GNOME Bugzilla – Bug 597422
Run dialog: Make error message translatable
Last modified: 2009-10-05 21:57:13 UTC
Created attachment 144797 [details] [review] Make error message translatable Allow the error message to be translated.
Comment on attachment 144797 [details] [review] Make error message translatable let errorStr = _("Execution of '%s' failed:\n%s").format(command, m[1]); Would be slightly better as: let errorStr = _("Execution of '%s' failed:").format(command) + "\n" + m[1]; Generally, the more you keep out of the translatable string, the happier translators are and the less chance for translators to break something Otherwise looks fine to me.
Comment on attachment 144797 [details] [review] Make error message translatable Yeah that makes sense, committed with this change.