[gimp] app: improved a translatable string, formatting



commit e392af5cb6008ee6d8b1c465a25cea211cfc36c1
Author: Sven Neumann <sven gimp org>
Date:   Sat May 16 17:32:57 2009 +0200

    app: improved a translatable string, formatting
---
 app/actions/file-actions.c |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c
index 977cdbe..7617a35 100644
--- a/app/actions/file-actions.c
+++ b/app/actions/file-actions.c
@@ -140,7 +140,7 @@ static const GimpEnumActionEntry file_save_actions[] =
 
   { "file-export", NULL,
     NC_("file-action", "Export..."), "<control>E",
-    NC_("file-action", "Export the image to various file formats such as .png or .jpg"),
+    NC_("file-action", "Export the image to various file formats such as PNG or JPEG"),
     GIMP_SAVE_MODE_EXPORT, FALSE,
     GIMP_HELP_FILE_EXPORT },
 
@@ -249,8 +249,8 @@ file_actions_update (GimpActionGroup *group,
     drawable = gimp_image_get_active_drawable (image);
 
   export_to = (image ?
-               g_object_get_data (G_OBJECT (image), GIMP_FILE_EXPORT_TO_URI_KEY) :
-               NULL);
+               g_object_get_data (G_OBJECT (image),
+                                  GIMP_FILE_EXPORT_TO_URI_KEY) : NULL);
 
 #define SET_SENSITIVE(action,condition) \
         gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
@@ -273,11 +273,12 @@ file_actions_update (GimpActionGroup *group,
     }
   else
     {
-      gimp_action_group_set_action_label (group, "file-export-to", _("Export to"));
+      gimp_action_group_set_action_label (group,
+                                          "file-export-to", _("Export to"));
     }
 
   /*  needed for the empty display  */
-  SET_SENSITIVE ("file-close-all",        image);
+  SET_SENSITIVE ("file-close-all",       image);
 
 #undef SET_SENSITIVE
 }



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