[Xfce4-commits] r23626 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-04 00:29:23 + (Sat, 04 Nov 2006)
New Revision: 23626

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/thunar-location-button.c
   thunar/trunk/thunar/thunar-location-buttons.c
Log:
2006-11-04  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/thunar-location-button.c, thunar/thunar-location-buttons.c:
  Properly clean up the path bar when a folder on the path bar is
  deleted.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-04 00:13:40 UTC (rev 23625)
+++ thunar/trunk/ChangeLog  2006-11-04 00:29:23 UTC (rev 23626)
@@ -1,5 +1,11 @@
 2006-11-04 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * thunar/thunar-location-button.c, thunar/thunar-location-buttons.c:
+ Properly clean up the path bar when a folder on the path bar is
+ deleted.
+
+2006-11-04 Benedikt Meurer <[EMAIL PROTECTED]>
+
* thunar/thunar-tree-model.c(thunar_tree_model_item_files_removed):
  The "row-has-child-toggled" signal must not be emitted if the
  children of the row did not change, otherwise newer GtkTreeView's

Modified: thunar/trunk/thunar/thunar-location-button.c
===
--- thunar/trunk/thunar/thunar-location-button.c2006-11-04 00:13:40 UTC 
(rev 23625)
+++ thunar/trunk/thunar/thunar-location-button.c2006-11-04 00:29:23 UTC 
(rev 23626)
@@ -50,6 +50,7 @@
 {
   CLICKED,
   CONTEXT_MENU,
+  GONE,
   LAST_SIGNAL,
 };
 
@@ -263,6 +264,21 @@
   0, NULL, NULL,
   g_cclosure_marshal_VOID__BOXED,
   G_TYPE_NONE, 1, GDK_TYPE_EVENT);
+
+  /**
+   * ThunarLocationButton::gone:
+   * @location_button : a #ThunarLocationButton.
+   *
+   * Emitted by @location_button when the file associated with
+   * the button is deleted.
+   **/
+  location_button_signals[GONE] =
+g_signal_new (I_("gone"),
+  G_TYPE_FROM_CLASS (klass),
+  G_SIGNAL_RUN_LAST,
+  0, NULL, NULL,
+  g_cclosure_marshal_VOID__VOID,
+  G_TYPE_NONE, 0);
 }
 
 
@@ -509,8 +525,8 @@
   _thunar_return_if_fail (location_button->file == file);
   _thunar_return_if_fail (THUNAR_IS_FILE (file));
 
-  /* the file is gone, no need to keep the button around anymore */
-  gtk_widget_destroy (GTK_WIDGET (location_button));
+  /* the file is gone, emit the "gone" signal */
+  g_signal_emit (G_OBJECT (location_button), location_button_signals[GONE], 0);
 }
 
 

Modified: thunar/trunk/thunar/thunar-location-buttons.c
===
--- thunar/trunk/thunar/thunar-location-buttons.c   2006-11-04 00:13:40 UTC 
(rev 23625)
+++ thunar/trunk/thunar/thunar-location-buttons.c   2006-11-04 00:29:23 UTC 
(rev 23626)
@@ -112,6 +112,8 @@
 static void   thunar_location_buttons_context_menu  
(ThunarLocationButton   *button,
  
GdkEventButton *event,
  
ThunarLocationButtons  *buttons);
+static void   thunar_location_buttons_gone  
(ThunarLocationButton   *button,
+ 
ThunarLocationButtons  *buttons);
 static void   thunar_location_buttons_action_create_folder  
(GtkAction  *action,
  
ThunarLocationButtons  *buttons);
 static void   thunar_location_buttons_action_down_folder
(GtkAction  *action,
@@ -921,6 +923,7 @@
 
   /* connect signal handlers */
   g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK 
(thunar_location_buttons_clicked), buttons);
+  g_signal_connect (G_OBJECT (button), "gone", G_CALLBACK 
(thunar_location_buttons_gone), buttons);
   g_signal_connect (G_OBJECT (button), "context-menu", G_CALLBACK 
(thunar_location_buttons_context_menu), buttons);
 
   return button;
@@ -1216,6 +1219,24 @@
 
 
 static void
+thunar_location_buttons_gone (ThunarLocationButton  *button,
+  ThunarLocationButtons *buttons)
+{
+  _thunar_return_if_fail (THUNAR_IS_LOCATION_BUTTON (button));
+  _thunar_return_if_fail (THUNAR_IS_LOCATION_BUTTONS (buttons));
+  _thunar_return_if_fail (g_list_find (buttons->list, button) != NULL);
+
+  /* drop all buttons up to the button that emitted the "gone" signal */
+  while (buttons->list->data != button)
+gtk_widget_destroy (buttons->list->data);
+
+  /* drop the button itself */
+  gtk_widget_destroy (GTK_WIDGET (button));
+}
+
+
+
+static void
 thunar_location_buttons_context_menu (ThunarLocationButton  *button,
  

[Xfce4-commits] r23625 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-04 00:13:40 + (Sat, 04 Nov 2006)
New Revision: 23625

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/thunar-tree-model.c
Log:
2006-11-04  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/thunar-tree-model.c(thunar_tree_model_item_files_removed):
  The "row-has-child-toggled" signal must not be emitted if the
  children of the row did not change, otherwise newer GtkTreeView's
  will loose sync with the model and probably crash. Bug #2372.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-03 23:13:03 UTC (rev 23624)
+++ thunar/trunk/ChangeLog  2006-11-04 00:13:40 UTC (rev 23625)
@@ -1,5 +1,12 @@
 2006-11-04 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * thunar/thunar-tree-model.c(thunar_tree_model_item_files_removed):
+ The "row-has-child-toggled" signal must not be emitted if the
+ children of the row did not change, otherwise newer GtkTreeView's
+ will loose sync with the model and probably crash. Bug #2372.
+
+2006-11-04 Benedikt Meurer <[EMAIL PROTECTED]>
+
* thunar/thunar-location-entry.c: Merge drop-down menu making shortcuts
  accessible even if the classic file manager look'n'feel is being
  used. Bug #2024.

Modified: thunar/trunk/thunar/thunar-tree-model.c
===
--- thunar/trunk/thunar/thunar-tree-model.c 2006-11-03 23:13:03 UTC (rev 
23624)
+++ thunar/trunk/thunar/thunar-tree-model.c 2006-11-04 00:13:40 UTC (rev 
23625)
@@ -1367,27 +1367,35 @@
   /* determine the node for the folder */
   node = g_node_find (model->root, G_POST_ORDER, G_TRAVERSE_ALL, item);
 
-  /* process all files */
-  for (lp = files; lp != NULL; lp = lp->next)
+  /* check if the node has any visible children */
+  if (G_LIKELY (node->children != NULL))
 {
-  /* find the child node for the file */
-  for (child_node = g_node_first_child (node); child_node != NULL; 
child_node = g_node_next_sibling (child_node))
-if (child_node->data != NULL && THUNAR_TREE_MODEL_ITEM 
(child_node->data)->file == lp->data)
-  break;
+  /* process all files */
+  for (lp = files; lp != NULL; lp = lp->next)
+{
+  /* find the child node for the file */
+  for (child_node = g_node_first_child (node); child_node != NULL; 
child_node = g_node_next_sibling (child_node))
+if (child_node->data != NULL && THUNAR_TREE_MODEL_ITEM 
(child_node->data)->file == lp->data)
+  break;
 
-  /* drop the child node (and all descendant nodes) from the model */
-  if (G_LIKELY (child_node != NULL))
-g_node_traverse (child_node, G_POST_ORDER, G_TRAVERSE_ALL, -1, 
thunar_tree_model_node_traverse_remove, model);
-}
+  /* drop the child node (and all descendant nodes) from the model */
+  if (G_LIKELY (child_node != NULL))
+g_node_traverse (child_node, G_POST_ORDER, G_TRAVERSE_ALL, -1, 
thunar_tree_model_node_traverse_remove, model);
+}
 
-  /* determine the iterator for the folder node */
-  iter.stamp = model->stamp;
-  iter.user_data = node;
+  /* check if all children of the node where dropped */
+  if (G_UNLIKELY (node->children == NULL))
+{
+  /* determine the iterator for the folder node */
+  iter.stamp = model->stamp;
+  iter.user_data = node;
 
-  /* emit "row-has-child-toggled" for the folder node */
-  path = gtk_tree_model_get_path (GTK_TREE_MODEL (model), &iter);
-  gtk_tree_model_row_has_child_toggled (GTK_TREE_MODEL (model), path, &iter);
-  gtk_tree_path_free (path);
+  /* emit "row-has-child-toggled" for the folder node */
+  path = gtk_tree_model_get_path (GTK_TREE_MODEL (model), &iter);
+  gtk_tree_model_row_has_child_toggled (GTK_TREE_MODEL (model), path, 
&iter);
+  gtk_tree_path_free (path);
+}
+}
 }
 
 

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23624 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 23:13:03 + (Fri, 03 Nov 2006)
New Revision: 23624

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/thunar-location-entry.c
Log:
2006-11-04  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/thunar-location-entry.c: Merge drop-down menu making shortcuts
  accessible even if the classic file manager look'n'feel is being
  used. Bug #2024.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-03 22:50:52 UTC (rev 23623)
+++ thunar/trunk/ChangeLog  2006-11-03 23:13:03 UTC (rev 23624)
@@ -1,3 +1,9 @@
+2006-11-04 Benedikt Meurer <[EMAIL PROTECTED]>
+
+   * thunar/thunar-location-entry.c: Merge drop-down menu making shortcuts
+ accessible even if the classic file manager look'n'feel is being
+ used. Bug #2024.
+
 2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
 
* thunar/xfce-heading.{c,h}, thunar/xfce-titled-dialog.{c,h},

Modified: thunar/trunk/thunar/thunar-location-entry.c
===
--- thunar/trunk/thunar/thunar-location-entry.c 2006-11-03 22:50:52 UTC (rev 
23623)
+++ thunar/trunk/thunar/thunar-location-entry.c 2006-11-03 23:13:03 UTC (rev 
23624)
@@ -25,10 +25,13 @@
 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
 #include 
+#include 
 
 
 
@@ -72,6 +75,10 @@
 static voidthunar_location_entry_activate  (GtkWidget  
  *path_entry,
 
ThunarLocationEntry  *location_entry);
 static gbooleanthunar_location_entry_reset 
(ThunarLocationEntry  *location_entry);
+static voidthunar_location_entry_button_clicked(GtkWidget  
  *button,
+
ThunarLocationEntry  *location_entry);
+static voidthunar_location_entry_item_activated(GtkWidget  
  *item,
+
ThunarLocationEntry  *location_entry);
 
 
 
@@ -94,7 +101,6 @@
 
 
 static GObjectClass *thunar_location_entry_parent_class;
-static guint location_entry_signals[LAST_SIGNAL];
 
 
 
@@ -182,14 +188,13 @@
* reset the @location_entry contents to the current directory.
* This is an internal signal used to bind the action to keys.
**/
-  location_entry_signals[RESET] =
-g_signal_new (I_("reset"),
-  G_TYPE_FROM_CLASS (klass),
-  G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
-  G_STRUCT_OFFSET (ThunarLocationEntryClass, reset),
-  g_signal_accumulator_true_handled, NULL,
-  _thunar_marshal_BOOLEAN__VOID,
-  G_TYPE_BOOLEAN, 0);
+  g_signal_new (I_("reset"),
+G_TYPE_FROM_CLASS (klass),
+G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
+G_STRUCT_OFFSET (ThunarLocationEntryClass, reset),
+g_signal_accumulator_true_handled, NULL,
+_thunar_marshal_BOOLEAN__VOID,
+G_TYPE_BOOLEAN, 0);
 
   /* setup the key bindings for the location entry */
   binding_set = gtk_binding_set_by_class (klass);
@@ -230,7 +235,10 @@
 static void
 thunar_location_entry_init (ThunarLocationEntry *location_entry)
 {
-  gtk_box_set_spacing (GTK_BOX (location_entry), 2);
+  GtkWidget *button;
+  GtkWidget *arrow;
+
+  gtk_box_set_spacing (GTK_BOX (location_entry), 0);
   gtk_container_set_border_width (GTK_CONTAINER (location_entry), 4);
 
   location_entry->path_entry = thunar_path_entry_new ();
@@ -238,6 +246,16 @@
   g_signal_connect_after (G_OBJECT (location_entry->path_entry), "activate", 
G_CALLBACK (thunar_location_entry_activate), location_entry);
   gtk_box_pack_start (GTK_BOX (location_entry), location_entry->path_entry, 
TRUE, TRUE, 0);
   gtk_widget_show (location_entry->path_entry);
+
+  button = gtk_toggle_button_new ();
+  g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK 
(thunar_location_entry_button_clicked), location_entry);
+  g_signal_connect (G_OBJECT (button), "pressed", G_CALLBACK 
(thunar_location_entry_button_clicked), location_entry);
+  gtk_box_pack_start (GTK_BOX (location_entry), button, FALSE, FALSE, 0);
+  gtk_widget_show (button);
+
+  arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
+  gtk_container_add (GTK_CONTAINER (button), arrow);
+  gtk_widget_show (arrow);
 }
 
 
@@ -425,6 +443,233 @@
 
 
 
+static void
+menu_position (GtkMenu  *menu,
+   gint *x,
+   gint *y,
+   gboolean *push_in,
+   gpointer  entry)
+{
+  GtkRequisition entry_request;
+  GtkRequisition menu_request;
+  GdkRectangle   geometry;
+  GdkScreen *screen;
+  GtkWidget *toplevel = gtk_widget_get_toplevel (entry);
+  gint   monitor;
+  gint

[Xfce4-commits] r23623 - thunar/trunk/po

2006-11-03 Thread Piarres Beobide
Author: piarres
Date: 2006-11-03 22:50:52 + (Fri, 03 Nov 2006)
New Revision: 23623

Modified:
   thunar/trunk/po/ChangeLog
   thunar/trunk/po/eu.po
Log:
thunar basque translation update


Modified: thunar/trunk/po/ChangeLog
===
--- thunar/trunk/po/ChangeLog   2006-11-03 22:17:33 UTC (rev 23622)
+++ thunar/trunk/po/ChangeLog   2006-11-03 22:50:52 UTC (rev 23623)
@@ -1,3 +1,7 @@
+2006-11-04  Piarres Beobide <[EMAIL PROTECTED]>
+
+* eu.po: Update basque translation.
+
 2006-11-03  Jari Rahkonen <[EMAIL PROTECTED]>
 
* fi.po: Updated Finnish translation.

Modified: thunar/trunk/po/eu.po
===
--- thunar/trunk/po/eu.po   2006-11-03 22:17:33 UTC (rev 23622)
+++ thunar/trunk/po/eu.po   2006-11-03 22:50:52 UTC (rev 23623)
@@ -10,7 +10,7 @@
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-11-03 17:14+0100\n"
-"PO-Revision-Date: 2006-09-15 22:25+0200\n"
+"PO-Revision-Date: 2006-11-03 23:54+0100\n"
 "Last-Translator: Piarres Beobide <[EMAIL PROTECTED]>\n"
 "Language-Team: librezale <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
@@ -607,8 +607,7 @@
 
 #: ../thunar/thunar-chooser-button.c:366
 #, c-format
-msgid ""
-"The selected application is used to open this and other files of type \"%s\"."
+msgid "The selected application is used to open this and other files of type 
\"%s\"."
 msgstr ""
 "Hautaturiko aplikazioa fitxategi hau eta \"%s\" motakoak irekitzeko "
 "erabiltzen da."
@@ -670,8 +669,7 @@
 
 #: ../thunar/thunar-chooser-dialog.c:709
 #, c-format
-msgid ""
-"Browse the file system to select an application to open files of type \"%s\"."
+msgid "Browse the file system to select an application to open files of type 
\"%s\"."
 msgstr ""
 " \"%s\" motako fitxategiak irekitzeko aplikazioa hautatzeko fitxategi "
 "sistema arakatu."
@@ -1285,8 +1283,7 @@
 
 #: ../thunar/thunar-location-buttons.c:1273
 #, c-format
-msgid ""
-"Move or copy files previously selected by a Cut or Copy command into \"%s\""
+msgid "Move or copy files previously selected by a Cut or Copy command into 
\"%s\""
 msgstr ""
 "Moztu edo Kopiatu komandoaz aurretik hautaturiko fitxategiak  \"%s\" barnera "
 "mugitu edo kopiatu"
@@ -1868,8 +1865,7 @@
 msgstr "Fitxategiak Be_rrizendatu"
 
 #: ../thunar/thunar-renamer-dialog.c:371
-msgid ""
-"Click here to actually rename the files listed above to their new names."
+msgid "Click here to actually rename the files listed above to their new 
names."
 msgstr ""
 "Hemen klik egin behean zerrendaturiko fitxategiak izen berrietara orain "
 "berrizendatzeko."
@@ -1937,10 +1933,8 @@
 #: ../thunar/thunar-renamer-dialog.c:1529
 msgid "Remove the selected file from the list of files to be renamed"
 msgid_plural "Remove the selected files from the list of files to be renamed"
-msgstr[0] ""
-"Ezabatu hautaturiko fitxategia berrizendatzeko fitxategi zerrendatik"
-msgstr[1] ""
-"Ezabatu hautaturiko fitxategiak berrizendatzeko fitxategi zerrendatik"
+msgstr[0] "Ezabatu hautaturiko fitxategia berrizendatzeko fitxategi 
zerrendatik"
+msgstr[1] "Ezabatu hautaturiko fitxategiak berrizendatzeko fitxategi 
zerrendatik"
 
 #. change title to reflect the standalone status
 #: ../thunar/thunar-renamer-dialog.c:1680
@@ -1972,8 +1966,7 @@
 msgstr "Fitxategi hau albo batera ut_zi"
 
 #: ../thunar/thunar-renamer-progress.c:233
-msgid ""
-"Do you want to skip this file and continue to rename the remaining files?"
+msgid "Do you want to skip this file and continue to rename the remaining 
files?"
 msgstr ""
 "Fitxategi hau albo batera utzi eta besteak berrizendatzen jarraitu nahi al "
 "duzu?"
@@ -2218,8 +2211,7 @@
 msgid "Prepare the selected file to be copied with a Paste command"
 msgid_plural "Prepare the selected files to be copied with a Paste command"
 msgstr[0] "Hautatutako fitxategia itsatsi komando bitartez kopiatzeko prestatu"
-msgstr[1] ""
-"Hautatutako fitxategiak itsatsi komando bitartez kopiatzeko prestatu"
+msgstr[1] "Hautatutako fitxategiak itsatsi komando bitartez kopiatzeko 
prestatu"
 
 #: ../thunar/thunar-standard-view.c:3365
 msgid "Delete the selected file"
@@ -2262,14 +2254,12 @@
 msgstr "Fitxategi _Hutsa"
 
 #: ../thunar/thunar-trash-action.c:174
-#, fuzzy
 msgid "T_rash"
-msgstr "Zakarrontzia"
+msgstr "Zaka_rrontzia"
 
 #: ../thunar/thunar-trash-action.c:175
-#, fuzzy
 msgid "Display the contents of the trash can"
-msgstr "Huts zakarotziarekin konektatzerakoan"
+msgstr "Zakarrantzoiak dituen edukiak bistarazi"
 
 #: ../thunar/thunar-tree-model.c:596
 msgid "Loading..."
@@ -2505,8 +2495,7 @@
 #. add the label with the root warning
 #: ../thunar/thunar-window.c:683
 msgid "Warning, you are using the root account, you may harm your system."
-msgstr ""
-"Kontuz, root kontua erabiltzen ari zara eta zure sistema hondatu dezakezu."
+msgstr "Kontuz, root kontua erabiltzen ari zara eta zure sistema hondatu 
dezakezu."
 
 #: ../thunar/

[Xfce4-commits] r23621 - thunar/trunk/po xarchiver/trunk/po xfburn/trunk/po xfce-mcs-plugins/trunk/po

2006-11-03 Thread Jari Rahkonen
Author: jari
Date: 2006-11-03 21:51:04 + (Fri, 03 Nov 2006)
New Revision: 23621

Modified:
   thunar/trunk/po/ChangeLog
   thunar/trunk/po/fi.po
   xarchiver/trunk/po/ChangeLog
   xarchiver/trunk/po/fi.po
   xfburn/trunk/po/ChangeLog
   xfburn/trunk/po/fi.po
   xfce-mcs-plugins/trunk/po/ChangeLog
   xfce-mcs-plugins/trunk/po/fi.po
Log:
Updated Finnish translations.


Modified: thunar/trunk/po/ChangeLog
===
--- thunar/trunk/po/ChangeLog   2006-11-03 21:41:41 UTC (rev 23620)
+++ thunar/trunk/po/ChangeLog   2006-11-03 21:51:04 UTC (rev 23621)
@@ -1,3 +1,7 @@
+2006-11-03  Jari Rahkonen <[EMAIL PROTECTED]>
+
+   * fi.po: Updated Finnish translation.
+
 2006-11-03  Adriano Winter Bess  <[EMAIL PROTECTED]>
 
* pt_BR.po: Updated brazilian portuguese translations.

Modified: thunar/trunk/po/fi.po
===
--- thunar/trunk/po/fi.po   2006-11-03 21:41:41 UTC (rev 23620)
+++ thunar/trunk/po/fi.po   2006-11-03 21:51:04 UTC (rev 23621)
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: Thunar 0.4.0rc1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-03 17:14+0100\n"
-"PO-Revision-Date: 2006-09-12 16:34+0300\n"
+"POT-Creation-Date: 2006-11-03 23:39+0200\n"
+"PO-Revision-Date: 2006-11-03 23:42+0200\n"
 "Last-Translator: Jari Rahkonen <[EMAIL PROTECTED]>\n"
 "Language-Team: Finnish <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
@@ -1464,57 +1464,57 @@
 "Hakemiston käyttöoikeudet asetetaan yhtäläisiksi. Tämän jälkeen hakemistoon "
 "pääsevät vain sellaiset käyttäjät, joilla on oikeus lukea hakemiston sisältö."
 
-#: ../thunar/thunar-preferences-dialog.c:219
+#: ../thunar/thunar-preferences-dialog.c:220
 msgid "File Manager Preferences"
 msgstr "Tiedostonhallinnan asetukset"
 
 #.
 #. Views
 #.
-#: ../thunar/thunar-preferences-dialog.c:236
+#: ../thunar/thunar-preferences-dialog.c:237
 msgid "Views"
 msgstr "Näkymät"
 
-#: ../thunar/thunar-preferences-dialog.c:246
+#: ../thunar/thunar-preferences-dialog.c:247
 msgid "Default View"
 msgstr "Oletusnäkymä"
 
-#: ../thunar/thunar-preferences-dialog.c:258
+#: ../thunar/thunar-preferences-dialog.c:259
 msgid "View _new folders using:"
 msgstr "_Uusien hakemistojen esitystapa:"
 
-#: ../thunar/thunar-preferences-dialog.c:263
-#: ../thunar/thunar-preferences-dialog.c:294
+#: ../thunar/thunar-preferences-dialog.c:264
+#: ../thunar/thunar-preferences-dialog.c:295
 msgid "Icon View"
 msgstr "Kuvakenäkymä"
 
-#: ../thunar/thunar-preferences-dialog.c:264
+#: ../thunar/thunar-preferences-dialog.c:265
 msgid "Detailed List View"
 msgstr "Yksityiskohtainen listanäkymä"
 
-#: ../thunar/thunar-preferences-dialog.c:265
+#: ../thunar/thunar-preferences-dialog.c:266
 msgid "Compact List View"
 msgstr "Kompakti listanäkymä"
 
-#: ../thunar/thunar-preferences-dialog.c:266
+#: ../thunar/thunar-preferences-dialog.c:267
 msgid "Last Active View"
 msgstr "Viimeksi käytetty näkymä"
 
-#: ../thunar/thunar-preferences-dialog.c:277
+#: ../thunar/thunar-preferences-dialog.c:278
 msgid "Sort _folders before files"
 msgstr "Järjestä _hakemistot ennen tiedostoja"
 
-#: ../thunar/thunar-preferences-dialog.c:279
+#: ../thunar/thunar-preferences-dialog.c:280
 msgid "Select this option to list folders before files when you sort a folder."
 msgstr ""
 "Valitse tämä hakemistojen näyttämiseksi ennen tiedostoja järjestäessäsi "
 "hakemiston."
 
-#: ../thunar/thunar-preferences-dialog.c:283
+#: ../thunar/thunar-preferences-dialog.c:284
 msgid "_Show thumbnails"
 msgstr "_Näytä pienoiskuvat"
 
-#: ../thunar/thunar-preferences-dialog.c:285
+#: ../thunar/thunar-preferences-dialog.c:286
 msgid ""
 "Select this option to display previewable files within a folder as "
 "automatically generated thumbnail icons."
@@ -1522,11 +1522,11 @@
 "Valitse tämä nähdäksesi hakemiston esikatselukelpoiset tiedostot "
 "automaattisesti luotuina pienoiskuvina."
 
-#: ../thunar/thunar-preferences-dialog.c:306
+#: ../thunar/thunar-preferences-dialog.c:307
 msgid "_Text beside icons"
 msgstr "_Teksti kuvakkeiden vierellä"
 
-#: ../thunar/thunar-preferences-dialog.c:308
+#: ../thunar/thunar-preferences-dialog.c:309
 msgid ""
 "Select this option to place the icon captions for items beside the icon "
 "rather than below the icon."
@@ -1537,58 +1537,58 @@
 #.
 #. Side Pane
 #.
-#: ../thunar/thunar-preferences-dialog.c:317
+#: ../thunar/thunar-preferences-dialog.c:318
 msgid "Side Pane"
 msgstr "Sivupaneeli"
 
-#: ../thunar/thunar-preferences-dialog.c:327
+#: ../thunar/thunar-preferences-dialog.c:328
 msgid "Shortcuts Pane"
 msgstr "Kirjanmerkkipaneeli"
 
-#: ../thunar/thunar-preferences-dialog.c:339
+#: ../thunar/thunar-preferences-dialog.c:340
 msgid "_Icon Size:"
 msgstr "_Kuvakkeen koko:"
 
-#: ../thunar/thunar-preferences-dialog.c:344
-#: ../thunar/thunar-preferences-dialog.c:389
+#: ../thunar/thunar-preferences-dialog.c:345
+#: ../thunar/thunar-preferences-dialog.c:390
 msgid "Very Small"

[Xfce4-commits] r23620 - libfrap/trunk/libfrap/menu

2006-11-03 Thread Jannis Pohlmann
Author: jannis
Date: 2006-11-03 21:41:41 + (Fri, 03 Nov 2006)
New Revision: 23620

Added:
   libfrap/trunk/libfrap/menu/frap-menu-move.c
   libfrap/trunk/libfrap/menu/frap-menu-move.h
Modified:
   libfrap/trunk/libfrap/menu/ChangeLog
   libfrap/trunk/libfrap/menu/Makefile.am
   libfrap/trunk/libfrap/menu/STATUS
   libfrap/trunk/libfrap/menu/frap-menu.c
   libfrap/trunk/libfrap/menu/frap-menu.h
Log:
* frap-menu.{c,h}, frap-menu-move.{c,h}, Makefile.am, STATUS: 
  frap_menu_get_menu_with_name() added. Implemented ,  
  and  elements (also added error handling for incomplete move 
  instructions). A move instruction is a FrapMenuMove with properties 
  "old" and "new", which refers to the source and target menu names. 
  

Modified: libfrap/trunk/libfrap/menu/ChangeLog
===
--- libfrap/trunk/libfrap/menu/ChangeLog2006-11-03 20:37:26 UTC (rev 
23619)
+++ libfrap/trunk/libfrap/menu/ChangeLog2006-11-03 21:41:41 UTC (rev 
23620)
@@ -1,3 +1,11 @@
+2006-11-03 Jannis Pohlmann <[EMAIL PROTECTED]>
+
+   * frap-menu.{c,h}, frap-menu-move.{c,h}, Makefile.am, STATUS: 
+ frap_menu_get_menu_with_name() added. Implemented ,  
+ and  elements (also added error handling for incomplete move 
+ instructions). A move instruction is a FrapMenuMove with properties 
+ "old" and "new", which refers to the source and target menu names. 
+ 
 2006-10-31 Jannis Pohlmann <[EMAIL PROTECTED]>
 
* Makefile.am, tdb/: tdb added.

Modified: libfrap/trunk/libfrap/menu/Makefile.am
===
--- libfrap/trunk/libfrap/menu/Makefile.am  2006-11-03 20:37:26 UTC (rev 
23619)
+++ libfrap/trunk/libfrap/menu/Makefile.am  2006-11-03 21:41:41 UTC (rev 
23620)
@@ -16,6 +16,7 @@
frap-menu-not-rules.c   \
frap-menu-item-pool.c   \
frap-menu-item-cache.c  \
+   frap-menu-move.c\
frap-menu-item.c
 
 libfrapmenu_la_DEPENDENCIES =  \
@@ -32,6 +33,7 @@
frap-menu-not-rules.h   \
frap-menu-item-pool.h   \
frap-menu-item-cache.h  \
+   frap-menu-move.h\
frap-menu-item.h
 
 INCLUDES = \

Modified: libfrap/trunk/libfrap/menu/STATUS
===
--- libfrap/trunk/libfrap/menu/STATUS   2006-11-03 20:37:26 UTC (rev 23619)
+++ libfrap/trunk/libfrap/menu/STATUS   2006-11-03 21:41:41 UTC (rev 23620)
@@ -30,8 +30,6 @@
 
   [x]  
 
-TODO: Recursively load elements (using a stack).
-
 Recursion scheme (only recurse on and/or/not elements):
 
and|or|not
@@ -74,11 +72,11 @@
 
 See 
 
-  [ ] 
+  [x] 
 
-  [ ] 
+  [x] 
 
-  [ ] 
+  [x] 
 
   [ ] 
 

Added: libfrap/trunk/libfrap/menu/frap-menu-move.c
===
--- libfrap/trunk/libfrap/menu/frap-menu-move.c (rev 0)
+++ libfrap/trunk/libfrap/menu/frap-menu-move.c 2006-11-03 21:41:41 UTC (rev 
23620)
@@ -0,0 +1,292 @@
+/* $Id$ */
+/* vi:set expandtab sw=2 sts=2: */
+/*-
+ * Copyright (c) 2006 Jannis Pohlmann <[EMAIL PROTECTED]>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include 
+#endif
+
+#include 
+
+#include 
+
+
+
+/* Property identifiers */
+enum
+{
+  PROP_0,
+  PROP_OLD,
+  PROP_NEW,
+};
+
+
+
+static void frap_menu_move_class_init   (FrapMenuMoveClass *klass);
+static void frap_menu_move_init (FrapMenuMove  *move);
+static void frap_menu_move_finalize (GObject   *object);
+static void frap_menu_move_get_property (GObject   *object,
+   

[Xfce4-commits] r23619 - xfwm4/trunk

2006-11-03 Thread Olivier Fourdan
Author: olivier
Date: 2006-11-03 20:37:26 + (Fri, 03 Nov 2006)
New Revision: 23619

Modified:
   xfwm4/trunk/ChangeLog
Log:
Update ChangeLog

Modified: xfwm4/trunk/ChangeLog
===
--- xfwm4/trunk/ChangeLog   2006-11-03 19:59:11 UTC (rev 23618)
+++ xfwm4/trunk/ChangeLog   2006-11-03 20:37:26 UTC (rev 23619)
@@ -1,3 +1,581 @@
+2006-11-02 21:48  olivier
+
+   * src/client.c, src/events.c: Re-enable XSync on apps that don't
+ cooperate.
+
+2006-11-02 21:18  olivier
+
+   * src/client.c, src/client.h, src/events.c: Add timeout to avoid
+ blocking on broken apps that claim XSync compliance but don't
+ implement the protocol properly.
+
+2006-11-02 06:43  olivier
+
+   * src/netwm.c: Reuse same event.
+
+2006-11-01 21:24  olivier
+
+   * README: Update EWMH compliance.
+
+2006-11-01 21:14  olivier
+
+   * src/display.h, src/events.c, src/hints.c, src/misc.c,
+ src/misc.h, src/netwm.c, src/netwm.h: Add support to
+ NET_WM_MOVERESIZE
+
+2006-11-01 21:13  olivier
+
+   * src/client.c: Fix compilation warnings
+
+2006-11-01 18:06  olivier
+
+   * configure.ac.in: Add support for XSync protocol in configure
+ script.
+
+2006-11-01 18:02  olivier
+
+   * src/client.c, src/client.h, src/display.c, src/display.h,
+ src/events.c, src/hints.c, src/hints.h, src/main.c: Add support
+ for XSync protocol.
+
+2006-11-01 12:28  olivier
+
+   * src/events.c: Do not raise on WM_TRANSIENT_FOR property change,
+ fix bug #2483.
+
+2006-11-01 00:27  olivier
+
+   * src/client.c, src/client.h: Get rid of resize limit speed for
+ good.
+
+2006-10-31 23:56  olivier
+
+   * src/client.c: Optimize configure flags for resize.
+
+2006-10-31 21:21  olivier
+
+   * src/display.c, src/events.c: Add a focus "parachute", remove a
+ roundtrip.
+
+2006-10-30 23:05  olivier
+
+   * src/client.c: Disable resize limit by default
+
+2006-10-30 22:17  olivier
+
+   * src/client.c: Optimize move/resize
+
+2006-10-30 17:41  olivier
+
+   * src/client.c, src/display.c, src/events.c, src/workspaces.c:
+ Improve yesterday patch on focus transition.
+
+2006-10-29 22:59  olivier
+
+   * src/client.c, src/display.c, src/events.c, src/focus.c,
+ src/hints.c, src/main.c, src/netwm.c: This fixes several focus
+ issues for me, but since focus is a sensitive beast, to say the
+ least, so I dunno about others.
+
+2006-10-29 16:31  maximilian
+
+   * libexo/trunk/po/ChangeLog, libexo/trunk/po/fr.po,
+ terminal/trunk/po/ChangeLog, terminal/trunk/po/fr.po,
+ thunar/trunk/po/ChangeLog, thunar/trunk/po/fr.po,
+ xfdesktop/trunk/po/ChangeLog, xfdesktop/trunk/po/fr.po,
+ po/ChangeLog, po/fr.po: Updated libexo and terminal's french
+ translations, added translators credits to the thunar french
+ translation, fixed a wrong accel. in xfdesktop (thx goes to Mike
+ Massonnet) and fixed some typos in xfwm4's french translation.
+
+2006-10-29 14:51  pollux
+
+   * mcs-plugin/xfwm4_shortcuteditor.c: allow the usage of 'Alt+C' in
+ shortcuts (unfortunately it adds a string too)
+
+2006-10-28 13:04  paurullan
+
+   * libexo/trunk/po/ChangeLog, libexo/trunk/po/LINGUAS,
+ libexo/trunk/po/dz.po, libxfce4util/trunk/po/ChangeLog,
+ libxfce4util/trunk/po/LINGUAS, libxfce4util/trunk/po/dz.po,
+ libxfcegui4/trunk/po/ChangeLog, libxfcegui4/trunk/po/LINGUAS,
+ libxfcegui4/trunk/po/dz.po, mousepad/trunk/po/ChangeLog,
+ mousepad/trunk/po/LINGUAS, mousepad/trunk/po/dz.po,
+ terminal/trunk/po/ChangeLog, terminal/trunk/po/LINGUAS,
+ terminal/trunk/po/dz.po, thunar/trunk/po/ChangeLog,
+ thunar/trunk/po/LINGUAS, thunar/trunk/po/dz.po,
+ xarchiver/trunk/po/ChangeLog, xarchiver/trunk/po/LINGUAS,
+ xarchiver/trunk/po/dz.po, xfburn/trunk/po/ChangeLog,
+ xfburn/trunk/po/LINGUAS, xfburn/trunk/po/dz.po,
+ xfcalendar/trunk/po/ChangeLog, xfcalendar/trunk/po/LINGUAS,
+ xfcalendar/trunk/po/dz.po, xfce-mcs-manager/trunk/po/ChangeLog,
+ xfce-mcs-manager/trunk/po/LINGUAS,
+ xfce-mcs-manager/trunk/po/dz.po,
+ xfce-mcs-plugins/trunk/po/ChangeLog,
+ xfce-mcs-plugins/trunk/po/LINGUAS,
+ xfce-mcs-plugins/trunk/po/dz.po, xfce-utils/trunk/po/ChangeLog,
+ xfce-utils/trunk/po/LINGUAS, xfce-utils/trunk/po/dz.po,
+ xfce4-appfinder/trunk/po/ChangeLog,
+ xfce4-appfinder/trunk/po/LINGUAS,
+ xfce4-appfinder/trunk/po/dz.po,
+ xfce4-icon-theme/trunk/po/ChangeLog,
+ xfce4-icon-theme/trunk/po/LINGUAS,
+ xfce4-icon-theme/trunk/po/dz.po, xfce4-mixer/trunk/po/ChangeLog,
+ xfce4-mixer/trunk/po/LINGUAS, xfce4-mixer/trunk/po/dz.po,
+ xfce4-panel/trunk/po/ChangeLog, xfce4-panel/trunk/po/LINGUAS,
+

[Xfce4-commits] r23617 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 19:35:40 + (Fri, 03 Nov 2006)
New Revision: 23617

Added:
   thunar/trunk/thunar/xfce-heading.c
   thunar/trunk/thunar/xfce-heading.h
   thunar/trunk/thunar/xfce-titled-dialog.c
   thunar/trunk/thunar/xfce-titled-dialog.h
Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/Makefile.am
   thunar/trunk/thunar/thunar-preferences-dialog.c
Log:
2006-11-03  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/xfce-heading.{c,h}, thunar/xfce-titled-dialog.{c,h},
  thunar/Makefile.am, thunar/thunar-preferences-dialog.c: Adjust the
  preferences dialog to match the look of the other Xfce preferences
  dialogs. Bug #2379.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-03 19:30:56 UTC (rev 23616)
+++ thunar/trunk/ChangeLog  2006-11-03 19:35:40 UTC (rev 23617)
@@ -1,5 +1,12 @@
 2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * thunar/xfce-heading.{c,h}, thunar/xfce-titled-dialog.{c,h},
+ thunar/Makefile.am, thunar/thunar-preferences-dialog.c: Adjust the
+ preferences dialog to match the look of the other Xfce preferences
+ dialogs. Bug #2379.
+
+2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
+
* thunar/thunar-window.c(thunar_window_set_current_directory): Place
  focus on the main view after changing the currently displayed
  folder. Bug #2367.

Modified: thunar/trunk/thunar/Makefile.am
===
--- thunar/trunk/thunar/Makefile.am 2006-11-03 19:30:56 UTC (rev 23616)
+++ thunar/trunk/thunar/Makefile.am 2006-11-03 19:35:40 UTC (rev 23617)
@@ -182,7 +182,11 @@
thunar-view.h   \
thunar-window.c \
thunar-window.h \
-   thunar-window-ui.h
+   thunar-window-ui.h  \
+   xfce-heading.c  \
+   xfce-heading.h  \
+   xfce-titled-dialog.c\
+   xfce-titled-dialog.h
 
 Thunar_CFLAGS =
\
$(EXO_CFLAGS)   \

Modified: thunar/trunk/thunar/thunar-preferences-dialog.c
===
--- thunar/trunk/thunar/thunar-preferences-dialog.c 2006-11-03 19:30:56 UTC 
(rev 23616)
+++ thunar/trunk/thunar/thunar-preferences-dialog.c 2006-11-03 19:35:40 UTC 
(rev 23617)
@@ -23,7 +23,6 @@
 
 #include 
 
-#include 
 #include 
 #include 
 #include 
@@ -32,6 +31,7 @@
 #include 
 #include 
 #include 
+#include 
 
 
 
@@ -45,13 +45,13 @@
 
 struct _ThunarPreferencesDialogClass
 {
-  ThunarAbstractDialogClass __parent__;
+  XfceTitledDialogClass __parent__;
 };
 
 struct _ThunarPreferencesDialog
 {
-  ThunarAbstractDialog __parent__;
-  ThunarPreferences   *preferences;
+  XfceTitledDialog   __parent__;
+  ThunarPreferences *preferences;
 };
 
 
@@ -81,7 +81,7 @@
 NULL,
   };
 
-  type = g_type_register_static (THUNAR_TYPE_ABSTRACT_DIALOG, 
I_("ThunarPreferencesDialog"), &info, 0);
+  type = g_type_register_static (XFCE_TYPE_TITLED_DIALOG, 
I_("ThunarPreferencesDialog"), &info, 0);
 }
 
   return type;
@@ -215,6 +215,7 @@
   /* configure the dialog properties */
   gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
   gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
+  gtk_window_set_icon_name (GTK_WINDOW (dialog), "xfce-filemanager");
   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
   gtk_window_set_title (GTK_WINDOW (dialog), _("File Manager Preferences"));
 

Copied: thunar/trunk/thunar/xfce-heading.c (from rev 23615, 
libexo/trunk/exo-support/xfce-heading.c)
===
--- thunar/trunk/thunar/xfce-heading.c  (rev 0)
+++ thunar/trunk/thunar/xfce-heading.c  2006-11-03 19:35:40 UTC (rev 23617)
@@ -0,0 +1,755 @@
+/* $Id$ */
+/*-
+ * Copyright (c) 2006 Benedikt Meurer <[EMAIL PROTECTED]>.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Publ

[Xfce4-commits] r23616 - xfwm4/trunk/src

2006-11-03 Thread Olivier Fourdan
Author: olivier
Date: 2006-11-03 19:30:56 + (Fri, 03 Nov 2006)
New Revision: 23616

Modified:
   xfwm4/trunk/src/client.c
Log:
Resize the frame before the client, otherwise OOo 1.1.x gets totally confused 
on resize.

Modified: xfwm4/trunk/src/client.c
===
--- xfwm4/trunk/src/client.c2006-11-03 19:15:42 UTC (rev 23615)
+++ xfwm4/trunk/src/client.c2006-11-03 19:30:56 UTC (rev 23616)
@@ -593,29 +593,25 @@
 unsigned long change_mask;
 XWindowChanges change_values;
 
-if ((mask & (CWWidth | CWHeight)) || (flags & CFG_FORCE_REDRAW))
+change_mask = (mask & (CWX | CWY | CWWidth | CWHeight));
+if (flags & CFG_FORCE_REDRAW)
 {
-change_mask = (mask & (CWWidth | CWHeight));
-change_values.width = c->width;
-change_values.height = c->height;
-
-if (flags & CFG_FORCE_REDRAW)
-{
-change_mask |= (CWX | CWY);
-change_values.x = frameLeft (c);
-change_values.y = frameTop (c);
-}
-XConfigureWindow (clientGetXDisplay (c), c->window, change_mask, 
&change_values);
+change_mask |= (CWX | CWY);
 }
-if (mask & (CWX | CWY | CWWidth | CWHeight))
+
+if (change_mask & (CWX | CWY | CWWidth | CWHeight))
 {
-change_mask = (mask & (CWX | CWY | CWWidth | CWHeight));
 change_values.x = frameX (c);
 change_values.y = frameY (c);
 change_values.width = frameWidth (c);
 change_values.height = frameHeight (c);
-
 XConfigureWindow (clientGetXDisplay (c), c->frame, change_mask, 
&change_values);
+
+change_values.x = frameLeft (c);
+change_values.y = frameTop (c);
+change_values.width = c->width;
+change_values.height = c->height;
+XConfigureWindow (clientGetXDisplay (c), c->window, change_mask, 
&change_values);
 }
 }
 

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23615 - libxfcegui4/trunk/libxfcegui4

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 19:15:42 + (Fri, 03 Nov 2006)
New Revision: 23615

Modified:
   libxfcegui4/trunk/libxfcegui4/netk-application.c
   libxfcegui4/trunk/libxfcegui4/netk-class-group.c
   libxfcegui4/trunk/libxfcegui4/netk-pager.c
   libxfcegui4/trunk/libxfcegui4/netk-private.h
   libxfcegui4/trunk/libxfcegui4/netk-screen.c
   libxfcegui4/trunk/libxfcegui4/netk-tasklist.c
   libxfcegui4/trunk/libxfcegui4/netk-trayicon.c
   libxfcegui4/trunk/libxfcegui4/netk-util.c
   libxfcegui4/trunk/libxfcegui4/netk-window.c
   libxfcegui4/trunk/libxfcegui4/netk-workspace.c
Log:
Apply patch from Nick Schermer <[EMAIL PROTECTED]> to plug memory leaks and 
reduce relocations. Bug #2377.

Modified: libxfcegui4/trunk/libxfcegui4/netk-application.c
===
--- libxfcegui4/trunk/libxfcegui4/netk-application.c2006-11-03 18:39:24 UTC 
(rev 23614)
+++ libxfcegui4/trunk/libxfcegui4/netk-application.c2006-11-03 19:15:42 UTC 
(rev 23615)
@@ -80,31 +80,20 @@
 GType
 netk_application_get_type (void)
 {
-static GType object_type = 0;
+static GType type = G_TYPE_INVALID;
 
-g_type_init ();
-
-if (!object_type)
+if (G_UNLIKELY (type == G_TYPE_INVALID))
 {
-static const GTypeInfo object_info = {
-sizeof (NetkApplicationClass),
-(GBaseInitFunc) NULL,
-(GBaseFinalizeFunc) NULL,
-(GClassInitFunc) netk_application_class_init,
-NULL,   /* class_finalize */
-NULL,   /* class_data */
-sizeof (NetkApplication),
-0,  /* n_preallocs */
-(GInstanceInitFunc) netk_application_init,
-NULL   /* value_table */
-};
-
-object_type =
-g_type_register_static (G_TYPE_OBJECT, "NetkApplication",
-&object_info, 0);
+type = _netk_g_type_register_simple (G_TYPE_OBJECT,
+ "NetkApplication",
+ sizeof (NetkApplicationClass),
+ netk_application_class_init,
+ sizeof (NetkApplication),
+ netk_application_init,
+ 0);   
 
 }
 
-return object_type;
+return type;
 }
 
 static void
@@ -128,14 +117,14 @@
 object_class->finalize = netk_application_finalize;
 
 signals[NAME_CHANGED] =
-g_signal_new ("name_changed", G_OBJECT_CLASS_TYPE (object_class),
+g_signal_new (I_("name_changed"), G_OBJECT_CLASS_TYPE (object_class),
   G_SIGNAL_RUN_LAST,
   G_STRUCT_OFFSET (NetkApplicationClass, name_changed),
   NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
   0);
 
 signals[ICON_CHANGED] =
-g_signal_new ("icon_changed", G_OBJECT_CLASS_TYPE (object_class),
+g_signal_new (I_("icon_changed"), G_OBJECT_CLASS_TYPE (object_class),
   G_SIGNAL_RUN_LAST,
   G_STRUCT_OFFSET (NetkApplicationClass, icon_changed),
   NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,

Modified: libxfcegui4/trunk/libxfcegui4/netk-class-group.c
===
--- libxfcegui4/trunk/libxfcegui4/netk-class-group.c2006-11-03 18:39:24 UTC 
(rev 23614)
+++ libxfcegui4/trunk/libxfcegui4/netk-class-group.c2006-11-03 19:15:42 UTC 
(rev 23615)
@@ -64,30 +64,20 @@
 GType
 netk_class_group_get_type (void)
 {
-static GType object_type = 0;
+static GType type = G_TYPE_INVALID;
 
-g_type_init ();
-
-if (!object_type)
+if (G_UNLIKELY (type == G_TYPE_INVALID))
 {
-static const GTypeInfo object_info = {
-sizeof (NetkClassGroupClass),
-(GBaseInitFunc) NULL,
-(GBaseFinalizeFunc) NULL,
-(GClassInitFunc) netk_class_group_class_init,
-NULL,   /* class_finalize */
-NULL,   /* class_data */
-sizeof (NetkClassGroup),
-0,  /* n_preallocs */
-(GInstanceInitFunc) netk_class_group_init,
-NULL/* value_table */
-};
-
-object_type = g_type_register_static (G_TYPE_OBJECT,
-"NetkClassGroup", &object_info, 0);
+type = _netk_g_type_register_simple (G_TYPE_OBJECT,
+ "NetkClassGroup",
+ sizeof (NetkClassGroupClass),
+ netk_class_group_class_init,
+ sizeof (NetkClassGroup),
+ netk_class_group_

[Xfce4-commits] r23614 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 18:39:24 + (Fri, 03 Nov 2006)
New Revision: 23614

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/thunar-window.c
Log:
2006-11-03  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/thunar-window.c(thunar_window_set_current_directory): Place
  focus on the main view after changing the currently displayed
  folder. Bug #2367.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-03 18:27:31 UTC (rev 23613)
+++ thunar/trunk/ChangeLog  2006-11-03 18:39:24 UTC (rev 23614)
@@ -1,5 +1,11 @@
 2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * thunar/thunar-window.c(thunar_window_set_current_directory): Place
+ focus on the main view after changing the currently displayed
+ folder. Bug #2367.
+
+2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
+
* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Make sure
  emblems don't get too large with SVG icon themes. Bug #2466.
 

Modified: thunar/trunk/thunar/thunar-window.c
===
--- thunar/trunk/thunar/thunar-window.c 2006-11-03 18:27:31 UTC (rev 23613)
+++ thunar/trunk/thunar/thunar-window.c 2006-11-03 18:39:24 UTC (rev 23614)
@@ -2302,6 +2302,10 @@
 
   /* update window icon and title */
   thunar_window_current_directory_changed (current_directory, window);
+
+  /* grab the focus to the main view */
+  if (G_LIKELY (window->view != NULL))
+gtk_widget_grab_focus (window->view);
 }
 
   /* enable the 'Open new window' action if we have a valid directory */

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23613 - in libexo/trunk: . exo

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 18:27:31 + (Fri, 03 Nov 2006)
New Revision: 23613

Modified:
   libexo/trunk/ChangeLog
   libexo/trunk/exo/exo-url.c
Log:
2006-11-03  Benedikt Meurer <[EMAIL PROTECTED]>

* exo/exo-url.c: Underscore is a valid character for usernames.
  Bug #2453.




Modified: libexo/trunk/ChangeLog
===
--- libexo/trunk/ChangeLog  2006-11-03 16:28:03 UTC (rev 23612)
+++ libexo/trunk/ChangeLog  2006-11-03 18:27:31 UTC (rev 23613)
@@ -1,5 +1,10 @@
 2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * exo/exo-url.c: Underscore is a valid character for usernames.
+ Bug #2453.
+
+2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
+
* exo/exo-cell-renderer-icon.c(exo_cell_renderer_icon_render): Handle
  internal icons properly. Bug #2488.
 

Modified: libexo/trunk/exo/exo-url.c
===
--- libexo/trunk/exo/exo-url.c  2006-11-03 16:28:03 UTC (rev 23612)
+++ libexo/trunk/exo/exo-url.c  2006-11-03 18:27:31 UTC (rev 23613)
@@ -61,9 +61,9 @@
 #define MATCH_BROWSER2  "(www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS 
".]+(:[0-9]+)?" \
 "(/[-A-Za-z0-9_$.+!*(),;:@&=?/~#%]*[^]'.}>) 
\t\r\n,\\\"])?"
 #if !defined(__GLIBC__)
-#define MATCH_MAILER"(mailto:)[EMAIL PROTECTED](\\.[a-z0-9][a-z0-9-]*)+"
+#define MATCH_MAILER"(mailto:)[EMAIL PROTECTED](\\.[a-z0-9][a-z0-9-]*)+"
 #else
-#define MATCH_MAILER"\\<(mailto:)[EMAIL 
PROTECTED](\\.[a-z0-9][a-z0-9-]*)+\\>"
+#define MATCH_MAILER"\\<(mailto:)[EMAIL 
PROTECTED](\\.[a-z0-9][a-z0-9-]*)+\\>"
 #endif
 
 

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23612 - in thunar/trunk: . thunar

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 16:28:03 + (Fri, 03 Nov 2006)
New Revision: 23612

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar/thunar-icon-renderer.c
Log:
2006-11-03  Benedikt Meurer <[EMAIL PROTECTED]>

* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Make sure
  emblems don't get too large with SVG icon themes. Bug #2466.




Modified: thunar/trunk/ChangeLog
===
--- thunar/trunk/ChangeLog  2006-11-03 16:23:04 UTC (rev 23611)
+++ thunar/trunk/ChangeLog  2006-11-03 16:28:03 UTC (rev 23612)
@@ -1,5 +1,10 @@
 2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
 
+   * thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Make sure
+ emblems don't get too large with SVG icon themes. Bug #2466.
+
+2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
+
* thunar/thunar-trash-action.{c,h}, thunar/Makefile.am,
  thunar/thunar-stock.{c,h}, thunar/thunar-window-ui.xml,
  thunar/thunar-window.c: Add a "Trash" entry to the "Go" menu.

Modified: thunar/trunk/thunar/thunar-icon-renderer.c
===
--- thunar/trunk/thunar/thunar-icon-renderer.c  2006-11-03 16:23:04 UTC (rev 
23611)
+++ thunar/trunk/thunar/thunar-icon-renderer.c  2006-11-03 16:28:03 UTC (rev 
23612)
@@ -504,10 +504,10 @@
   emblem_area.height = gdk_pixbuf_get_height (emblem);
 
   /* shrink insane emblems */
-  if (G_UNLIKELY (MAX (emblem_area.width, emblem_area.height) > (2 
* icon_renderer->size) / 3))
+  if (G_UNLIKELY (MAX (emblem_area.width, emblem_area.height) > 
MIN ((2 * icon_renderer->size) / 3, 36)))
 {
   /* scale down the emblem */
-  temp = exo_gdk_pixbuf_scale_ratio (emblem, (2 * 
icon_renderer->size) / 3);
+  temp = exo_gdk_pixbuf_scale_ratio (emblem, MIN ((2 * 
icon_renderer->size) / 3, 36));
   g_object_unref (G_OBJECT (emblem));
   emblem = temp;
 

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23610 - in libexo/trunk: . exo

2006-11-03 Thread Benedikt Meurer
Author: benny
Date: 2006-11-03 15:21:22 + (Fri, 03 Nov 2006)
New Revision: 23610

Modified:
   libexo/trunk/ChangeLog
   libexo/trunk/exo/exo-cell-renderer-icon.c
Log:
2006-11-03  Benedikt Meurer <[EMAIL PROTECTED]>

* exo/exo-cell-renderer-icon.c(exo_cell_renderer_icon_render): Handle
  internal icons properly. Bug #2488.




Modified: libexo/trunk/ChangeLog
===
--- libexo/trunk/ChangeLog  2006-11-03 14:21:58 UTC (rev 23609)
+++ libexo/trunk/ChangeLog  2006-11-03 15:21:22 UTC (rev 23610)
@@ -1,15 +1,16 @@
+2006-11-03 Benedikt Meurer <[EMAIL PROTECTED]>
+
+   * exo/exo-cell-renderer-icon.c(exo_cell_renderer_icon_render): Handle
+ internal icons properly. Bug #2488.
+
 2006-10-30 Jean-François <[EMAIL PROTECTED]>
+
* configure.in.in, docs/manual/fr,
-   docs/manual/fr/exo-preferred-applications.xml.in,
-   docs/manual/fr/images,
-   docs/manual/fr/images/exo-preferred-applications-webbrowser-menu.png,
-   docs/manual/fr/images/exo-preferred-applications-internet.png,
-   docs/manual/fr/images/exo-preferred-applications-webbrowser-custom.png,
-   docs/manual/fr/images/exo-preferred-applications-utilities.png,
-   docs/manual/fr/images/Makefile.am, docs/manual/fr/Makefile.am,
-   docs/manual/Makefile.am, po-doc/LINGUAS, po-doc/fr.po,
-   po-doc/ChangeLog: Add French translations of the manual by Maximilian
-   Schleiss. Bug #2478.
+ docs/manual/fr/exo-preferred-applications.xml.in,
+ docs/manual/fr/images/, docs/manual/fr/Makefile.am,
+ docs/manual/Makefile.am, po-doc/LINGUAS, po-doc/fr.po,
+ po-doc/ChangeLog: Add French translations of the manual by Maximilian
+ Schleiss. Bug #2478.
 
 2006-09-28 Benedikt Meurer <[EMAIL PROTECTED]>
 

Modified: libexo/trunk/exo/exo-cell-renderer-icon.c
===
--- libexo/trunk/exo/exo-cell-renderer-icon.c   2006-11-03 14:21:58 UTC (rev 
23609)
+++ libexo/trunk/exo/exo-cell-renderer-icon.c   2006-11-03 15:21:22 UTC (rev 
23610)
@@ -381,7 +381,7 @@
 
   /* check if we have an SVG icon here */
   filename = gtk_icon_info_get_filename (icon_info);
-  if (g_str_has_suffix (filename, ".svg"))
+  if (filename != NULL && g_str_has_suffix (filename, ".svg"))
 {
   /* loading SVG icons is terribly slow, so we try to use thumbnail 
instead, and we use the
* real available cell area directly here, because loading 
thumbnails involves scaling anyway

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23609 - libexo/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 14:21:58 + (Fri, 03 Nov 2006)
New Revision: 23609

Added:
   libexo/trunk/po/nl.po
Modified:
   libexo/trunk/po/LINGUAS
Log:
Added Dutch translation for libexo



Modified: libexo/trunk/po/LINGUAS
===
--- libexo/trunk/po/LINGUAS 2006-11-03 12:49:49 UTC (rev 23608)
+++ libexo/trunk/po/LINGUAS 2006-11-03 14:21:58 UTC (rev 23609)
@@ -1,2 +1,2 @@
 # set of available languages (in alphabetic order)
-ca cs de dz el en_GB es et eu fi fr gl he hu it ja ka lt pl pt_BR ro ru sv
+ca cs de dz el en_GB es et eu fi fr gl he hu it ja ka lt pl pt_BR ro ru sv nl

Added: libexo/trunk/po/nl.po
===
--- libexo/trunk/po/nl.po   (rev 0)
+++ libexo/trunk/po/nl.po   2006-11-03 14:21:58 UTC (rev 23609)
@@ -0,0 +1,1082 @@
+# Dutch translations for exo package.
+# Copyright (C) 2004-2006 os-cillation e.K.
+# This file is distributed under the same license as the libexo package.
+# Stephan Arts <[EMAIL PROTECTED]>, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: exo 0.3.1.10rc1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-09-10 13:35+0200\n"
+"PO-Revision-Date: 2006-11-03 15:05+0100\n"
+"Last-Translator: Stephan Arts <[EMAIL PROTECTED]>\n"
+"Language-Team: Dutch <[EMAIL PROTECTED]>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ASCII\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../exo/exo-cell-renderer-ellipsized-text.c:138
+#: ../exo/exo-cell-renderer-icon.c:145
+msgid "Follow state"
+msgstr "Volg status"
+
+#: ../exo/exo-cell-renderer-ellipsized-text.c:139
+#: ../exo/exo-cell-renderer-icon.c:146
+msgid "Render differently based on the selection state."
+msgstr ""
+
+#: ../exo/exo-cell-renderer-icon.c:167
+msgid "Icon"
+msgstr "Pictogram"
+
+#: ../exo/exo-cell-renderer-icon.c:168
+msgid "The icon to render."
+msgstr ""
+
+#: ../exo/exo-cell-renderer-icon.c:189
+msgid "size"
+msgstr "grootte"
+
+#: ../exo/exo-cell-renderer-icon.c:190
+msgid "The size of the icon to render in pixels."
+msgstr ""
+
+#: ../exo/exo-gdk-pixbuf-extensions.c:770
+#, c-format
+msgid "Failed to open file \"%s\": %s"
+msgstr "Het openen van bestand \"%s\" is mislukt: %s"
+
+#: ../exo/exo-gdk-pixbuf-extensions.c:832
+#, c-format
+msgid "Failed to read file \"%s\": %s"
+msgstr "Het lezen van bestand \"%s\" is mislukt: %s"
+
+#: ../exo/exo-gdk-pixbuf-extensions.c:873
+#, c-format
+msgid ""
+"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:249 ../exo/exo-icon-view.c:784
+msgid "Orientation"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:250
+msgid "The orientation of the iconbar"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:266 ../exo/exo-icon-view.c:801
+msgid "Pixbuf column"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:267 ../exo/exo-icon-view.c:802
+msgid "Model column used to retrieve the icon pixbuf from"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:282 ../exo/exo-icon-view.c:928
+msgid "Text column"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:283 ../exo/exo-icon-view.c:929
+msgid "Model column used to retrieve the text from"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:295
+msgid "Icon Bar Model"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:296
+msgid "Model for the icon bar"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:312
+msgid "Active"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:313
+msgid "Active item index"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:319 ../exo/exo-icon-bar.c:320
+msgid "Active item fill color"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:326 ../exo/exo-icon-bar.c:327
+msgid "Active item border color"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:333 ../exo/exo-icon-bar.c:334
+msgid "Active item text color"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:340 ../exo/exo-icon-bar.c:341
+msgid "Cursor item fill color"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
+msgid "Cursor item border color"
+msgstr ""
+
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
+msgid "Cursor item text color"
+msgstr ""
+
+#. EXO_ICON_CHOOSER_CONTEXT_ACTIONS
+#: ../exo/exo-icon-chooser-dialog.c:85
+msgid "Action Icons"
+msgstr "Actie Pictogrammen"
+
+#. EXO_ICON_CHOOSER_CONTEXT_ANIMATIONS
+#: ../exo/exo-icon-chooser-dialog.c:87
+msgid "Animations"
+msgstr "Animaties"
+
+#. EXO_ICON_CHOOSER_CONTEXT_APPLICATIONS
+#: ../exo/exo-icon-chooser-dialog.c:89
+msgid "Application Icons"
+msgstr "Programma Pictogrammen"
+
+#. EXO_ICON_CHOOSER_CONTEXT_CATEGORIES
+#: ../exo/exo-icon-chooser-dialog.c:91
+msgid "Menu Icons"
+msgstr "Menu Pictogrammen"
+
+#. EXO_ICON_CHOOSER_CONTEXT_DEVICES
+#: ../exo/exo-icon-chooser-dialog.c:93
+msgid "Device Icons"
+msgstr "Apparaat Pictogrammen"
+
+#. EXO_ICON_CHOOSER_CONTEXT_EMBLEMS
+#: ../exo/exo-icon-chooser-dialog.c:95
+msgid "Emblems"
+msgstr "Emblemen"
+
+#. EXO_ICON_CHOOSER_CONTEXT_EMOTES
+#: ../exo/exo-icon-chooser-dialog.c:97
+msgid "E

[Xfce4-commits] r23608 - xfce4-session/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 12:49:49 + (Fri, 03 Nov 2006)
New Revision: 23608

Modified:
   xfce4-session/trunk/po/nl.po
Log:
Fixed typo in translation



Modified: xfce4-session/trunk/po/nl.po
===
--- xfce4-session/trunk/po/nl.po2006-11-03 11:44:50 UTC (rev 23607)
+++ xfce4-session/trunk/po/nl.po2006-11-03 12:49:49 UTC (rev 23608)
@@ -324,7 +324,7 @@
 #: ../xfce4-autostart-editor/xfae-window.c:89
 #: ../xfce4-autostart-editor/xfae-window.c:106
 msgid "Autostarted applications"
-msgstr "Automatisch opstartten"
+msgstr "Automatisch opstarten"
 
 #: ../xfce4-autostart-editor/xfae-window.c:124
 msgid ""

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23607 - xfwm4/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 11:44:50 + (Fri, 03 Nov 2006)
New Revision: 23607

Modified:
   xfwm4/trunk/po/nl.po
Log:
Updated Dutch xfwm4 translation



Modified: xfwm4/trunk/po/nl.po
===
--- xfwm4/trunk/po/nl.po2006-11-03 11:16:52 UTC (rev 23606)
+++ xfwm4/trunk/po/nl.po2006-11-03 11:44:50 UTC (rev 23607)
@@ -8,8 +8,8 @@
 "Project-Id-Version: xfwm4 4.3.99.1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-10-09 20:49+0200\n"
-"PO-Revision-Date: 2005-08-19 21:17+0900\n"
-"Last-Translator: Jasper Huijsmans <[EMAIL PROTECTED]>\n"
+"PO-Revision-Date: 2006-11-3 12:41+0100\n"
+"Last-Translator: Stephan Arts <[EMAIL PROTECTED]>\n"
 "Language-Team: Dutch <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -17,7 +17,7 @@
 
 #: ../mcs-plugin/margins.c:130
 msgid "Workspace Margins"
-msgstr "Bureaublad Marges"
+msgstr "Werkblad Marges"
 
 #: ../mcs-plugin/margins.c:136
 msgid ""
@@ -44,18 +44,17 @@
 
 #. the button label in the xfce-mcs-manager dialog
 #: ../mcs-plugin/workspaces_plugin.c:110
-#, fuzzy
 msgid "Button Label|Workspaces and Margins"
-msgstr "Bureaubladen en Marges"
+msgstr "Werkbladen en Marges"
 
 #: ../mcs-plugin/workspaces_plugin.c:144
 msgid "Workspaces and Margins"
-msgstr "Bureaubladen en Marges"
+msgstr "Werkbladen en Marges"
 
 #: ../mcs-plugin/workspaces_plugin.c:162 ../mcs-plugin/wmtweaks_plugin.c:522
 #: ../mcs-plugin/workspaces.c:516
 msgid "Workspaces"
-msgstr "Bureaubladen"
+msgstr "Werkbladen"
 
 #: ../mcs-plugin/workspaces_plugin.c:171
 msgid "Margins"
@@ -63,7 +62,7 @@
 
 #: ../mcs-plugin/wmtweaks_plugin.c:373
 msgid "None"
-msgstr ""
+msgstr "Geen"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:381
 #: ../mcs-plugin/xfce-wmtweaks-settings.desktop.in.h:2
@@ -78,12 +77,11 @@
 
 #: ../mcs-plugin/wmtweaks_plugin.c:406
 msgid "Include hidden (i.e. iconified) windows"
-msgstr ""
+msgstr "Voeg verborgen (geminimalizeerde) vensters toe"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:412
-#, fuzzy
 msgid "Cycle through windows from all workspaces"
-msgstr "Venster naar linker-bureablad verplaatsen"
+msgstr ""
 
 #: ../mcs-plugin/wmtweaks_plugin.c:417
 msgid "Cycling"
@@ -124,7 +122,7 @@
 
 #: ../mcs-plugin/wmtweaks_plugin.c:483
 msgid "Accessibility"
-msgstr ""
+msgstr "Toegankelijkheid"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:496
 msgid "Switch workspaces using the mouse wheel over the desktop"
@@ -143,24 +141,23 @@
 #, fuzzy
 msgid "Wrap workspaces when the first or last workspace is reached"
 msgstr ""
-"Wissel bureaubladen wanneer de muisaanwijzer de rand van het scherm bereikt"
+"Wissel werkbladen wanneer de muisaanwijzer de rand van het scherm bereikt"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:534
 msgid "Minimum size of windows to trigger smart placement"
 msgstr ""
 
 #: ../mcs-plugin/wmtweaks_plugin.c:535
-#, fuzzy
 msgid "Size|Small"
 msgstr "Klein"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:535
 msgid "Size|Large"
-msgstr ""
+msgstr "Groot"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:539
 msgid "Placement"
-msgstr ""
+msgstr "Plaatsing"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:559
 msgid "Enable display compositing"
@@ -179,21 +176,20 @@
 msgstr ""
 
 #: ../mcs-plugin/wmtweaks_plugin.c:591
-#, fuzzy
 msgid "Opacity of window decorations"
-msgstr "Inhoud venster tonen bij veranderen grootte"
+msgstr "Ondoorzichtigheid van venster decoraties"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:591 ../mcs-plugin/wmtweaks_plugin.c:597
 #: ../mcs-plugin/wmtweaks_plugin.c:603 ../mcs-plugin/wmtweaks_plugin.c:609
 #: ../mcs-plugin/wmtweaks_plugin.c:615
 msgid "Transparent"
-msgstr ""
+msgstr "Transparant"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:592 ../mcs-plugin/wmtweaks_plugin.c:598
 #: ../mcs-plugin/wmtweaks_plugin.c:604 ../mcs-plugin/wmtweaks_plugin.c:610
 #: ../mcs-plugin/wmtweaks_plugin.c:616
 msgid "Opaque"
-msgstr ""
+msgstr "Ondoorzichtig"
 
 #: ../mcs-plugin/wmtweaks_plugin.c:597
 #, fuzzy
@@ -238,7 +234,7 @@
 #: ../mcs-plugin/workspaces.c:338 ../mcs-plugin/xfwm4_shortcuteditor.c:480
 #, c-format
 msgid "Workspace %d"
-msgstr "Bureaublad %d"
+msgstr "Werkblad %d"
 
 #: ../mcs-plugin/workspaces.c:348
 msgid "Name:"
@@ -246,15 +242,15 @@
 
 #: ../mcs-plugin/workspaces.c:427
 msgid "Click on a workspace name to edit it"
-msgstr "Klik op naam bureaublad om hem te bewerken"
+msgstr "Klik op een werkblad naam om hem te bewerken"
 
 #: ../mcs-plugin/workspaces.c:493
 msgid "Number of workspaces:"
-msgstr "Aantal bureaubladen"
+msgstr "Aantal werkbladen"
 
 #: ../mcs-plugin/workspaces.c:527
 msgid "Workspace names"
-msgstr "Bureaubladnamen"
+msgstr "Werkblad namen"
 
 #: ../mcs-plugin/xfwm4_plugin.c:68
 msgid "Menu"
@@ -438,41 +434,38 @@
 msgstr "Afstand :"
 
 #: ../mcs-plugin/xfwm4_plugin.c:1724
-#, fuzzy
 msgid "Distance|Small"
-msgstr "Afstand :"
+msgstr "Kort"
 
 #: ../mcs-plugin/xfwm4_plugin.c:1731
-#, fuzzy
 msgid "Distance|Wide"
-msgstr "Afstand :"
+msgstr "Lang"
 
 #: ../mcs-plugin/xfwm4_plugin.c:1

[Xfce4-commits] r23606 - xfdesktop/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 11:16:52 + (Fri, 03 Nov 2006)
New Revision: 23606

Modified:
   xfdesktop/trunk/po/nl.po
Log:
Updated dutch xfdesktop translation


Modified: xfdesktop/trunk/po/nl.po
===
--- xfdesktop/trunk/po/nl.po2006-11-03 10:54:42 UTC (rev 23605)
+++ xfdesktop/trunk/po/nl.po2006-11-03 11:16:52 UTC (rev 23606)
@@ -8,8 +8,8 @@
 "Project-Id-Version: xfdesktop 4.3.99.1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-10-17 23:10-0700\n"
-"PO-Revision-Date: 2005-08-18 22:58+0900\n"
-"Last-Translator: Jasper Huijsmans <[EMAIL PROTECTED]>\n"
+"PO-Revision-Date: 2006-11-03 12:13+0100\n"
+"Last-Translator: Stephan Arts <[EMAIL PROTECTED]>\n"
 "Language-Team: Dutch <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,24 +81,21 @@
 #: ../menueditor/menueditor-add-dialog.c:330
 #: ../menueditor/menueditor-edit-dialog.c:191
 #: ../menueditor/menueditor-edit-dialog.c:586
-#, fuzzy
 msgid "No icon"
-msgstr "_Pictogram:"
+msgstr "Geen pictogram"
 
 #: ../menueditor/menueditor-add-dialog.c:225
 #: ../menueditor/menueditor-add-dialog.c:226
 #: ../menueditor/menueditor-edit-dialog.c:203
 #: ../menueditor/menueditor-edit-dialog.c:204
-#, fuzzy
 msgid "Themed icon:"
-msgstr "Pictogram Selecteren"
+msgstr ""
 
 #. allocate the chooser dialog
 #: ../menueditor/menueditor-add-dialog.c:252
 #: ../menueditor/menueditor-add-dialog.c:347
 #: ../menueditor/menueditor-edit-dialog.c:230
 #: ../menueditor/menueditor-edit-dialog.c:384
-#, fuzzy
 msgid "Select icon"
 msgstr "Pictogram Selecteren"
 
@@ -121,13 +118,13 @@
 #: ../settings/appearance-settings.c:536
 #: ../settings/backdrop-list-manager.c:439
 msgid "Image Files"
-msgstr "Plaatjes"
+msgstr "Afbeeldingen"
 
 #. Start Notify check button
 #: ../menueditor/menueditor-add-dialog.c:283
 #: ../menueditor/menueditor-edit-dialog.c:261
 msgid "Use startup _notification"
-msgstr "Opstartnotificatie gebruiken"
+msgstr "Opstart_notificatie gebruiken"
 
 #. Run in terminal check button
 #: ../menueditor/menueditor-add-dialog.c:288
@@ -143,29 +140,28 @@
 
 #: ../menueditor/menueditor-add-dialog.c:442
 #: ../menueditor/menueditor-edit-dialog.c:301
-#, fuzzy
 msgid "Executable Files"
-msgstr "Menubestand Selecteren"
+msgstr "Uitvoerbare Bestanden"
 
 #: ../menueditor/menueditor-add-dialog.c:457
 #: ../menueditor/menueditor-edit-dialog.c:316
 msgid "Perl Scripts"
-msgstr ""
+msgstr "Perl Scripts"
 
 #: ../menueditor/menueditor-add-dialog.c:463
 #: ../menueditor/menueditor-edit-dialog.c:322
 msgid "Python Scripts"
-msgstr ""
+msgstr "Python Scripts"
 
 #: ../menueditor/menueditor-add-dialog.c:469
 #: ../menueditor/menueditor-edit-dialog.c:328
 msgid "Ruby Scripts"
-msgstr ""
+msgstr "Ruby Scripts"
 
 #: ../menueditor/menueditor-add-dialog.c:475
 #: ../menueditor/menueditor-edit-dialog.c:334
 msgid "Shell Scripts"
-msgstr ""
+msgstr "Shell Scripts"
 
 #: ../menueditor/menueditor-add-external-dialog.c:100
 #, fuzzy
@@ -192,7 +188,7 @@
 #: ../menueditor/menueditor-edit-external-dialog.c:117
 #, fuzzy
 msgid "Select external menu"
-msgstr "Een extern menu toevoegen"
+msgstr "Een extern menu selecteren"
 
 #: ../menueditor/menueditor-add-external-dialog.c:146
 #: ../menueditor/menueditor-edit-external-dialog.c:126
@@ -231,12 +227,11 @@
 #: ../menueditor/menueditor-edit-external-dialog.c:96
 #, fuzzy
 msgid "Edit external menu entry"
-msgstr "Een extern menu toevoegen"
+msgstr "Een extern menu aanpassen"
 
 #: ../menueditor/menueditor-main.c:43
-#, fuzzy
 msgid "Xfce4-MenuEditor"
-msgstr "Xfce 4 Menu Editor"
+msgstr "Xfce4 Menu Aanpassen"
 
 #: ../menueditor/menueditor-main-window.c:140
 msgid "_File"
@@ -244,7 +239,7 @@
 
 #: ../menueditor/menueditor-main-window.c:141
 msgid "_New"
-msgstr ""
+msgstr "_Nieuw"
 
 #: ../menueditor/menueditor-main-window.c:141
 #, fuzzy
@@ -255,17 +250,17 @@
 #: ../src/xfdesktop-file-icon-manager.c:1632
 #: ../src/xfdesktop-special-file-icon.c:563 ../src/xfdesktop-volume-icon.c:493
 msgid "_Open"
-msgstr ""
+msgstr "_Open"
 
 #: ../menueditor/menueditor-main-window.c:142
 #, fuzzy
 msgid "Open existing menu"
-msgstr "Standaard menu openen"
+msgstr "Bestaand menu openen"
 
 #: ../menueditor/menueditor-main-window.c:143
 #, fuzzy
 msgid "Open _default menu"
-msgstr "Standaard menu openen"
+msgstr "Stan_daard menu openen"
 
 #: ../menueditor/menueditor-main-window.c:143
 msgid "Open default menu"
@@ -273,17 +268,15 @@
 
 #: ../menueditor/menueditor-main-window.c:144
 msgid "_Save"
-msgstr ""
+msgstr "Op_slaan"
 
 #: ../menueditor/menueditor-main-window.c:144
-#, fuzzy
 msgid "Save modifications"
-msgstr "Wijzigingen negeren"
+msgstr "Wijzigingen opslaan"
 
 #: ../menueditor/menueditor-main-window.c:145
-#, fuzzy
 msgid "Save _as..."
-msgstr "Opslaan als..."
+msgstr "Opslaan _als..."
 
 #: ../menueditor/menueditor-main-window.c:145
 msgid "Save menu under a given name"
@@ -291,7 +284,7 @@
 
 #: ../menueditor/menueditor-main-wi

[Xfce4-commits] r23605 - xfce4-session/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 10:54:42 + (Fri, 03 Nov 2006)
New Revision: 23605

Modified:
   xfce4-session/trunk/po/nl.po
Log:
Updated Dutch xfce4-session translation



Modified: xfce4-session/trunk/po/nl.po
===
--- xfce4-session/trunk/po/nl.po2006-11-03 10:10:45 UTC (rev 23604)
+++ xfce4-session/trunk/po/nl.po2006-11-03 10:54:42 UTC (rev 23605)
@@ -8,8 +8,8 @@
 "Project-Id-Version: xfce4-session 4.3.99.1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-05-06 04:22+0900\n"
-"PO-Revision-Date: 2005-08-18 01:35+0900\n"
-"Last-Translator: Jasper Huijsmans <[EMAIL PROTECTED]>\n"
+"PO-Revision-Date: 2006-11-03 11:50+0100\n"
+"Last-Translator: Stephan Arts <[EMAIL PROTECTED]>\n"
 "Language-Team: Dutch <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -60,21 +60,22 @@
 msgstr "Balou configureren..."
 
 #: ../engines/balou/config.c:969
-#, fuzzy
 msgid "Balou"
-msgstr "Balou thema"
+msgstr "Balou"
 
 #: ../engines/balou/config.c:970
+#, fuzzy
 msgid "Balou Splash Engine"
-msgstr ""
+msgstr "Balou Beginscherm"
 
 #: ../engines/mice/mice.c:369
 msgid "Mice"
-msgstr ""
+msgstr "Muizen"
 
 #: ../engines/mice/mice.c:370
+#, fuzzy
 msgid "Mice Splash Engine"
-msgstr ""
+msgstr "Muizen Beginscherm"
 
 #: ../engines/simple/simple.c:319
 msgid "Choose image..."
@@ -110,11 +111,12 @@
 
 #: ../engines/simple/simple.c:509
 msgid "Simple"
-msgstr ""
+msgstr "Simpel"
 
 #: ../engines/simple/simple.c:510
+#, fuzzy
 msgid "Simple Splash Engine"
-msgstr ""
+msgstr "Simpel Beginscherm"
 
 #: ../settings/session/session.c:137
 msgid "Session chooser"
@@ -224,7 +226,6 @@
 
 #. the button label in the xfce-mcs-manager dialog
 #: ../settings/session/session.c:382
-#, fuzzy
 msgid "Button Label|Sessions and Startup"
 msgstr "Sessiebeheer"
 
@@ -273,34 +274,32 @@
 
 #: ../settings/splash/splash.c:546
 msgid "Homepage:"
-msgstr "Thuispagina:"
+msgstr "Webpagina:"
 
 #. the button label in the xfce-mcs-manager dialog
 #: ../settings/splash/splash.c:584
-#, fuzzy
 msgid "Button Label|Splash Screen"
 msgstr "Beginscherm"
 
 #: ../xfce4-autostart-editor/xfae-dialog.c:99
 msgid "Add application"
-msgstr ""
+msgstr "Programma toevoegen"
 
 #: ../xfce4-autostart-editor/xfae-dialog.c:113
 msgid "Name:"
-msgstr ""
+msgstr "Naam:"
 
 #: ../xfce4-autostart-editor/xfae-dialog.c:130
-#, fuzzy
 msgid "Description:"
-msgstr "Beschrijving:"
+msgstr "Beschrijving:"
 
 #: ../xfce4-autostart-editor/xfae-dialog.c:145
 msgid "Command:"
-msgstr ""
+msgstr "Commando:"
 
 #: ../xfce4-autostart-editor/xfae-dialog.c:205
 msgid "Select a command"
-msgstr ""
+msgstr "Selecteer een commando"
 
 #: ../xfce4-autostart-editor/xfae-model.c:558
 #, c-format
@@ -310,23 +309,22 @@
 #: ../xfce4-autostart-editor/xfae-model.c:646
 #, c-format
 msgid "Failed to create file %s"
-msgstr ""
+msgstr "Maken van bestand %s is mislukt"
 
 #: ../xfce4-autostart-editor/xfae-model.c:668
 #, c-format
 msgid "Failed to write file %s"
-msgstr ""
+msgstr "Schrijven naar bestand %s is mislukt"
 
 #: ../xfce4-autostart-editor/xfae-model.c:767
 #, c-format
 msgid "Failed to open %s for writing"
-msgstr ""
+msgstr "Het openen van %s om te schrijven is mislukt"
 
 #: ../xfce4-autostart-editor/xfae-window.c:89
 #: ../xfce4-autostart-editor/xfae-window.c:106
-#, fuzzy
 msgid "Autostarted applications"
-msgstr "Beheer remote programma's "
+msgstr "Automatisch opstartten"
 
 #: ../xfce4-autostart-editor/xfae-window.c:124
 msgid ""
@@ -335,6 +333,10 @@
 "in addition to the applications that were saved when\n"
 "you logged out last time:"
 msgstr ""
+"Hieronder staat de lijst met programma's die automatisch\n"
+"worden gestart wanneer je in-logt in Xfce,\n"
+"hierbij worden ook de programma's toegevoegd die worden\n"
+"onthouden wanneer je de laatste keer uitlogd:"
 
 #: ../xfce4-session/main.c:140
 msgid "Loading desktop settings"
@@ -350,22 +352,20 @@
 msgstr "Bezig met laden sesiegegevens"
 
 #: ../xfce4-session/shutdown.c:307
-#, fuzzy
 msgid "End Session"
-msgstr "Nieuwe sessie"
+msgstr "Sessie beeindigen"
 
 #: ../xfce4-session/shutdown.c:341
-#, fuzzy
 msgid "Log Out"
 msgstr "Uitloggen"
 
 #: ../xfce4-session/shutdown.c:364
 msgid "Restart"
-msgstr ""
+msgstr "Herstarten"
 
 #: ../xfce4-session/shutdown.c:387
 msgid "Shut Down"
-msgstr ""
+msgstr "Afsluiten"
 
 #: ../xfce4-session/shutdown.c:395
 msgid "_Save session for future logins"
@@ -564,23 +564,23 @@
 
 #: ../xfce4-tips/main.c:47 ../xfce4-tips/main.c:158
 msgid "Tips and Tricks"
-msgstr ""
+msgstr "Tips en Truuks"
 
 #: ../xfce4-tips/main.c:48 ../xfce4-tips/main.c:202
 msgid "Fortunes"
-msgstr ""
+msgstr "Fortunes"
 
 #: ../xfce4-tips/main.c:187
 msgid "Display tips on _startup"
-msgstr ""
+msgstr "Tips weergeven bij op_starten"
 
 #: ../xfce4-tips/main.c:196 ../xfce4-tips/xfce4-tips-autostart.desktop.in.h:1
 msgid "Tips and tricks"
-msgstr ""
+msgstr "Tips en Truuks"
 
 #: ../xfce4-tips/main.c:213

[Xfce4-commits] r23604 - xfce-utils/trunk/po

2006-11-03 Thread Stephan Arts
Author: stephan
Date: 2006-11-03 10:10:45 + (Fri, 03 Nov 2006)
New Revision: 23604

Modified:
   xfce-utils/trunk/po/nl.po
Log:
Small typo Dutch translation



Modified: xfce-utils/trunk/po/nl.po
===
--- xfce-utils/trunk/po/nl.po   2006-11-03 09:39:33 UTC (rev 23603)
+++ xfce-utils/trunk/po/nl.po   2006-11-03 10:10:45 UTC (rev 23604)
@@ -83,7 +83,7 @@
 #: xfce4-about/info.c:413
 #, fuzzy
 msgid "Xfce Desktop Environment"
-msgstr "Xfce Desktop Environment"
+msgstr "Xfce Bureaublad Omgeving"
 
 #: xfce4-about/info.c:413
 msgid "Copyright 2002-2006 by Olivier Fourdan"
@@ -130,7 +130,7 @@
 #: xfrun/xfrun-dbus.c:141
 #, c-format
 msgid "Unable to open display \"%s\"."
-msgstr "Fout bij het openen van display \"%s\""
+msgstr "Fout bij het openen van display \"%s\"."
 
 #: xfrun/xfrun-dbus.c:200
 #, c-format

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r23603 - xfburn/trunk/po

2006-11-03 Thread Piarres Beobide
Author: piarres
Date: 2006-11-03 09:39:33 + (Fri, 03 Nov 2006)
New Revision: 23603

Modified:
   xfburn/trunk/po/ChangeLog
   xfburn/trunk/po/eu.po
Log:
xfburn basque translation update


Modified: xfburn/trunk/po/ChangeLog
===
--- xfburn/trunk/po/ChangeLog   2006-11-02 22:13:43 UTC (rev 23602)
+++ xfburn/trunk/po/ChangeLog   2006-11-03 09:39:33 UTC (rev 23603)
@@ -1,3 +1,7 @@
+2006-11-03  Piarres Beobide <[EMAIL PROTECTED]>
+
+* eu.po: Basque translation update.
+
 2006-10-28  Pau Rul-lan Ferragut <[EMAIL PROTECTED]>
 
* dz.po: add Dzongkha translation by Dzongkha team

Modified: xfburn/trunk/po/eu.po
===
--- xfburn/trunk/po/eu.po   2006-11-02 22:13:43 UTC (rev 23602)
+++ xfburn/trunk/po/eu.po   2006-11-03 09:39:33 UTC (rev 23603)
@@ -9,13 +9,14 @@
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-11-01 17:37+0100\n"
-"PO-Revision-Date: 2006-08-10 21:39+0200\n"
+"PO-Revision-Date: 2006-11-02 23:25+0100\n"
 "Last-Translator: Piarres Beobide <[EMAIL PROTECTED]>\n"
 "Language-Team: librezale <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 0.10rc1\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 
 #: ../xfburn/xfburn-adding-progress.c:89
 msgid "Adding files to the composition"
@@ -297,8 +298,7 @@
 
 #: ../xfburn/xfburn-data-disc-usage.c:176
 msgid "You are trying to burn more data than the disk can contain !"
-msgstr ""
-"Diskoak eduki dezakeena baino datu gehiago grabatzen saiatzen ari zara !"
+msgstr "Diskoak eduki dezakeena baino datu gehiago grabatzen saiatzen ari zara 
!"
 
 #: ../xfburn/xfburn-device-box.c:114 ../xfburn/xfburn-device-box.c:115
 msgid "Show writers only"
@@ -331,15 +331,13 @@
 msgstr "Mota"
 
 #: ../xfburn/xfburn-format-dvd-dialog.c:91 ../xfburn/xfburn-main-window.c:127
-#, fuzzy
 msgid "Format DVD+RW"
-msgstr "DVD-RW Formateatu"
+msgstr "DVD+RW Formateatu"
 
 #. "xfburn-blank-cdrw"
 #: ../xfburn/xfburn-format-dvd-dialog.c:124
-#, fuzzy
 msgid "_Format"
-msgstr "_Indartu"
+msgstr "_Formateatu"
 
 #: ../xfburn/xfburn-fs-browser.c:94 ../xfburn/xfburn-fs-browser.c:260
 msgid "Filesystem"
@@ -443,14 +441,12 @@
 msgstr "CD irudia grabatu"
 
 #: ../xfburn/xfburn-main-window.c:129
-#, fuzzy
 msgid "Copy DVD"
-msgstr "CD-a _Kopiatu"
+msgstr "DVD-a _Kopiatu"
 
 #: ../xfburn/xfburn-main-window.c:131
-#, fuzzy
 msgid "Burn DVD Image"
-msgstr "CD irudia grabatu"
+msgstr "DVD irudia grabatu"
 
 #: ../xfburn/xfburn-main-window.c:136
 msgid "Show file browser"
@@ -475,9 +471,8 @@
 #. if (G_UNLIKELY (icon == NULL))
 #. icon = gdk_pixbuf_new_from_file (DATADIR 
"/icons/hicolor/48x48/apps/Terminal.png", NULL);
 #: ../xfburn/xfburn-main-window.c:514
-#, fuzzy
 msgid "Another cd burning GUI"
-msgstr "Beste cd grabatze tresna bat"
+msgstr "Beste cd grabatze interfaze bat"
 
 #: ../xfburn/xfburn-main-window.c:517
 msgid "Author/Maintainer"
@@ -628,20 +623,3 @@
 msgid "CD and DVD burning application"
 msgstr "CD eta DVD grabatze aplikazioa"
 
-#~ msgid "Are sure you want to quit?"
-#~ msgstr "Irten nahi duzula ziur zaude?"
-
-#~ msgid "Failed to open /proc/scsi/sg/devices"
-#~ msgstr "Huts /proc/scsi/sg/devices irekitzerakoan"
-
-#~ msgid "Failed to open /proc/scsi/sg/device_strs"
-#~ msgstr "Huts /proc/scsi/sg/device_strs irekitzerakoan"
-
-#~ msgid "Error reading scsi information from /proc/scsi/sg/devices"
-#~ msgstr "Huts scsi argibidea /proc/scsi/sg/devices-etik irakurtzean"
-
-#~ msgid "No disc in the cdrom drive"
-#~ msgstr "Ez dago diskarik cdrom gailuan"
-
-#~ msgid "No message..."
-#~ msgstr "Mezurik ez..."

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits