Change label from "import text" to "import".
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 6 Jan 2013 08:01:20 +0000 (09:01 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 16 Feb 2013 14:02:44 +0000 (15:02 +0100)
Because it is not only used for text now.

src/ui/gui/data-editor.ui
src/ui/gui/psppire-data-window.c

index da3a4a5e5999ebd6b2efc50e86baa1de5947ef69..9a944a7140d04e6f9fee035803cb75e9b0ca0ef1 100644 (file)
@@ -49,9 +49,9 @@
           </object>
         </child>
         <child>
-          <object class="GtkAction" id="file_import-text">
-            <property name="name">file_import-text</property>
-            <property name="label" translatable="yes">_Import Delimited Text Data...</property>
+          <object class="GtkAction" id="file_import">
+            <property name="name">file_import</property>
+            <property name="label" translatable="yes">_Import Data...</property>
            <property name="stock-id">gtk-convert</property>
           </object>
         </child>
             <menuitem action="file_new_data"/>
           </menu>
           <menuitem action="file_open"/>
-          <menuitem action="file_import-text"/>
+          <menuitem action="file_import"/>
           <separator/>
           <menuitem action="file_save"/>
           <menuitem action="file_save_as"/>
index 9e5860b7199521358c3ae57a4eb08de8d882d32c..500877bdd38470abdda490fb8747746cc00718f6 100644 (file)
@@ -1032,7 +1032,7 @@ psppire_data_window_finish_init (PsppireDataWindow *de,
 
   connect_action (de, "file_new_data", G_CALLBACK (create_data_window));
 
-  connect_action (de, "file_import-text", G_CALLBACK (text_data_import_assistant));
+  connect_action (de, "file_import", G_CALLBACK (text_data_import_assistant));
 
   connect_action (de, "file_save", G_CALLBACK (psppire_window_save));