]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/gnome2-console/support.c
- Continue implementing migration.
[bacula/bacula] / bacula / src / gnome2-console / support.c
index b4ccd3a748184a1add3fc962fa1da7406bc74b00..1bc775a00ec920108270d9b7278b9d5d71e3052e 100644 (file)
@@ -17,8 +17,8 @@
 #include "support.h"
 
 GtkWidget*
-lookup_widget                         (GtkWidget       *widget,
-                                       const gchar     *widget_name)
+lookup_widget                          (GtkWidget       *widget,
+                                       const gchar     *widget_name)
 {
   GtkWidget *parent, *found_widget;
 
@@ -29,7 +29,7 @@ lookup_widget                        (GtkWidget       *widget,
       else
        parent = widget->parent;
       if (!parent)
-        parent = (GtkWidget *)g_object_get_data (G_OBJECT (widget), "GladeParentKey");
+       parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey");
       if (parent == NULL)
        break;
       widget = parent;
@@ -38,14 +38,14 @@ lookup_widget                              (GtkWidget       *widget,
   found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget),
                                                 widget_name);
   if (!found_widget)
-    g_warning ("Widget not found: %s", widget_name);
+    g_warning (_("Widget not found: %s"), widget_name);
   return found_widget;
 }
 
 /* This is an internally used function to create pixmaps. */
 GtkWidget*
-create_pixmap                         (GtkWidget       *widget,
-                                       const gchar     *filename)
+create_pixmap                          (GtkWidget       *widget,
+                                       const gchar     *filename)
 {
   GtkWidget *pixmap;
   gchar *pathname;
@@ -68,7 +68,7 @@ create_pixmap                        (GtkWidget       *widget,
 
 /* This is an internally used function to create pixmaps. */
 GdkPixbuf*
-create_pixbuf                         (const gchar     *filename)
+create_pixbuf                          (const gchar     *filename)
 {
   gchar *pathname = NULL;
   GdkPixbuf *pixbuf;
@@ -89,7 +89,7 @@ create_pixbuf                        (const gchar     *filename)
   pixbuf = gdk_pixbuf_new_from_file (pathname, &error);
   if (!pixbuf)
     {
-      fprintf (stderr, "Failed to load pixbuf file: %s: %s\n",
+      fprintf (stderr, _("Failed to load pixbuf file: %s: %s\n"),
               pathname, error->message);
       g_error_free (error);
     }
@@ -99,9 +99,9 @@ create_pixbuf                        (const gchar     *filename)
 
 /* This is used to set ATK action descriptions. */
 void
-glade_set_atk_action_description       (AtkAction      *action,
-                                       const gchar     *action_name,
-                                       const gchar     *description)
+glade_set_atk_action_description       (AtkAction       *action,
+                                       const gchar     *action_name,
+                                       const gchar     *description)
 {
   gint n_actions, i;
 
@@ -112,3 +112,4 @@ glade_set_atk_action_description       (AtkAction   *action,
        atk_action_set_description (action, i, description);
     }
 }
+