From squisher at xfce.org Thu May 1 02:47:58 2008 From: squisher at xfce.org (David Mohr) Date: Thu, 1 May 2008 00:47:58 +0000 (UTC) Subject: [Goodies-commits] r4690 - in xfburn/trunk: . xfburn Message-ID: <20080501004759.2379AF29DC@mocha.foo-projects.org> Author: squisher Date: 2008-05-01 00:47:58 +0000 (Thu, 01 May 2008) New Revision: 4690 Modified: xfburn/trunk/TODO xfburn/trunk/xfburn/Makefile.am Log: Bugfix: corrected Makefile.am for HAL Modified: xfburn/trunk/TODO =================================================================== --- xfburn/trunk/TODO 2008-04-30 09:14:42 UTC (rev 4689) +++ xfburn/trunk/TODO 2008-05-01 00:47:58 UTC (rev 4690) @@ -1,12 +1,12 @@ user visible ============ -- add data dvd support [DONE] - add audio cd support - add text/uri-list DnD target support - remove temporary files - use more thunar-vfs - add verification of written disc +- add data dvd support [DONE] various fixes and changes ========================= Modified: xfburn/trunk/xfburn/Makefile.am =================================================================== --- xfburn/trunk/xfburn/Makefile.am 2008-04-30 09:14:42 UTC (rev 4689) +++ xfburn/trunk/xfburn/Makefile.am 2008-05-01 00:47:58 UTC (rev 4690) @@ -78,8 +78,7 @@ $(LIBISOFS_CFLAGS) \ $(LIBXFCEGUI4_CFLAGS) \ $(EXO_CFLAGS) \ - $(THUNAR_VFS_CFLAGS) \ - $(HAL_CFLAGS) + $(THUNAR_VFS_CFLAGS) xfburn_LDADD = \ $(GTHREAD_LIBS) \ @@ -89,6 +88,16 @@ $(EXO_LIBS) \ $(THUNAR_VFS_LIBS) +if HAVE_HAL +xfburn_CFLAGS += \ + $(HAL_CFLAGS) + +xfburn_LDADD += \ + $(HAL_LIBS) + $(HAL_DBUS_LIBS) + +endif + # remove these when they're added to the build; needed # for make distcheck (--brian) missing_files = \ From squisher at xfce.org Thu May 1 03:45:45 2008 From: squisher at xfce.org (David Mohr) Date: Thu, 1 May 2008 01:45:45 +0000 (UTC) Subject: [Goodies-commits] r4691 - xfburn/trunk/xfburn Message-ID: <20080501014545.E86E3F29DC@mocha.foo-projects.org> Author: squisher Date: 2008-05-01 01:45:45 +0000 (Thu, 01 May 2008) New Revision: 4691 Added: xfburn/trunk/xfburn/xfburn-blank-dialog.c xfburn/trunk/xfburn/xfburn-blank-dialog.h Removed: xfburn/trunk/xfburn/xfburn-blank-cd-dialog.c xfburn/trunk/xfburn/xfburn-blank-cd-dialog.h Log: Renaming blank dialog Deleted: xfburn/trunk/xfburn/xfburn-blank-cd-dialog.c Deleted: xfburn/trunk/xfburn/xfburn-blank-cd-dialog.h Copied: xfburn/trunk/xfburn/xfburn-blank-dialog.c (from rev 4689, xfburn/trunk/xfburn/xfburn-blank-cd-dialog.c) =================================================================== --- xfburn/trunk/xfburn/xfburn-blank-dialog.c (rev 0) +++ xfburn/trunk/xfburn/xfburn-blank-dialog.c 2008-05-01 01:45:45 UTC (rev 4691) @@ -0,0 +1,282 @@ +/* $Id$ */ +/* + * Copyright (c) 2005-2006 Jean-Fran?ois Wauthy (pollux at xfce.org) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License + * along with this program; 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 /* !HAVE_CONFIG_H */ + +#include + +#include + +#include "xfburn-global.h" +#include "xfburn-utils.h" +#include "xfburn-progress-dialog.h" +#include "xfburn-device-box.h" +#include "xfburn-stock.h" + +#include "xfburn-blank-cd-dialog.h" + +#define XFBURN_BLANK_CD_DIALOG_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogPrivate)) + +typedef struct +{ + GtkWidget *device_box; + GtkWidget *combo_type; + + GtkWidget *check_eject; +} XfburnBlankCdDialogPrivate; + +static void xfburn_blank_cd_dialog_class_init (XfburnBlankCdDialogClass * klass); +static void xfburn_blank_cd_dialog_init (XfburnBlankCdDialog * sp); + +static void xfburn_blank_cd_dialog_response_cb (XfburnBlankCdDialog * dialog, gint response_id, gpointer user_data); + +static XfceTitledDialogClass *parent_class = NULL; + +GtkType +xfburn_blank_cd_dialog_get_type () +{ + static GtkType type = 0; + + if (type == 0) { + static const GTypeInfo our_info = { + sizeof (XfburnBlankCdDialogClass), + NULL, + NULL, + (GClassInitFunc) xfburn_blank_cd_dialog_class_init, + NULL, + NULL, + sizeof (XfburnBlankCdDialog), + 0, + (GInstanceInitFunc) xfburn_blank_cd_dialog_init, + }; + + type = g_type_register_static (XFCE_TYPE_TITLED_DIALOG, "XfburnBlankCdDialog", &our_info, 0); + } + + return type; +} + +static void +xfburn_blank_cd_dialog_class_init (XfburnBlankCdDialogClass * klass) +{ + parent_class = g_type_class_peek_parent (klass); + + g_type_class_add_private (klass, sizeof (XfburnBlankCdDialogPrivate)); +} + +static void +xfburn_blank_cd_dialog_init (XfburnBlankCdDialog * obj) +{ + XfburnBlankCdDialogPrivate *priv = XFBURN_BLANK_CD_DIALOG_GET_PRIVATE (obj); + GtkBox *box = GTK_BOX (GTK_DIALOG (obj)->vbox); + GdkPixbuf *icon = NULL; + GtkWidget *frame; + GtkWidget *vbox; + GtkWidget *button; + + gtk_window_set_title (GTK_WINDOW (obj), _("Blank CD-RW")); + gtk_window_set_destroy_with_parent (GTK_WINDOW (obj), TRUE); + + icon = gtk_widget_render_icon (GTK_WIDGET (obj), XFBURN_STOCK_BLANK_CDRW, GTK_ICON_SIZE_DIALOG, NULL); + gtk_window_set_icon (GTK_WINDOW (obj), icon); + g_object_unref (icon); + + /* devices list */ + priv->device_box = xfburn_device_box_new (SHOW_CDRW_WRITERS | BLANK_MODE); + gtk_widget_show (priv->device_box); + + frame = xfce_create_framebox_with_content (_("Burning device"), priv->device_box); + gtk_widget_show (frame); + gtk_box_pack_start (box, frame, FALSE, FALSE, BORDER); + + /* blank type */ + priv->combo_type = gtk_combo_box_new_text (); + gtk_combo_box_append_text (GTK_COMBO_BOX (priv->combo_type), _("Fast")); + gtk_combo_box_append_text (GTK_COMBO_BOX (priv->combo_type), _("Complete")); + gtk_combo_box_set_active (GTK_COMBO_BOX (priv->combo_type), 0); + gtk_widget_show (priv->combo_type); + + frame = xfce_create_framebox_with_content (_("Blank type"), priv->combo_type); + gtk_widget_show (frame); + gtk_box_pack_start (box, frame, FALSE, FALSE, BORDER); + + /* options */ + vbox = gtk_vbox_new (FALSE, 0); + gtk_widget_show (vbox); + + frame = xfce_create_framebox_with_content (_("Options"), vbox); + gtk_widget_show (frame); + gtk_box_pack_start (box, frame, FALSE, FALSE, BORDER); + + priv->check_eject = gtk_check_button_new_with_mnemonic (_("E_ject disk")); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->check_eject), TRUE); + gtk_widget_show (priv->check_eject); + gtk_box_pack_start (GTK_BOX (vbox), priv->check_eject, FALSE, FALSE, BORDER); + + /* action buttons */ + button = gtk_button_new_from_stock (GTK_STOCK_CANCEL); + gtk_widget_show (button); + gtk_dialog_add_action_widget (GTK_DIALOG (obj), button, GTK_RESPONSE_CANCEL); + + button = xfce_create_mixed_button ("xfburn-blank-cdrw", _("_Blank")); + gtk_widget_show (button); + gtk_dialog_add_action_widget (GTK_DIALOG (obj), button, GTK_RESPONSE_OK); + GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT); + gtk_widget_grab_focus (button); + gtk_widget_grab_default (button); + + g_signal_connect (G_OBJECT (obj), "response", G_CALLBACK (xfburn_blank_cd_dialog_response_cb), obj); +} + +typedef struct { + GtkWidget *dialog_progress; + XfburnDevice *device; + gint blank_type; + gboolean eject; +} ThreadBlankParams; + +static void +thread_blank (ThreadBlankParams * params) +{ + GtkWidget *dialog_progress = params->dialog_progress; + + struct burn_drive_info *drive_info = NULL; + struct burn_drive *drive; + enum burn_disc_status disc_state; + struct burn_progress progress; + + if (!burn_initialize ()) { + g_critical ("Unable to initialize libburn"); + g_free (params); + return; + } + + if (!xfburn_device_grab (params->device, &drive_info)) { + xfburn_progress_dialog_burning_failed (XFBURN_PROGRESS_DIALOG (dialog_progress), _("Unable to grab drive")); + + goto end; + } + + drive = drive_info->drive; + + while (burn_drive_get_status (drive, NULL) != BURN_DRIVE_IDLE) { + usleep (1001); + } + + while ( (disc_state = burn_disc_get_status (drive)) == BURN_DISC_UNREADY) + usleep (1001); + + switch (disc_state) { + case BURN_DISC_BLANK: + xfburn_progress_dialog_burning_failed (XFBURN_PROGRESS_DIALOG (dialog_progress), _("The inserted disc is already blank")); + goto cleanup; + case BURN_DISC_FULL: + case BURN_DISC_APPENDABLE: + /* these ones we can blank */ + xfburn_progress_dialog_set_status_with_text (XFBURN_PROGRESS_DIALOG (dialog_progress), XFBURN_PROGRESS_DIALOG_STATUS_RUNNING, _("Ready")); + break; + case BURN_DISC_EMPTY: + xfburn_progress_dialog_burning_failed (XFBURN_PROGRESS_DIALOG (dialog_progress), _("No disc detected in the drive")); + goto cleanup; + default: + xfburn_progress_dialog_burning_failed (XFBURN_PROGRESS_DIALOG (dialog_progress), _("Cannot recognize drive and media state")); + goto cleanup; + } + + if (!burn_disc_erasable (drive)) { + xfburn_progress_dialog_burning_failed (XFBURN_PROGRESS_DIALOG (dialog_progress), _("Media is not erasable")); + goto cleanup; + } + + burn_disc_erase(drive, params->blank_type); + sleep(1); + + xfburn_progress_dialog_set_status_with_text (XFBURN_PROGRESS_DIALOG (dialog_progress), XFBURN_PROGRESS_DIALOG_STATUS_RUNNING, _("Blanking disc...")); + + while (burn_drive_get_status (drive, &progress) != BURN_DRIVE_IDLE) { + if(progress.sectors>0 && progress.sector>=0) { + gdouble percent = 1.0 + ((gdouble) progress.sector+1.0) / ((gdouble) progress.sectors) * 98.0; + + xfburn_progress_dialog_set_progress_bar_fraction (XFBURN_PROGRESS_DIALOG (dialog_progress), percent / 100.0); + } + usleep(500000); + } + + xfburn_progress_dialog_set_status_with_text (XFBURN_PROGRESS_DIALOG (dialog_progress), XFBURN_PROGRESS_DIALOG_STATUS_COMPLETED, _("Done")); + + cleanup: + burn_drive_release (drive, params->eject ? 1 : 0); + end: + burn_finish (); + g_free (params); +} + +static void +xfburn_blank_cd_dialog_response_cb (XfburnBlankCdDialog * dialog, gint response_id, gpointer user_data) +{ + if (response_id == GTK_RESPONSE_OK) { + XfburnBlankCdDialogPrivate *priv = XFBURN_BLANK_CD_DIALOG_GET_PRIVATE (dialog); + XfburnDevice *device; + gint blank_type; + + GtkWidget *dialog_progress; + ThreadBlankParams *params = NULL; + + device = xfburn_device_box_get_selected_device (XFBURN_DEVICE_BOX (priv->device_box)); + + switch (gtk_combo_box_get_active (GTK_COMBO_BOX (priv->combo_type))) { + case 0: + /* fast blanking */ + blank_type = 1; + break; + case 1: + /* normal blanking */ + blank_type = 0; + break; + default: + blank_type = 1; + } + + dialog_progress = xfburn_progress_dialog_new (GTK_WINDOW (dialog)); + gtk_widget_hide (GTK_WIDGET (dialog)); + + gtk_widget_show (dialog_progress); + + params = g_new0 (ThreadBlankParams, 1); + params->dialog_progress = dialog_progress; + params->device = device; + params->blank_type = blank_type; + params->eject = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->check_eject)); + g_thread_create ((GThreadFunc) thread_blank, params, FALSE, NULL); + } +} + + +/* public */ +GtkWidget * +xfburn_blank_cd_dialog_new () +{ + GtkWidget *obj; + + obj = GTK_WIDGET (g_object_new (XFBURN_TYPE_BLANK_CD_DIALOG, NULL)); + + return obj; +} Copied: xfburn/trunk/xfburn/xfburn-blank-dialog.h (from rev 4689, xfburn/trunk/xfburn/xfburn-blank-cd-dialog.h) =================================================================== --- xfburn/trunk/xfburn/xfburn-blank-dialog.h (rev 0) +++ xfburn/trunk/xfburn/xfburn-blank-dialog.h 2008-05-01 01:45:45 UTC (rev 4691) @@ -0,0 +1,54 @@ +/* $Id$ */ +/* + * Copyright (c) 2005-2006 Jean-Fran?ois Wauthy (pollux at xfce.org) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef __XFBURN_BLANK_CD_DIALOG_H__ +#define __XFBURN_BLANK_CD_DIALOG_H__ + +#ifdef HAVE_CONFIG_H +#include +#endif /* !HAVE_CONFIG_H */ + +#include "xfburn-global.h" + +#include + +G_BEGIN_DECLS + +#define XFBURN_TYPE_BLANK_CD_DIALOG (xfburn_blank_cd_dialog_get_type ()) +#define XFBURN_BLANK_CD_DIALOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialog)) +#define XFBURN_BLANK_CD_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogClass)) +#define XFBURN_IS_BLANK_CD_DIALOG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFBURN_TYPE_BLANK_CD_DIALOG)) +#define XFBURN_IS_BLANK_CD_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XFBURN_TYPE_BLANK_CD_DIALOG)) +#define XFBURN_BLANK_CD_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogClass)) + +typedef struct +{ + XfceTitledDialog parent; +} XfburnBlankCdDialog; + +typedef struct +{ + XfceTitledDialogClass parent_class; +} XfburnBlankCdDialogClass; + +GtkType xfburn_blank_cd_dialog_get_type (); +GtkWidget *xfburn_blank_cd_dialog_new (); + +G_END_DECLS +#endif /* XFBURN_BLANK_CD_H */ From squisher at xfce.org Thu May 1 04:35:36 2008 From: squisher at xfce.org (David Mohr) Date: Thu, 1 May 2008 02:35:36 +0000 (UTC) Subject: [Goodies-commits] r4692 - xfburn/trunk/xfburn Message-ID: <20080501023536.411EDF29DC@mocha.foo-projects.org> Author: squisher Date: 2008-05-01 02:35:36 +0000 (Thu, 01 May 2008) New Revision: 4692 Modified: xfburn/trunk/xfburn/Makefile.am xfburn/trunk/xfburn/xfburn-blank-dialog.c xfburn/trunk/xfburn/xfburn-blank-dialog.h xfburn/trunk/xfburn/xfburn-main-window.c xfburn/trunk/xfburn/xfburn-welcome-tab.c Log: Reflecting the blank-dialog rename in the code Modified: xfburn/trunk/xfburn/Makefile.am =================================================================== --- xfburn/trunk/xfburn/Makefile.am 2008-05-01 01:45:45 UTC (rev 4691) +++ xfburn/trunk/xfburn/Makefile.am 2008-05-01 02:35:36 UTC (rev 4692) @@ -11,7 +11,7 @@ xfburn_headers = \ xfburn-global.h \ xfburn-adding-progress.h \ - xfburn-blank-cd-dialog.h \ + xfburn-blank-dialog.h \ xfburn-perform-burn.h \ xfburn-burn-data-composition-base-dialog.h \ xfburn-burn-data-cd-composition-dialog.h \ @@ -44,7 +44,7 @@ xfburn_SOURCES = \ $(xfburn_headers) \ xfburn-adding-progress.c \ - xfburn-blank-cd-dialog.c \ + xfburn-blank-dialog.c \ xfburn-perform-burn.c \ xfburn-burn-data-composition-base-dialog.c \ xfburn-burn-data-cd-composition-dialog.c \ Modified: xfburn/trunk/xfburn/xfburn-blank-dialog.c =================================================================== --- xfburn/trunk/xfburn/xfburn-blank-dialog.c 2008-05-01 01:45:45 UTC (rev 4691) +++ xfburn/trunk/xfburn/xfburn-blank-dialog.c 2008-05-01 02:35:36 UTC (rev 4692) @@ -31,9 +31,9 @@ #include "xfburn-device-box.h" #include "xfburn-stock.h" -#include "xfburn-blank-cd-dialog.h" +#include "xfburn-blank-dialog.h" -#define XFBURN_BLANK_CD_DIALOG_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogPrivate)) +#define XFBURN_BLANK_DIALOG_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), XFBURN_TYPE_BLANK_DIALOG, XfburnBlankDialogPrivate)) typedef struct { @@ -41,51 +41,51 @@ GtkWidget *combo_type; GtkWidget *check_eject; -} XfburnBlankCdDialogPrivate; +} XfburnBlankDialogPrivate; -static void xfburn_blank_cd_dialog_class_init (XfburnBlankCdDialogClass * klass); -static void xfburn_blank_cd_dialog_init (XfburnBlankCdDialog * sp); +static void xfburn_blank_dialog_class_init (XfburnBlankDialogClass * klass); +static void xfburn_blank_dialog_init (XfburnBlankDialog * sp); -static void xfburn_blank_cd_dialog_response_cb (XfburnBlankCdDialog * dialog, gint response_id, gpointer user_data); +static void xfburn_blank_dialog_response_cb (XfburnBlankDialog * dialog, gint response_id, gpointer user_data); static XfceTitledDialogClass *parent_class = NULL; GtkType -xfburn_blank_cd_dialog_get_type () +xfburn_blank_dialog_get_type () { static GtkType type = 0; if (type == 0) { static const GTypeInfo our_info = { - sizeof (XfburnBlankCdDialogClass), + sizeof (XfburnBlankDialogClass), NULL, NULL, - (GClassInitFunc) xfburn_blank_cd_dialog_class_init, + (GClassInitFunc) xfburn_blank_dialog_class_init, NULL, NULL, - sizeof (XfburnBlankCdDialog), + sizeof (XfburnBlankDialog), 0, - (GInstanceInitFunc) xfburn_blank_cd_dialog_init, + (GInstanceInitFunc) xfburn_blank_dialog_init, }; - type = g_type_register_static (XFCE_TYPE_TITLED_DIALOG, "XfburnBlankCdDialog", &our_info, 0); + type = g_type_register_static (XFCE_TYPE_TITLED_DIALOG, "XfburnBlankDialog", &our_info, 0); } return type; } static void -xfburn_blank_cd_dialog_class_init (XfburnBlankCdDialogClass * klass) +xfburn_blank_dialog_class_init (XfburnBlankDialogClass * klass) { parent_class = g_type_class_peek_parent (klass); - g_type_class_add_private (klass, sizeof (XfburnBlankCdDialogPrivate)); + g_type_class_add_private (klass, sizeof (XfburnBlankDialogPrivate)); } static void -xfburn_blank_cd_dialog_init (XfburnBlankCdDialog * obj) +xfburn_blank_dialog_init (XfburnBlankDialog * obj) { - XfburnBlankCdDialogPrivate *priv = XFBURN_BLANK_CD_DIALOG_GET_PRIVATE (obj); + XfburnBlankDialogPrivate *priv = XFBURN_BLANK_DIALOG_GET_PRIVATE (obj); GtkBox *box = GTK_BOX (GTK_DIALOG (obj)->vbox); GdkPixbuf *icon = NULL; GtkWidget *frame; @@ -143,7 +143,7 @@ gtk_widget_grab_focus (button); gtk_widget_grab_default (button); - g_signal_connect (G_OBJECT (obj), "response", G_CALLBACK (xfburn_blank_cd_dialog_response_cb), obj); + g_signal_connect (G_OBJECT (obj), "response", G_CALLBACK (xfburn_blank_dialog_response_cb), obj); } typedef struct { @@ -230,10 +230,10 @@ } static void -xfburn_blank_cd_dialog_response_cb (XfburnBlankCdDialog * dialog, gint response_id, gpointer user_data) +xfburn_blank_dialog_response_cb (XfburnBlankDialog * dialog, gint response_id, gpointer user_data) { if (response_id == GTK_RESPONSE_OK) { - XfburnBlankCdDialogPrivate *priv = XFBURN_BLANK_CD_DIALOG_GET_PRIVATE (dialog); + XfburnBlankDialogPrivate *priv = XFBURN_BLANK_DIALOG_GET_PRIVATE (dialog); XfburnDevice *device; gint blank_type; @@ -272,11 +272,11 @@ /* public */ GtkWidget * -xfburn_blank_cd_dialog_new () +xfburn_blank_dialog_new () { GtkWidget *obj; - obj = GTK_WIDGET (g_object_new (XFBURN_TYPE_BLANK_CD_DIALOG, NULL)); + obj = GTK_WIDGET (g_object_new (XFBURN_TYPE_BLANK_DIALOG, NULL)); return obj; } Modified: xfburn/trunk/xfburn/xfburn-blank-dialog.h =================================================================== --- xfburn/trunk/xfburn/xfburn-blank-dialog.h 2008-05-01 01:45:45 UTC (rev 4691) +++ xfburn/trunk/xfburn/xfburn-blank-dialog.h 2008-05-01 02:35:36 UTC (rev 4692) @@ -17,8 +17,8 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef __XFBURN_BLANK_CD_DIALOG_H__ -#define __XFBURN_BLANK_CD_DIALOG_H__ +#ifndef __XFBURN_BLANK_DIALOG_H__ +#define __XFBURN_BLANK_DIALOG_H__ #ifdef HAVE_CONFIG_H #include @@ -30,25 +30,25 @@ G_BEGIN_DECLS -#define XFBURN_TYPE_BLANK_CD_DIALOG (xfburn_blank_cd_dialog_get_type ()) -#define XFBURN_BLANK_CD_DIALOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialog)) -#define XFBURN_BLANK_CD_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogClass)) -#define XFBURN_IS_BLANK_CD_DIALOG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFBURN_TYPE_BLANK_CD_DIALOG)) -#define XFBURN_IS_BLANK_CD_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XFBURN_TYPE_BLANK_CD_DIALOG)) -#define XFBURN_BLANK_CD_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XFBURN_TYPE_BLANK_CD_DIALOG, XfburnBlankCdDialogClass)) +#define XFBURN_TYPE_BLANK_DIALOG (xfburn_blank_dialog_get_type ()) +#define XFBURN_BLANK_DIALOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XFBURN_TYPE_BLANK_DIALOG, XfburnBlankDialog)) +#define XFBURN_BLANK_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XFBURN_TYPE_BLANK_DIALOG, XfburnBlankDialogClass)) +#define XFBURN_IS_BLANK_DIALOG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFBURN_TYPE_BLANK_DIALOG)) +#define XFBURN_IS_BLANK_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XFBURN_TYPE_BLANK_DIALOG)) +#define XFBURN_BLANK_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XFBURN_TYPE_BLANK_DIALOG, XfburnBlankDialogClass)) typedef struct { XfceTitledDialog parent; -} XfburnBlankCdDialog; +} XfburnBlankDialog; typedef struct { XfceTitledDialogClass parent_class; -} XfburnBlankCdDialogClass; +} XfburnBlankDialogClass; -GtkType xfburn_blank_cd_dialog_get_type (); -GtkWidget *xfburn_blank_cd_dialog_new (); +GtkType xfburn_blank_dialog_get_type (); +GtkWidget *xfburn_blank_dialog_new (); G_END_DECLS -#endif /* XFBURN_BLANK_CD_H */ +#endif /* XFBURN_BLANK_DIALOG_H */ Modified: xfburn/trunk/xfburn/xfburn-main-window.c =================================================================== --- xfburn/trunk/xfburn/xfburn-main-window.c 2008-05-01 01:45:45 UTC (rev 4691) +++ xfburn/trunk/xfburn/xfburn-main-window.c 2008-05-01 02:35:36 UTC (rev 4692) @@ -32,7 +32,7 @@ #include "xfburn-preferences-dialog.h" #include "xfburn-file-browser.h" #include "xfburn-compositions-notebook.h" -#include "xfburn-blank-cd-dialog.h" +#include "xfburn-blank-dialog.h" #include "xfburn-format-dvd-dialog.h" #include "xfburn-copy-cd-dialog.h" #include "xfburn-copy-dvd-dialog.h" @@ -81,7 +81,7 @@ static void action_close (GtkAction *, XfburnMainWindow *); static void action_quit (GtkAction *, XfburnMainWindow *); -static void action_blank_cd (GtkAction *, XfburnMainWindow *); +static void action_blank (GtkAction *, XfburnMainWindow *); static void action_copy_cd (GtkAction *, XfburnMainWindow *); static void action_burn_image (GtkAction *, XfburnMainWindow *); @@ -124,7 +124,7 @@ {"about", GTK_STOCK_ABOUT, N_("_About"), NULL, N_("Display information about Xfburn"), G_CALLBACK (action_about),}, {"blank-cd", "xfburn-blank-cdrw", N_("Blank CD-RW"), NULL, N_("Blank CD-RW"), - G_CALLBACK (action_blank_cd),}, + G_CALLBACK (action_blank),}, {"copy-data", "xfburn-data-copy", N_("Copy Data CD"), NULL, N_("Copy Data CD"), G_CALLBACK (action_copy_cd),}, {"copy-audio", "xfburn-audio-copy", N_("Copy Audio CD"), NULL, N_("Copy Audio CD"),}, @@ -373,11 +373,11 @@ /* actions */ static void -action_blank_cd (GtkAction * action, XfburnMainWindow * window) +action_blank (GtkAction * action, XfburnMainWindow * window) { GtkWidget *dialog; - dialog = xfburn_blank_cd_dialog_new (); + dialog = xfburn_blank_dialog_new (); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (window)); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); Modified: xfburn/trunk/xfburn/xfburn-welcome-tab.c =================================================================== --- xfburn/trunk/xfburn/xfburn-welcome-tab.c 2008-05-01 01:45:45 UTC (rev 4691) +++ xfburn/trunk/xfburn/xfburn-welcome-tab.c 2008-05-01 02:35:36 UTC (rev 4692) @@ -37,7 +37,7 @@ #include "xfburn-main-window.h" #include "xfburn-compositions-notebook.h" #include "xfburn-burn-image-dialog.h" -#include "xfburn-blank-cd-dialog.h" +#include "xfburn-blank-dialog.h" /* prototypes */ static void xfburn_welcome_tab_class_init (XfburnWelcomeTabClass * klass); @@ -308,7 +308,7 @@ XfburnWelcomeTabPrivate *priv = XFBURN_WELCOME_TAB_GET_PRIVATE (tab); GtkWidget *dialog; - dialog = xfburn_blank_cd_dialog_new (); + dialog = xfburn_blank_dialog_new (); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (priv->mainwin)); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); From squisher at xfce.org Thu May 1 04:36:15 2008 From: squisher at xfce.org (David Mohr) Date: Thu, 1 May 2008 02:36:15 +0000 (UTC) Subject: [Goodies-commits] r4693 - xfburn/trunk/xfburn Message-ID: <20080501023615.87B46F29DC@mocha.foo-projects.org> Author: squisher Date: 2008-05-01 02:36:15 +0000 (Thu, 01 May 2008) New Revision: 4693 Modified: xfburn/trunk/xfburn/xfburn-hal-manager.c Log: Bugfix: proper shutwdown of HAL Modified: xfburn/trunk/xfburn/xfburn-hal-manager.c =================================================================== --- xfburn/trunk/xfburn/xfburn-hal-manager.c 2008-05-01 02:35:36 UTC (rev 4692) +++ xfburn/trunk/xfburn/xfburn-hal-manager.c 2008-05-01 02:36:15 UTC (rev 4693) @@ -153,13 +153,14 @@ hal_context = NULL; } DBG ("Connection to dbus or hal failed!"); - dbus_error_free (&derror); } else { libhal_ctx_set_device_added (hal_context, cb_device_added); libhal_ctx_set_device_removed (hal_context, cb_device_removed); libhal_ctx_set_device_property_modified (hal_context, cb_prop_modified); } + dbus_error_free (&derror); + priv->hal_context = hal_context; priv->dbus_connection = dbus_connection; } @@ -182,7 +183,12 @@ { DBusError derror; + dbus_error_init (&derror); libhal_ctx_shutdown (hal_context, &derror); + if (dbus_error_is_set (&derror)) { + DBG ("Error shutting hal down!"); + } + dbus_error_free (&derror); libhal_ctx_free (hal_context); } From afb at xfce.org Thu May 1 13:10:53 2008 From: afb at xfce.org (Anders F Bjorklund) Date: Thu, 1 May 2008 11:10:53 +0000 (UTC) Subject: [Goodies-commits] r4694 - xfce4-smartpm-plugin/trunk Message-ID: <20080501111053.E151EF29DC@mocha.foo-projects.org> Author: afb Date: 2008-05-01 11:10:53 +0000 (Thu, 01 May 2008) New Revision: 4694 Modified: xfce4-smartpm-plugin/trunk/README Log: update instructions for auth Modified: xfce4-smartpm-plugin/trunk/README =================================================================== --- xfce4-smartpm-plugin/trunk/README 2008-05-01 02:36:15 UTC (rev 4693) +++ xfce4-smartpm-plugin/trunk/README 2008-05-01 11:10:53 UTC (rev 4694) @@ -58,6 +58,12 @@ Slapt | slapt-get --simulate --dist-upgrade | su -c "slapt-get --update" | +-------------------------------------+----------------------------------+ +Checking for upgrades or browsing packages can be done as a regular user, +while updating channels or installing packages requires superuser privileges. + +The panel plugin will look for a consolehelper program called "smart-root", +else try to use either "gksudo" or "gksu" to run the Smart package manager. + How to report bugs? =================== From afb at xfce.org Thu May 1 13:11:14 2008 From: afb at xfce.org (Anders F Bjorklund) Date: Thu, 1 May 2008 11:11:14 +0000 (UTC) Subject: [Goodies-commits] r4695 - xfce4-smartpm-plugin/trunk Message-ID: <20080501111114.19ECDF29DC@mocha.foo-projects.org> Author: afb Date: 2008-05-01 11:11:14 +0000 (Thu, 01 May 2008) New Revision: 4695 Modified: xfce4-smartpm-plugin/trunk/INSTALL Log: file regenerated Modified: xfce4-smartpm-plugin/trunk/INSTALL =================================================================== --- xfce4-smartpm-plugin/trunk/INSTALL 2008-05-01 11:10:53 UTC (rev 4694) +++ xfce4-smartpm-plugin/trunk/INSTALL 2008-05-01 11:11:14 UTC (rev 4695) @@ -2,7 +2,7 @@ ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, -2006 Free Software Foundation, Inc. +2006, 2007 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. @@ -67,6 +67,9 @@ all sorts of other programs in order to regenerate files that came with the distribution. + 6. Often, you can also type `make uninstall' to remove the installed + files again. + Compilers and Options ===================== From ongardie at xfce.org Thu May 1 18:58:59 2008 From: ongardie at xfce.org (Diego Ongaro) Date: Thu, 1 May 2008 16:58:59 +0000 (UTC) Subject: [Goodies-commits] r4696 - xfce4-places-plugin/trunk Message-ID: <20080501165859.31DABF29DC@mocha.foo-projects.org> Author: ongardie Date: 2008-05-01 16:58:59 +0000 (Thu, 01 May 2008) New Revision: 4696 Modified: xfce4-places-plugin/trunk/ChangeLog Log: It's been too long...forgot the ChangeLog entry Modified: xfce4-places-plugin/trunk/ChangeLog =================================================================== --- xfce4-places-plugin/trunk/ChangeLog 2008-05-01 11:11:14 UTC (rev 4695) +++ xfce4-places-plugin/trunk/ChangeLog 2008-05-01 16:58:59 UTC (rev 4696) @@ -4,6 +4,10 @@ Hide Clear option when there are no Recent Docs (Bug #3871). Reposition Recent Documents submenu after Clear (Bug #3872). +2008-02-16 Diego Ongaro + + * model_user.c: Fix build on amd64 + 2008-01-07 Diego Ongaro * button.{c,h}: Created a button widget to modularize view code From ongardie at xfce.org Thu May 1 19:35:58 2008 From: ongardie at xfce.org (Diego Ongaro) Date: Thu, 1 May 2008 17:35:58 +0000 (UTC) Subject: [Goodies-commits] r4697 - in xfce4-places-plugin/trunk: . panel-plugin Message-ID: <20080501173558.0BD8DF29DC@mocha.foo-projects.org> Author: ongardie Date: 2008-05-01 17:35:57 +0000 (Thu, 01 May 2008) New Revision: 4697 Modified: xfce4-places-plugin/trunk/ChangeLog xfce4-places-plugin/trunk/panel-plugin/view.c Log: 2008-05-01 Diego Ongaro * view.c: Disable the Recent Docs menu item if there are none. Modified: xfce4-places-plugin/trunk/ChangeLog =================================================================== --- xfce4-places-plugin/trunk/ChangeLog 2008-05-01 16:58:59 UTC (rev 4696) +++ xfce4-places-plugin/trunk/ChangeLog 2008-05-01 17:35:57 UTC (rev 4697) @@ -1,3 +1,7 @@ +2008-05-01 Diego Ongaro + + * view.c: Disable the Recent Docs menu item if there are none. + 2008-04-06 Diego Ongaro * view.c: Reposition Recent Docs submenu after "changed" signal. Modified: xfce4-places-plugin/trunk/panel-plugin/view.c =================================================================== --- xfce4-places-plugin/trunk/panel-plugin/view.c 2008-05-01 16:58:59 UTC (rev 4696) +++ xfce4-places-plugin/trunk/panel-plugin/view.c 2008-05-01 17:35:57 UTC (rev 4697) @@ -96,7 +96,7 @@ #endif #if USE_RECENT_DOCUMENTS - gulong recent_manager_changed_handler[3]; + gulong recent_manager_changed_handler; #endif gboolean needs_separator; @@ -468,12 +468,28 @@ } static void -pview_cb_recent_changed_position(GtkRecentManager *recent_manager, GtkWidget *recent_menu) +pview_cb_recent_changed(GtkRecentManager *recent_manager, GtkWidget *recent_menu) { - while(gtk_events_pending()) - gtk_main_iteration(); + GtkWidget *recent_item; + int recent_count = 0; + + g_object_get(recent_manager, + "size", &recent_count, + NULL); - gtk_menu_reposition(GTK_MENU(recent_menu)); + recent_item = gtk_menu_get_attach_widget(GTK_MENU(recent_menu)); + if (GTK_IS_WIDGET(recent_item)) + gtk_widget_set_sensitive(recent_item, recent_count > 0); + + if (recent_count == 0) { + gtk_menu_popdown(GTK_MENU(recent_menu)); + } + else { + while (gtk_events_pending()) + gtk_main_iteration(); + + gtk_menu_reposition(GTK_MENU(recent_menu)); + } } static gboolean @@ -484,7 +500,7 @@ gint removed = gtk_recent_manager_purge_items(manager, NULL); DBG("Cleared %d recent items", removed); - pview_cb_recent_changed_position(manager, recent_menu); + pview_cb_recent_changed(manager, recent_menu); return TRUE; } @@ -495,21 +511,6 @@ return pview_cb_recent_items_clear(clear_item, recent_menu); } -static void -pview_cb_recent_changed_hide(GtkRecentManager *recent_manager, GtkWidget *widget) -{ - int recent_count; - - g_object_get(recent_manager, - "size", &recent_count, - NULL); - - if (recent_count > 0) - gtk_widget_show(widget); - else - gtk_widget_hide(widget); -} - #endif @@ -520,19 +521,16 @@ { #ifdef USE_RECENT_DOCUMENTS GtkRecentManager *recent_manager = gtk_recent_manager_get_default(); - int i; #endif if(view->menu != NULL) { gtk_menu_shell_deactivate(GTK_MENU_SHELL(view->menu)); #ifdef USE_RECENT_DOCUMENTS - for (i = 0; i < 3; i++) { - if (view->recent_manager_changed_handler[i]) { - g_signal_handler_disconnect(recent_manager, - view->recent_manager_changed_handler[i]); - view->recent_manager_changed_handler[i] = 0; - } + if (view->recent_manager_changed_handler) { + g_signal_handler_disconnect(recent_manager, + view->recent_manager_changed_handler); + view->recent_manager_changed_handler = 0; } #endif @@ -704,16 +702,11 @@ g_signal_connect(recent_menu, "item-activated", G_CALLBACK(pview_cb_recent_item_open), pd); - pd->recent_manager_changed_handler[0] = g_signal_connect(recent_manager, "changed", - G_CALLBACK(pview_cb_recent_changed_position), recent_menu); - if(pd->cfg->show_recent_clear){ separator = gtk_separator_menu_item_new(); gtk_menu_shell_append(GTK_MENU_SHELL(recent_menu), separator); - pview_cb_recent_changed_hide(recent_manager, separator); - pd->recent_manager_changed_handler[1] = g_signal_connect(recent_manager, "changed", - G_CALLBACK(pview_cb_recent_changed_hide), separator); + gtk_widget_show(separator); if(pd->cfg->show_icons){ clear_item = gtk_image_menu_item_new_from_stock(GTK_STOCK_CLEAR, NULL); @@ -724,9 +717,7 @@ } gtk_menu_shell_append(GTK_MENU_SHELL(recent_menu), clear_item); - pview_cb_recent_changed_hide(recent_manager, clear_item); - pd->recent_manager_changed_handler[2] = g_signal_connect(recent_manager, "changed", - G_CALLBACK(pview_cb_recent_changed_hide), clear_item); + gtk_widget_show(clear_item); /* try button-release-event to catch mouse clicks and not hide the menu after */ g_signal_connect(clear_item, "button-release-event", @@ -742,12 +733,16 @@ gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(recent_item), gtk_image_new_from_stock(GTK_STOCK_OPEN, GTK_ICON_SIZE_MENU)); } - + gtk_menu_item_set_submenu(GTK_MENU_ITEM(recent_item), recent_menu); gtk_widget_show(recent_menu); gtk_menu_shell_append(GTK_MENU_SHELL(pd->menu), recent_item); gtk_widget_show(recent_item); + + pd->recent_manager_changed_handler = g_signal_connect(recent_manager, "changed", + G_CALLBACK(pview_cb_recent_changed), recent_menu); + pview_cb_recent_changed(recent_manager, recent_menu); } #endif From ongardie at xfce.org Thu May 1 19:51:18 2008 From: ongardie at xfce.org (Diego Ongaro) Date: Thu, 1 May 2008 17:51:18 +0000 (UTC) Subject: [Goodies-commits] r4698 - in xfce4-places-plugin/trunk: . panel-plugin Message-ID: <20080501175118.A26DAF29DC@mocha.foo-projects.org> Author: ongardie Date: 2008-05-01 17:51:18 +0000 (Thu, 01 May 2008) New Revision: 4698 Modified: xfce4-places-plugin/trunk/ChangeLog xfce4-places-plugin/trunk/panel-plugin/cfg.c Log: 2008-05-01 Diego Ongaro * cfg.c: Make label insensitive when not shown Modified: xfce4-places-plugin/trunk/ChangeLog =================================================================== --- xfce4-places-plugin/trunk/ChangeLog 2008-05-01 17:35:57 UTC (rev 4697) +++ xfce4-places-plugin/trunk/ChangeLog 2008-05-01 17:51:18 UTC (rev 4698) @@ -1,5 +1,6 @@ 2008-05-01 Diego Ongaro + * cfg.c: Make label insensitive when not shown * view.c: Disable the Recent Docs menu item if there are none. 2008-04-06 Diego Ongaro Modified: xfce4-places-plugin/trunk/panel-plugin/cfg.c =================================================================== --- xfce4-places-plugin/trunk/panel-plugin/cfg.c 2008-05-01 17:35:57 UTC (rev 4697) +++ xfce4-places-plugin/trunk/panel-plugin/cfg.c 2008-05-01 17:51:18 UTC (rev 4698) @@ -169,6 +169,7 @@ static void pcfg_button_show_cb(GtkComboBox *combo, PlacesCfg *cfg) { + GtkWidget *transient; gint option = gtk_combo_box_get_active(combo); g_assert(cfg != NULL); @@ -177,6 +178,10 @@ cfg->show_button_icon = (option == 0 || option == 2); cfg->show_button_label = (option == 1 || option == 2); + transient = g_object_get_data(G_OBJECT(combo), "cfg_transient"); + if(transient != NULL) + gtk_widget_set_sensitive(transient, cfg->show_button_label); + places_view_cfg_iface_update_button(cfg->view_iface); } @@ -380,6 +385,10 @@ /* BUTTON: Label text entry */ tmp_box = gtk_hbox_new(FALSE, 15); + + gtk_widget_set_sensitive(tmp_box, cfg->show_button_label); + g_object_set_data(G_OBJECT(tmp_widget), "cfg_transient", tmp_box); + gtk_widget_show(tmp_box); gtk_box_pack_start(GTK_BOX(vbox_button), tmp_box, FALSE, FALSE, 0); From mmassonnet at xfce.org Thu May 1 20:24:31 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Thu, 1 May 2008 18:24:31 +0000 (UTC) Subject: [Goodies-commits] r4699 - xfce4-notes-plugin/trunk/po Message-ID: <20080501182431.2E0B4F29DC@mocha.foo-projects.org> Author: mmassonnet Date: 2008-05-01 18:24:31 +0000 (Thu, 01 May 2008) New Revision: 4699 Modified: xfce4-notes-plugin/trunk/po/ChangeLog xfce4-notes-plugin/trunk/po/ca.po xfce4-notes-plugin/trunk/po/cs.po xfce4-notes-plugin/trunk/po/de.po xfce4-notes-plugin/trunk/po/en_GB.po xfce4-notes-plugin/trunk/po/eu.po xfce4-notes-plugin/trunk/po/fr.po xfce4-notes-plugin/trunk/po/hu.po xfce4-notes-plugin/trunk/po/lv.po xfce4-notes-plugin/trunk/po/nb_NO.po xfce4-notes-plugin/trunk/po/nl.po xfce4-notes-plugin/trunk/po/pl.po xfce4-notes-plugin/trunk/po/pt_BR.po xfce4-notes-plugin/trunk/po/pt_PT.po xfce4-notes-plugin/trunk/po/ur.po xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot xfce4-notes-plugin/trunk/po/zh_TW.po Log: make update-po Modified: xfce4-notes-plugin/trunk/po/ChangeLog =================================================================== --- xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 18:24:31 UTC (rev 4699) @@ -1,3 +1,8 @@ +2008-05-01 Mike Massonnet + + * *.po, *.pot: make update-po + * fr.po: Update French translation + 2008-04-27 Mike Massonnet * *.po, *.pot: make update-po Modified: xfce4-notes-plugin/trunk/po/ca.po =================================================================== --- xfce4-notes-plugin/trunk/po/ca.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/ca.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin 1.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2008-03-21 20:56+0100\n" "Last-Translator: Carles Mu?oz Gorriz \n" "Language-Team: Catalan\n" @@ -18,120 +18,121 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Esteu segurs que voleu suprimir aquesta finestra?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Finestra" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Reanomena?" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Opcions" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Nota" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "R_eanomena?" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Mostra la barra d'estat" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" +msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Sempre en primer pla" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Finestra omnipresent" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Mostra al iniciar" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Sempre" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Mai" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "?ltim estat" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Trieu la font de la finestra" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Reanomena la finestra" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Error" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "No s'ha pogut reanomenar la finestra" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Esteu segurs que voleu suprimir aquesta nota?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Reanomena la nota" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "No s'ha pogut reanomenar la nota" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -143,6 +144,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Connector de notes per l?escriptori Xfce4" +#~ msgid "Show statusbar" +#~ msgstr "Mostra la barra d'estat" + #~ msgid "Show in the task list" #~ msgstr "Mostra dins el llistat de tasques" Modified: xfce4-notes-plugin/trunk/po/cs.po =================================================================== --- xfce4-notes-plugin/trunk/po/cs.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/cs.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin 1.3.90.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-12-17 22:06+0100\n" "Last-Translator: Michal V?rady \n" "Language-Team: Czech \n" @@ -16,121 +16,122 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Opravdu chcete smazat toto okno?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Okno" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_P?ejmenovat" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Volby" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "_Pozn?mka" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "P?_ejmenovat" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Zobrazit stavov? ??dek" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Zobrazit okraj pro zm?nu velikosti" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "V?dy naho?e" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "P?ilepen? okno" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Zobrazovat po spu?t?n?" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "V?dy" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Nikdy" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "Posledn? stav" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Zvolit p?smo okna" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "P?ejmenovat okno" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Chyba" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Nelze p?ejmenovat okno" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Opravdu chcete smazat tuto pozn?mku?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "P?ejmenovat pozn?mku" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Nelze p?ejmenovat pozn?mku" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Zobrazit okraj pro zm?nu velikosti" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -142,6 +143,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Z?suvn? modul pro vytv??en? pozn?mek pro Xfce4" +#~ msgid "Show statusbar" +#~ msgstr "Zobrazit stavov? ??dek" + #~ msgid "Show in the task list" #~ msgstr "Zobrazovat v seznamu ?loh" Modified: xfce4-notes-plugin/trunk/po/de.po =================================================================== --- xfce4-notes-plugin/trunk/po/de.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/de.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: 1.3.99.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2008-03-18 16:36+0100\n" "Last-Translator: Enrico Tr?ger \n" "Language-Team: German \n" @@ -18,121 +18,122 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Sind Sie sicher, dass Sie dieses Fenster l?schen m?chten?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Fenster" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Umbenennen" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Optionen" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Notiz" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "_Umbenennen" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Statusleiste anzeigen" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Der vergr??erungsgriff anzeigen" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Immer obenauf" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Fenster anheften" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Beim Start anzeigen" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Immer" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Nie" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "Letzter Zustand" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Fensterschriftart ausw?hlen" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Fenster umbenennen" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Fehler" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Kann Fenster nicht umbennen" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Sind Sie sicher, dass Sie diese Notiz l?schen m?chten?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Notiz umbenennen" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Kann Notiz nicht umbennen" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Der vergr??erungsgriff anzeigen" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -144,6 +145,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Einfache Notizenverwaltung" +#~ msgid "Show statusbar" +#~ msgstr "Statusleiste anzeigen" + #~ msgid "Show in the task list" #~ msgstr "In der Taskliste anzeigen" Modified: xfce4-notes-plugin/trunk/po/en_GB.po =================================================================== --- xfce4-notes-plugin/trunk/po/en_GB.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/en_GB.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-03-31 10:16+1000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: English/GB\n" @@ -17,130 +17,131 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "Are you sure you want to delete this note?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "Rename" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "Notes" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "Rename" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Show resize grip" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Always on top" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "Stick mode" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "Always show notes at startup" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "Always on top" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "Rename" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Are you sure you want to delete this note?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "Rename" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Show resize grip" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/eu.po =================================================================== --- xfce4-notes-plugin/trunk/po/eu.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/eu.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2006-09-18 22:53+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: librezale \n" @@ -18,130 +18,131 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "Ziur zaude ohar hau ezabatu nahi duzula?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "Berrizendatu" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "Oharrak" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "Berrizendatu" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Tamaina aldaketa kirtena ikusi" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Beti goian" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "Finkatu" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "Beti erakutsi oharrak abiaraztean" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "Beti goian" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "Berrizendatu" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Ziur zaude ohar hau ezabatu nahi duzula?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "Berrizendatu" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Tamaina aldaketa kirtena ikusi" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/fr.po =================================================================== --- xfce4-notes-plugin/trunk/po/fr.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/fr.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -9,128 +9,129 @@ msgstr "" "Project-Id-Version: 1.3.99.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" -"PO-Revision-Date: 2008-04-28 01:43+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" +"PO-Revision-Date: 2008-04-30 02:48+0200\n" "Last-Translator: Mike Massonnet \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "Impossible d'ouvrir l'URL suivante : %s" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "?tes-vous certain(e) de vouloir supprimer cette fen?tre ?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Fen?tre" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Renommer?" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Options" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Note" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "R_enommer?" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Afficher la barre de statut" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" +msgstr "Afficher la poign?e de redimensionnement" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Toujours en dessus" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Coller sur tous les bureaux" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Afficher au d?marrage" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Toujours" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Jamais" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "Dernier ?tat" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Choisissez la police de la fen?tre" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Renommer la fen?tre" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Erreur" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Impossible de renommer la fen?tre" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "?tes-vous certain(e) de vouloir supprimer cette note ?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Renommer la note" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Impossible de renommer la note" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "Xfce 4 Notes Plugin" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "Param?tres par d?faut" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "Cacher les fen?tres de la barre des t?ches" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "Cacher la fl?che dans le panneau" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "Param?tres d'une nouvelle fen?tre" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" -msgstr "Afficher la poign?e de redimensionnement" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "Police" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "Taille" @@ -142,6 +143,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Prendre des notes" +#~ msgid "Show statusbar" +#~ msgstr "Afficher la barre de statut" + #~ msgid "Show in the task list" #~ msgstr "Afficher dans le gestionnaire de t?ches" Modified: xfce4-notes-plugin/trunk/po/hu.po =================================================================== --- xfce4-notes-plugin/trunk/po/hu.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/hu.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" -"PO-Revision-Date: 2008-04-30 00:06+0100\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" +"PO-Revision-Date: 2008-04-30 11:17+0200\n" "Last-Translator: SZERV?C Attila \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" @@ -13,126 +13,122 @@ "X-Poedit-Country: HUNGARY\n" "X-Poedit-Language: Hungarian\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "Nem tudom megnyitni az al?bbi url-t: %s" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "T?nyleg t?rl?d ezt az ablakot?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Ablak" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "?tnevez..." -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Opci?k" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Jegyzet" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "?tn_evez..." -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "?llapots?v mutat?sa" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "?tm?retez? mutat?sa" #. Always on top -#: ../panel-plugin/notes.c:852 -#: ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Mindig fel?l" #. Sticky window -#: ../panel-plugin/notes.c:853 -#: ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Ragad?s ablak" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Mutasd indul?skor" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Mindig" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Soha" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "Utols? ?llapot" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "V?lassz ablak bet?t" -#: ../panel-plugin/notes.c:1316 -#: ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Ablak ?tnevez?se" -#: ../panel-plugin/notes.c:1354 -#: ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Hiba" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Sikertelen ablak ?tnevez?s" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "T?nyleg t?rl?d e bejegyz?st?" -#: ../panel-plugin/notes.c:1736 -#: ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Jegyzet ?tnevez?se" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Sikertelen jegyzet ?tnevez?s" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "Alap be?ll?t?sok" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "Ablakok rejt?se a feladat-s?vb?l" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "?j ablak be?ll?t?sok" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "?tm?retez? mutat?sa" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "Bet?" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "M?ret" @@ -144,26 +140,36 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Jegyzett?mb beilleszt?s az Xfce4 panelhoz" +#~ msgid "Show statusbar" +#~ msgstr "?llapots?v mutat?sa" + #~ msgid "Show in the task list" #~ msgstr "Mutasd a feladatlist?ban" + #~ msgid "Create new note" #~ msgstr "?j jegyzet" + #~ msgid "Delete this note" #~ msgstr "Jegyzet t?rl?se" + #~ msgid "Notes" #~ msgstr "Jegyzetek" + #~ msgid "Properties" #~ msgstr "Tulajdons?gok" + #~ msgid "Always show vertical scrollbar" #~ msgstr "F?gg?leges g?rget?s?v mindig" + #~ msgid "A restart of the panel is needed" #~ msgstr "A panel ?jraind?t?sa sz?ks?ges" + #~ msgid "Open a new page" #~ msgstr "?j lapot nyit" + #~ msgid "" #~ "Notes\n" #~ "Click this button to show/hide your notes" #~ msgstr "" #~ "Jegyzetek\n" #~ "Kattints e gombra jegyzeteid mutat?s?hoz/elrejt?s?hez" - Modified: xfce4-notes-plugin/trunk/po/lv.po =================================================================== --- xfce4-notes-plugin/trunk/po/lv.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/lv.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-11-16 20:33+0300\n" "Last-Translator: Rihards Pried?tis \n" "Language-Team: Latvian \n" @@ -15,120 +15,121 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Esat dro?s, ka v?laties dz?st ?o logu?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Logs" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_P?rd?v?t..." -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Uzst?d?jumi" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Piez?mes" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "P?r_d?v?t..." -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "R?d?t statusajoslu" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" +msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Vienm?r priek??" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Lip?gs logs" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "R?dit pie s?kn??anas" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Vienm?r" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Nekad" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "P?d?jo st?vokli" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Iz?laties Loga Fontu" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "P?rd?v?t logu" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "K??da" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Nevar?ju p?rd?v?t logu" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Esat dro?s, ka v?laties dz?st ?o piez?mi?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "P?rd?v?t piez?mi" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Nevar?ju p?rd?v?t piez?mi" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -139,3 +140,6 @@ #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2 msgid "Notes plugin for the Xfce4 desktop" msgstr "Piez?mju spraudnis Xfce4 darbavirsmai" + +#~ msgid "Show statusbar" +#~ msgstr "R?d?t statusajoslu" Modified: xfce4-notes-plugin/trunk/po/nb_NO.po =================================================================== --- xfce4-notes-plugin/trunk/po/nb_NO.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/nb_NO.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin 1.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-07-01 23:28+0200\n" "Last-Translator: Christian Lomsdalen \n" "Language-Team: Norwegian Bokmal \n" @@ -17,120 +17,121 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Er du sikker p? at du vil slette dette vinduet?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Vindu" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Gi nytt navn..." -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Innstillinger" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Notat" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "Gi _nytt navn..." -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Vis statuslinjen" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" +msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Alltid ?verst" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Fast vindu" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Vis alltid notater ved oppstart" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Alltid" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Aldri" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "Siste status" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Velg skrift for vindu" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Gi nytt navn til vinduet" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Feil" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Kunne ikke gi nytt navn til vinduet" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Er du sikker p? at du vil slette dette notatet?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Gi nytt navn til notatet" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Kunne ikke gi nytt navn til notatet" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -141,3 +142,6 @@ #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2 msgid "Notes plugin for the Xfce4 desktop" msgstr "Notatverkt?y for Xfce4 Skrivebordet" + +#~ msgid "Show statusbar" +#~ msgstr "Vis statuslinjen" Modified: xfce4-notes-plugin/trunk/po/nl.po =================================================================== --- xfce4-notes-plugin/trunk/po/nl.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/nl.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: xfce 4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-01-07 14:30+0100\n" "Last-Translator: Stephan Arts \n" "Language-Team: Dutch \n" @@ -16,129 +16,130 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "Weet u zeker dat u deze notitie wilt verwijderen?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "Hernoemen" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "Notities" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "Hernoemen" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Altijd boven" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "Plak modus" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "Notities altijd weergeven na het opstarten" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "Altijd boven" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "Hernoemen" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Weet u zeker dat u deze notitie wilt verwijderen?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "Hernoemen" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/pl.po =================================================================== --- xfce4-notes-plugin/trunk/po/pl.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/pl.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: xfce-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2006-04-08 13:09+0900\n" "Last-Translator: Piotr Mali?ski \n" "Language-Team: Polish \n" @@ -13,130 +13,131 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "Skasowa? t? notatk??" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "Zmie? nazw?" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "Notatki" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "Zmie? nazw?" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Poka? uchwyt zmiany rozmiaru" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Zawsze na wierzchu" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "Przyklejone" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "Zawsze pokazuj notatki przy starcie" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "Zawsze na wierzchu" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "Zmie? nazw?" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Skasowa? t? notatk??" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "Zmie? nazw?" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Poka? uchwyt zmiany rozmiaru" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/pt_BR.po =================================================================== --- xfce4-notes-plugin/trunk/po/pt_BR.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/pt_BR.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-11-05 12:44-0500\n" "Last-Translator: Og Maciel \n" "Language-Team: Brazilian Portuguese \n" @@ -16,121 +16,122 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Voc? tem certeza que quer excluir esta janela?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Janela" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Renomear..." -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Op??es" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Nota" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "R_enomear..." -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Mostrar barra de status" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Mostrar presilha redimension?vel" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Sempre no topo" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Janela fixa" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Mostrar ao iniciar" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Sempre" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Nunca" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "?ltimo estado" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Escolha a Fonte da Janela" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Renomear janela" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Erro" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "N?o foi poss?vel renomear a janela" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Voc? tem certeza que quer excluir esta nota?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Renomear nota" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "N?o foi poss?vel renomear a nota" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Mostrar presilha redimension?vel" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -142,6 +143,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Plug-in de notas para o ambiente de trabalho Xfce4" +#~ msgid "Show statusbar" +#~ msgstr "Mostrar barra de status" + #~ msgid "Show in the task list" #~ msgstr "Mostrar na lista de tarefas" Modified: xfce4-notes-plugin/trunk/po/pt_PT.po =================================================================== --- xfce4-notes-plugin/trunk/po/pt_PT.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/pt_PT.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-12-30 19:15+0100\n" "Last-Translator: Nuno Miguel \n" "Language-Team: \n" @@ -15,121 +15,122 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "Tem a certeza que quer apagar esta janela?" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "Janela" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "_Renomear..." -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "_Op??es" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "Nota" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "R_enomear..." -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "Mostrar barra de estado" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "Mostrar garra redimension?vel" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "Sempre no topo" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "Janela presa" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "Mostrar no arranque" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "Sempre" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "Nunca" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "?ltimo estado" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "Escolher Fonte de Janela" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "Renomear janela" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "Erro" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "Incapaz de renomear janela" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Tem a certeza que quer apagar esta nota?" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "Renomear nota" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "Incapaz de renomear nota" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "Mostrar garra redimension?vel" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" @@ -141,6 +142,9 @@ msgid "Notes plugin for the Xfce4 desktop" msgstr "Plugin de notas para o Xfce4 desktop" +#~ msgid "Show statusbar" +#~ msgstr "Mostrar barra de estado" + #~ msgid "Show in the task list" #~ msgstr "Mostrar na lista de tarefas" Modified: xfce4-notes-plugin/trunk/po/ur.po =================================================================== --- xfce4-notes-plugin/trunk/po/ur.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/ur.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-10-27 15:55+0500\n" "Last-Translator: Muhammad Ali Makki \n" "Language-Team: Urdu \n" @@ -18,130 +18,131 @@ "X-Poedit-Country: PAKISTAN\n" "X-Poedit-SourceCharset: utf-8\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "??? ?? ????? ?? ??? ??? ???? ????? ????" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "?????? ???" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "???" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "?????? ???" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" -msgstr "" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#, fuzzy +msgid "Resize grip" +msgstr "?? ???? ??? ???????" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "????? ???" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "????? ???" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "????? ?? ????? ??? ???????" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "????? ???" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "?????? ???" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "??? ?? ????? ?? ??? ??? ???? ????? ????" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "?????? ???" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" +msgstr "" + +#: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -#, fuzzy -msgid "Resize grip" -msgstr "?? ???? ??? ???????" - -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot =================================================================== --- xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/xfce4-notes-plugin.pot 2008-05-01 18:24:31 UTC (rev 4699) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,120 +16,121 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" msgstr "" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 msgid "_Rename..." msgstr "" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 msgid "Note" msgstr "" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 msgid "R_ename..." msgstr "" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" msgstr "" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 msgid "Show on startup" msgstr "" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 msgid "Always" msgstr "" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 msgid "Rename window" msgstr "" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 msgid "Rename note" msgstr "" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" Modified: xfce4-notes-plugin/trunk/po/zh_TW.po =================================================================== --- xfce4-notes-plugin/trunk/po/zh_TW.po 2008-05-01 17:51:18 UTC (rev 4698) +++ xfce4-notes-plugin/trunk/po/zh_TW.po 2008-05-01 18:24:31 UTC (rev 4699) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: xfce4-notes-plugin 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-28 01:36+0200\n" +"POT-Creation-Date: 2008-04-30 02:47+0200\n" "PO-Revision-Date: 2007-03-08 00:54+0800\n" "Last-Translator: Hydonsingore Cia \n" "Language-Team: Tradictional Chinese \n" @@ -17,129 +17,130 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../panel-plugin/panel-plugin.c:200 +#: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" msgstr "" -#: ../panel-plugin/notes.c:428 +#: ../panel-plugin/notes.c:427 #, fuzzy msgid "Are you sure you want to delete this window?" msgstr "????????????" -#: ../panel-plugin/notes.c:733 +#: ../panel-plugin/notes.c:730 msgid "Window" msgstr "" -#: ../panel-plugin/notes.c:737 +#: ../panel-plugin/notes.c:734 #, fuzzy msgid "_Rename..." msgstr "??" -#: ../panel-plugin/notes.c:739 +#: ../panel-plugin/notes.c:736 msgid "_Options" msgstr "" -#: ../panel-plugin/notes.c:741 +#: ../panel-plugin/notes.c:738 #, fuzzy msgid "Note" msgstr "???" -#: ../panel-plugin/notes.c:745 +#: ../panel-plugin/notes.c:742 #, fuzzy msgid "R_ename..." msgstr "??" -#: ../panel-plugin/notes.c:851 -msgid "Show statusbar" +#. Resize grip +#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +msgid "Resize grip" msgstr "" #. Always on top -#: ../panel-plugin/notes.c:852 ../panel-plugin/notes-properties-dialog.c:101 +#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" msgstr "?????" #. Sticky window -#: ../panel-plugin/notes.c:853 ../panel-plugin/notes-properties-dialog.c:108 +#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 #, fuzzy msgid "Sticky window" msgstr "????" -#: ../panel-plugin/notes.c:854 +#: ../panel-plugin/notes.c:851 #, fuzzy msgid "Show on startup" msgstr "????????" -#: ../panel-plugin/notes.c:865 +#: ../panel-plugin/notes.c:862 #, fuzzy msgid "Always" msgstr "?????" -#: ../panel-plugin/notes.c:867 +#: ../panel-plugin/notes.c:864 msgid "Never" msgstr "" -#: ../panel-plugin/notes.c:869 +#: ../panel-plugin/notes.c:866 msgid "Last state" msgstr "" -#: ../panel-plugin/notes.c:1040 +#: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" msgstr "" -#: ../panel-plugin/notes.c:1316 ../panel-plugin/notes.c:1352 +#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 #, fuzzy msgid "Rename window" msgstr "??" -#: ../panel-plugin/notes.c:1354 ../panel-plugin/notes.c:1774 +#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 msgid "Error" msgstr "" -#: ../panel-plugin/notes.c:1355 +#: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" msgstr "" -#: ../panel-plugin/notes.c:1464 +#: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "????????????" -#: ../panel-plugin/notes.c:1736 ../panel-plugin/notes.c:1772 +#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 #, fuzzy msgid "Rename note" msgstr "??" -#: ../panel-plugin/notes.c:1775 +#: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:69 +#: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:83 +#: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" msgstr "" #. Hide from taskbar -#: ../panel-plugin/notes-properties-dialog.c:88 +#: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:96 -msgid "New window settings" +#. Hide arrow button +#: ../panel-plugin/notes-properties-dialog.c:104 +msgid "Hide arrow button" msgstr "" -#. Resize grip -#: ../panel-plugin/notes-properties-dialog.c:115 -msgid "Resize grip" +#: ../panel-plugin/notes-properties-dialog.c:112 +msgid "New window settings" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:125 +#: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" msgstr "" -#: ../panel-plugin/notes-properties-dialog.c:141 +#: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" msgstr "" From mmassonnet at xfce.org Thu May 1 21:32:58 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Thu, 1 May 2008 19:32:58 +0000 (UTC) Subject: [Goodies-commits] r4700 - xfce4-notes-plugin/trunk/po Message-ID: <20080501193258.4475FF29DC@mocha.foo-projects.org> Author: mmassonnet Date: 2008-05-01 19:32:58 +0000 (Thu, 01 May 2008) New Revision: 4700 Modified: xfce4-notes-plugin/trunk/po/ChangeLog xfce4-notes-plugin/trunk/po/de.po Log: update de.po Modified: xfce4-notes-plugin/trunk/po/ChangeLog =================================================================== --- xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 18:24:31 UTC (rev 4699) +++ xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 19:32:58 UTC (rev 4700) @@ -1,6 +1,7 @@ 2008-05-01 Mike Massonnet * *.po, *.pot: make update-po + * de.po: Update German translation (Bernd Korz ) * fr.po: Update French translation 2008-04-27 Mike Massonnet Modified: xfce4-notes-plugin/trunk/po/de.po =================================================================== --- xfce4-notes-plugin/trunk/po/de.po 2008-05-01 18:24:31 UTC (rev 4699) +++ xfce4-notes-plugin/trunk/po/de.po 2008-05-01 19:32:58 UTC (rev 4700) @@ -4,15 +4,15 @@ # This file is distributed under the same license as the xfce4-notes-plugin # package. # Mike Massonnet , 2006. -# Enrico Tr?ger , 2008. +# Enrico Tr??ger , 2008. # msgid "" msgstr "" "Project-Id-Version: 1.3.99.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-04-30 02:47+0200\n" -"PO-Revision-Date: 2008-03-18 16:36+0100\n" -"Last-Translator: Enrico Tr?ger \n" +"PO-Revision-Date: 2008-05-01 21:30+0200\n" +"Last-Translator: Bernd Korz \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ #: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" -msgstr "" +msgstr "Die folgende URL konnte nicht ge?ffnet werden: %s" #: ../panel-plugin/notes.c:427 msgid "Are you sure you want to delete this window?" @@ -49,9 +49,8 @@ #. Resize grip #: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 -#, fuzzy msgid "Resize grip" -msgstr "Der vergr??erungsgriff anzeigen" +msgstr "Vergr??erungsgriff anzeigen" #. Always on top #: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 @@ -109,33 +108,33 @@ #: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" -msgstr "" +msgstr "Xfce 4 Notes Plugin" #: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" -msgstr "" +msgstr "Standardeinstellungen" #. Hide from taskbar #: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" -msgstr "" +msgstr "Fenster aus der Taskbar ausblenden" #. Hide arrow button #: ../panel-plugin/notes-properties-dialog.c:104 msgid "Hide arrow button" -msgstr "" +msgstr "Pfeiltasten ausblenden" #: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" -msgstr "" +msgstr "Neue Fenstereinstellungen" #: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" -msgstr "" +msgstr "Schriftart" #: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" -msgstr "" +msgstr "Gr??e" #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1 msgid "Notes" From mmassonnet at xfce.org Thu May 1 21:45:13 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Thu, 1 May 2008 19:45:13 +0000 (UTC) Subject: [Goodies-commits] r4701 - xfce4-notes-plugin/trunk/po Message-ID: <20080501194513.8F38BF29DC@mocha.foo-projects.org> Author: mmassonnet Date: 2008-05-01 19:45:13 +0000 (Thu, 01 May 2008) New Revision: 4701 Modified: xfce4-notes-plugin/trunk/po/ChangeLog xfce4-notes-plugin/trunk/po/nl.po Log: update nl.po Modified: xfce4-notes-plugin/trunk/po/ChangeLog =================================================================== --- xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 19:32:58 UTC (rev 4700) +++ xfce4-notes-plugin/trunk/po/ChangeLog 2008-05-01 19:45:13 UTC (rev 4701) @@ -3,6 +3,7 @@ * *.po, *.pot: make update-po * de.po: Update German translation (Bernd Korz ) * fr.po: Update French translation + * nl.po: Update Dutch translation (Vincent ) 2008-04-27 Mike Massonnet Modified: xfce4-notes-plugin/trunk/po/nl.po =================================================================== --- xfce4-notes-plugin/trunk/po/nl.po 2008-05-01 19:32:58 UTC (rev 4700) +++ xfce4-notes-plugin/trunk/po/nl.po 2008-05-01 19:45:13 UTC (rev 4701) @@ -8,8 +8,8 @@ "Project-Id-Version: xfce 4-notes-plugin\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-04-30 02:47+0200\n" -"PO-Revision-Date: 2007-01-07 14:30+0100\n" -"Last-Translator: Stephan Arts \n" +"PO-Revision-Date: 2008-05-01 21:25+0100\n" +"Last-Translator: Vincent Tunru \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,129 +19,126 @@ #: ../panel-plugin/panel-plugin.c:236 #, c-format msgid "Unable to open the following url: %s" -msgstr "" +msgstr "Kon de volgende URL niet openen: %s" #: ../panel-plugin/notes.c:427 -#, fuzzy msgid "Are you sure you want to delete this window?" -msgstr "Weet u zeker dat u deze notitie wilt verwijderen?" +msgstr "Weet u zeker dat u dit venster wilt verwijderen?" #: ../panel-plugin/notes.c:730 msgid "Window" -msgstr "" +msgstr "Venster" #: ../panel-plugin/notes.c:734 -#, fuzzy msgid "_Rename..." -msgstr "Hernoemen" +msgstr "Naam _wijzigen" #: ../panel-plugin/notes.c:736 msgid "_Options" -msgstr "" +msgstr "_Opties" #: ../panel-plugin/notes.c:738 -#, fuzzy msgid "Note" -msgstr "Notities" +msgstr "Notitie" #: ../panel-plugin/notes.c:742 -#, fuzzy msgid "R_ename..." -msgstr "Hernoemen" +msgstr "Naam _wijzigen" #. Resize grip -#: ../panel-plugin/notes.c:848 ../panel-plugin/notes-properties-dialog.c:131 +#: ../panel-plugin/notes.c:848 +#: ../panel-plugin/notes-properties-dialog.c:131 msgid "Resize grip" -msgstr "" +msgstr "Handvat voor venstergrootte" #. Always on top -#: ../panel-plugin/notes.c:849 ../panel-plugin/notes-properties-dialog.c:117 +#: ../panel-plugin/notes.c:849 +#: ../panel-plugin/notes-properties-dialog.c:117 msgid "Always on top" -msgstr "Altijd boven" +msgstr "Altijd bovenop" #. Sticky window -#: ../panel-plugin/notes.c:850 ../panel-plugin/notes-properties-dialog.c:124 -#, fuzzy +#: ../panel-plugin/notes.c:850 +#: ../panel-plugin/notes-properties-dialog.c:124 msgid "Sticky window" -msgstr "Plak modus" +msgstr "Plakkend venster" #: ../panel-plugin/notes.c:851 -#, fuzzy msgid "Show on startup" msgstr "Notities altijd weergeven na het opstarten" #: ../panel-plugin/notes.c:862 -#, fuzzy msgid "Always" -msgstr "Altijd boven" +msgstr "Altijd" #: ../panel-plugin/notes.c:864 msgid "Never" -msgstr "" +msgstr "Nooit" #: ../panel-plugin/notes.c:866 msgid "Last state" -msgstr "" +msgstr "Laatste status" #: ../panel-plugin/notes.c:1037 msgid "Choose Window Font" -msgstr "" +msgstr "Kies vensterlettertype" -#: ../panel-plugin/notes.c:1313 ../panel-plugin/notes.c:1349 -#, fuzzy +#: ../panel-plugin/notes.c:1313 +#: ../panel-plugin/notes.c:1349 msgid "Rename window" -msgstr "Hernoemen" +msgstr "Vensternaam wijzigen" -#: ../panel-plugin/notes.c:1351 ../panel-plugin/notes.c:1771 +#: ../panel-plugin/notes.c:1351 +#: ../panel-plugin/notes.c:1771 msgid "Error" -msgstr "" +msgstr "Fout" #: ../panel-plugin/notes.c:1352 msgid "Unable to rename window" -msgstr "" +msgstr "Kon de naam van het venster niet wijzigen" #: ../panel-plugin/notes.c:1461 msgid "Are you sure you want to delete this note?" msgstr "Weet u zeker dat u deze notitie wilt verwijderen?" -#: ../panel-plugin/notes.c:1733 ../panel-plugin/notes.c:1769 -#, fuzzy +#: ../panel-plugin/notes.c:1733 +#: ../panel-plugin/notes.c:1769 msgid "Rename note" -msgstr "Hernoemen" +msgstr "Notitienaam wijzigen" #: ../panel-plugin/notes.c:1772 msgid "Unable to rename note" -msgstr "" +msgstr "Kon de naam van de notitie niet wijzigen" #: ../panel-plugin/notes-properties-dialog.c:78 msgid "Xfce 4 Notes Plugin" -msgstr "" +msgstr "Xfce 4 notities plugin" #: ../panel-plugin/notes-properties-dialog.c:92 msgid "Default settings" -msgstr "" +msgstr "Standaardinstellingen" #. Hide from taskbar #: ../panel-plugin/notes-properties-dialog.c:97 msgid "Hide windows from taskbar" -msgstr "" +msgstr "Vensters verbergen voor de taakbalk" #. Hide arrow button #: ../panel-plugin/notes-properties-dialog.c:104 msgid "Hide arrow button" -msgstr "" +msgstr "Pijlknop verbergen" #: ../panel-plugin/notes-properties-dialog.c:112 msgid "New window settings" -msgstr "" +msgstr "Nieuwe vensterinstellingen" #: ../panel-plugin/notes-properties-dialog.c:141 msgid "Font" -msgstr "" +msgstr "Lettertype" #: ../panel-plugin/notes-properties-dialog.c:157 msgid "Size" -msgstr "" +msgstr "Grootte" #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:1 msgid "Notes" @@ -149,16 +146,5 @@ #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2 msgid "Notes plugin for the Xfce4 desktop" -msgstr "Notitie plugin voor het Xfce4 bureaublad" +msgstr "Notitie-plugin voor Xfce4" -#~ msgid "Show in the task list" -#~ msgstr "Weergeven in taken lijst" - -#~ msgid "Create new note" -#~ msgstr "Een nieuwe notitie maken" - -#~ msgid "Delete this note" -#~ msgstr "Deze notitie verwijderen" - -#~ msgid "Notes" -#~ msgstr "Notities" From omaciel at xfce.org Thu May 1 23:05:28 2008 From: omaciel at xfce.org (Og Maciel) Date: Thu, 1 May 2008 21:05:28 +0000 (UTC) Subject: [Goodies-commits] r4702 - xfce4-notes-plugin/trunk/po Message-ID: <