[Xfce4-commits] orage:master 4.7.5.6: Panel plugin handles now dynamic rows instead of 3 fixed lines

2009-12-30 Thread Juha Kautto
Updating branch refs/heads/master
 to d3550ac272cd930dbd2dd0a58290a4da0f54ec23 (commit)
   from 3e8da068a495af8e3a32aa6282d880271ed8c7c8 (commit)

commit d3550ac272cd930dbd2dd0a58290a4da0f54ec23
Author: Juha Kautto j...@xfce.org
Date:   Wed Dec 30 12:12:20 2009 +0200

4.7.5.6: Panel plugin handles now dynamic rows instead of 3 fixed lines

Replaced old table implementation of panel plugin rows. Now using GList
and any number of lines can be used and ony used lines take space.
Also fixed error when reading the timezone first time happened too late.

Minor tunings also in main Orage code. Fixed bug where Y was not
correctly used in new test alarm.

 configure.in.in|2 +-
 panel-plugin/oc_config.c   |  260 +---
 panel-plugin/xfce4-orageclock-plugin.c |  297 +++-
 panel-plugin/xfce4-orageclock-plugin.h |   46 +++---
 src/appointment.c  |3 +-
 src/ical-code.c|2 +-
 src/main.c |2 +-
 src/reminder.c |   10 +-
 8 files changed, 325 insertions(+), 297 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index fa4b3ef..28cf0b1 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto j...@xfce.org
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.7.5.5-git])
+m4_define([orage_version], [4.7.5.6-git])
 
 m4_define([gtk_minimum_version], [2.10.0])
 m4_define([xfce_minimum_version], [4.6.0])
diff --git a/panel-plugin/oc_config.c b/panel-plugin/oc_config.c
index d6a74cb..07ecf19 100644
--- a/panel-plugin/oc_config.c
+++ b/panel-plugin/oc_config.c
@@ -42,6 +42,8 @@
 #include timezone_selection.h
 
 
+void oc_properties_options(GtkWidget *dlg, Clock *clock);
+
 /*  *
  *Configuration Dialog  *
  *  */
@@ -114,57 +116,91 @@ static void oc_timezone_selected(GtkButton *button, Clock 
*clock)
 }
 }
 
-static void oc_show1(GtkToggleButton *cb, Clock *clock)
+static void oc_hib_timing_toggled(GtkToggleButton *cb, Clock *clock)
 {
-clock-line[0].show = gtk_toggle_button_get_active(cb);
-oc_show_line_set(clock, 0);
+clock-hib_timing = gtk_toggle_button_get_active(cb);
 }
 
-static void oc_show2(GtkToggleButton *cb, Clock *clock)
+static gboolean oc_line_changed(GtkWidget *entry, GdkEventKey *key
+, GString *data)
 {
-clock-line[1].show = gtk_toggle_button_get_active(cb);
-oc_show_line_set(clock, 1);
+g_string_assign(data, gtk_entry_get_text(GTK_ENTRY(entry)));
+
+return(FALSE);
 }
 
-static void oc_show3(GtkToggleButton *cb, Clock *clock)
+static void oc_line_font_changed(GtkWidget *widget, ClockLine *line)
 {
-clock-line[2].show = gtk_toggle_button_get_active(cb);
-oc_show_line_set(clock, 2);
+g_string_assign(line-font
+, gtk_font_button_get_font_name((GtkFontButton *)widget));
+oc_line_font_set(line);
 }
 
-static void oc_hib_timing_toggled(GtkToggleButton *cb, Clock *clock)
+static void oc_recreate_properties_options(Clock *clock)
 {
-clock-hib_timing = gtk_toggle_button_get_active(cb);
-/* oc_hib_timing_set(clock); */
+GtkWidget *dialog, *frame;
+
+dialog = g_object_get_data(G_OBJECT(clock-plugin), dialog);
+frame  = g_object_get_data(G_OBJECT(clock-plugin), properties_frame);
+gtk_widget_destroy(frame);
+oc_properties_options(dialog, clock);
+gtk_widget_show_all(dialog);
 }
 
-static gboolean oc_line_changed(GtkWidget *entry, GdkEventKey *key
-, GString *data)
+static void oc_new_line(GtkToolButton *toolbutton, ClockLine *line)
 {
-g_string_assign(data, gtk_entry_get_text(GTK_ENTRY(entry)));
+Clock *clock = line-clock;;
+gint pos;
 
-return(FALSE);
+pos = g_list_index(clock-lines, line);
+oc_add_line(clock, %X, , pos+1);
+
+oc_recreate_properties_options(clock);
 }
 
-static void oc_line_font_changed1(GtkWidget *widget, Clock *clock)
+static void oc_delete_line(GtkToolButton *toolbutton, ClockLine *line)
 {
-g_string_assign(clock-line[0].font
-, gtk_font_button_get_font_name((GtkFontButton *)widget));
-oc_line_font_set(clock, 0);
+Clock *clock = line-clock;;
+
+/* remove the data from the list and from the panel */
+g_string_free(line-data, TRUE);
+g_string_free(line-font, TRUE);
+gtk_widget_destroy(line-label);
+clock-lines = g_list_remove(clock-lines, line);
+g_free(line);
+
+oc_recreate_properties_options(clock);
 }
 
-static void oc_line_font_changed2(GtkWidget *widget, Clock *clock)
+static void oc_move_up_line(GtkToolButton *toolbutton, ClockLine *line)
 {
-g_string_assign(clock-line[1].font
-, 

[Xfce4-commits] xfconf:master Updates for release.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to 46451f93e37e9698e052a805f4c46dd48f93469b (commit)
   from c64d5b0e319c1f5e0b9a1a3751d9b350e2620869 (commit)

commit 46451f93e37e9698e052a805f4c46dd48f93469b
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 11:26:05 2009 +0100

Updates for release.

 NEWS|7 ++-
 configure.ac.in |2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index dfa1018..827b1b4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,14 @@
 Xfce 4.7.0
 ==
 
-  * Add prefetching and caching support to XfconfChannel.  Should speed
+  * Add prefetching and caching support to XfconfChannel. Should speed
 things up a bit on app startup, and avoid blocking waiting on DBus
 in other cases.
+  * New simpler (internal) handling of property bindings.
+  * Use new xdt macros, this requires xfce-dev-tools 4.7.2.
+  * New tests for object bindings.
+  * Updated translations: es, kk, ca, sv, hu, ro, gl, ja, cs, lv, ast,
+zh_CN, ur, ur_PK, da, eu, pt.
 
 
 Xfce 4.6.2
diff --git a/configure.ac.in b/configure.ac.in
index bcbfd2d..7315ced 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -13,7 +13,7 @@ m4_define([xfconf_version_minor], [7])
 m4_define([xfconf_version_micro], [0])
 m4_define([xfconf_version_nano], [])
 m4_define([xfconf_version_build], [...@revision@])
-m4_define([xfconf_version_tag], [git])
+m4_define([xfconf_version_tag], [])
 m4_define([xfconf_version], 
[xfconf_version_major().xfconf_version_minor().xfconf_version_micro()ifelse(xfconf_version_nano(),
 [], [], [.xfconf_version_nano()])ifelse(xfconf_version_tag(), [git], 
[xfconf_version_tag()-xfconf_version_build()], [xfconf_version_tag()])])
 
 m4_define([xfconf_default_debug], [ifelse(xfconf_version_tag(), [git], [yes], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Move abicheck outside maintainer mode.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to c64d5b0e319c1f5e0b9a1a3751d9b350e2620869 (commit)
   from 39c25c15314e8288789306b483fff927071dc63b (commit)

commit c64d5b0e319c1f5e0b9a1a3751d9b350e2620869
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 11:29:55 2009 +0100

Move abicheck outside maintainer mode.

This way the check is always performed during dist-check
(2nd pass runs checks with visibility but without maintainer mode).

 xfconf/Makefile.am |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/xfconf/Makefile.am b/xfconf/Makefile.am
index 1db6a77..3b0bf15 100644
--- a/xfconf/Makefile.am
+++ b/xfconf/Makefile.am
@@ -60,10 +60,6 @@ xfconf-dbus-bindings.h: $(top_srcdir)/common/xfconf-dbus.xml 
Makefile
 # the above fixes a bug in dbus-binding-tool's output
 # dbus-binding-tool doesn't initialise GValues to { 0, } properly
 
-if HAVE_GNUC_VISIBILITY
-TESTS = abicheck.sh
-endif
-
 CLEANFILES = \
$(BUILT_SOURCES) \
xfconf-dbus-bindings.h.tmp
@@ -76,3 +72,7 @@ EXTRA_DIST = \
 
 # required for gtk-doc
 dist-hook: all
+
+if HAVE_GNUC_VISIBILITY
+TESTS = abicheck.sh
+endif
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Fix typo in NEWS file.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to beb8c38a47a3127db2335f2d651a00e31d546055 (commit)
   from 46451f93e37e9698e052a805f4c46dd48f93469b (commit)

commit beb8c38a47a3127db2335f2d651a00e31d546055
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 11:35:12 2009 +0100

Fix typo in NEWS file.

Standalone release for Xfconf, not for an Xfce version.

 NEWS |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 827b1b4..4200951 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-Xfce 4.7.0
-==
+Xfconf 4.7.0
+
 
   * Add prefetching and caching support to XfconfChannel. Should speed
 things up a bit on app startup, and avoid blocking waiting on DBus
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf|xfconf-4.7.0 Creating annotated tag xfconf-4.7.0

2009-12-30 Thread Nick Schermer
Updating annotated tag refs/tags/xfconf-4.7.0
 as new annotated tag
 to 3997ba892c7852303cf0383407e5ba988aa77d15 (tag)
   succeeds xfce-4.6.1
  tagged by Nick Schermer n...@xfce.org
 on 2009-12-30 10:37 +

Abel Martín (1):
  l10n: Updates to Spanish (Castilian) (es) translation

Bauzhan Muftakhidinov (1):
  l10n: New translation to Kazakh

Brian J. Tarricone (21):
  add module desription file
  fix compiler warnings
  fix crash; g_propagate_error() doesn't copy the src error
  fix detection of channel/property not found error when setting props
  don't emit property-changed twice (bug 5718)
  emit proper arguments on XfconfCache::property-changed signal (bug 5734)
  add .gitignore
  fix compilation with Sun cc (bug 5477)
  update NEWS
  move dbus signal disconnection to XfconfChannel dispose (bug 5493)
  always call the parent class' dispose
  send errors to stderr, not stdout
  add -Wno-sign-compare to the gtk-doc Makefile.am
  fix test framework, hopefully for the last time
  pass correct key to g_tree_remove()
  make xfconf_cache_reset() sync
  pass correct parameters to XfconfCache::property-changed signal
  change rev tag from svn to git
  require xdt-autogen 4.7.0
  use XDT_FEATURE_LINKER_OPTS and XDT_FEATURE_VISIBILTY, req xdt 4.7.1
  require xdt-autogen 4.7.2

Brian Tarricone (10):
  hopefully speed up app start time (for apps that do a decent number of
  add svn version tag
  Revert add svn version tag
  actually work around stupid dbus-binding-tool bug properly
  bindings: fix async property fetch when the channel has a property base
  patch from nick to silence warnings (bug 5362)
  silence warning when --enable-checks was not specified
  add transparent property prefetching and caching
  revert async property fetch for bindings
  fix a possible reentrancy issue.

Carles Muñoz Gorriz (1):
  l10n: Updates to Catalan (Valencian) (ca) translation

Daniel Nylander (1):
  l10n: Updates to Swedish (sv) translation

Dumitru Moldovan (1):
  Added initial xfce4-settings Romanian translation

Gabor Kelemen (2):
  2009-06-24  Gabor Kelemen  kelem...@gnome.hu
  2009-08-07  Gabor Kelemen  kelem...@gnome.hu

Jannis Pohlmann (6):
  Add dist-hook: all to the API reference makefile. Required for gtk-doc.
  Add dist-hook: all to the xfconf library makefile. Required for gtk-doc.
  Add dist-hook: all to common/Makefile.am for testing.
  Previous commit seems to have worked. Add dist-hook: all to xfconfd.
  Add check for intltool to use a different po Makefile if it's available.
  Add xfconf-cache.c and xfconf-channel.c to POTFILES.in. Update po files.

Jean-François Wauthy (1):
  Fix typo in xfconf/Makefile.am

Leandro Regueiro (1):
  l10n: Updates to Galician (gl) translation

Masato Hashimoto (1):
  l10n: Updates to Japanese (ja) translation

Michal Várady (1):
  l10n: Updates to Czech (cs) translation

Mike Massonnet (8):
  galician translation update
  xfce translation update
  update latvian translation
  update xfce translations
  Drop svn:executable bit from po files
  update translation
  Add Asturian translations
  update xfce translation

Nick Schermer (16):
  Drop pot file.
  New internal (simpler) handling of bindings.
  Add test framework for the bindings.
  Fix Brians code comments.
  Make 2 critical warnings debug output.
  Fix double free.
  Fix cut and paste in object bindings' makefile.
  Fix compiler warning in the tests.
  Rebuild po files after merge.
  Build ChangeLog during make dist.
  Fix segfault triggered by object-bindings test.
  Wait for pending calls in the cache.
  Fix typo in comment.
  Move abicheck outside maintainer mode.
  Updates for release.
  Fix typo in NEWS file.

Per Kongstad (1):
  l10n: Updates to Danish (da) translation

Piarres Beobide (1):
  l10n: Updates to Basque (eu) translation

Rihards Prieditis (2):
  l10n: Updates to Latvian (lv) translation
  l10n: Updates to Latvian (lv) translation

Robert Hartl (1):
  l10n: Slovak translation

Sergio Marques (1):
  l10n: Updates to Portuguese (pt) translation

Stephan Arts (1):
  Bump version number

Xu Meihong (1):
  l10n: Updates to Chinese (China) (zh_CN) translation

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


[Xfce4-commits] xfconf:master Post release tag bump.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to 2fc5be7d1a138cbb27d3262679134e6a57487d78 (commit)
   from beb8c38a47a3127db2335f2d651a00e31d546055 (commit)

commit 2fc5be7d1a138cbb27d3262679134e6a57487d78
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 11:38:58 2009 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 7315ced..bcbfd2d 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -13,7 +13,7 @@ m4_define([xfconf_version_minor], [7])
 m4_define([xfconf_version_micro], [0])
 m4_define([xfconf_version_nano], [])
 m4_define([xfconf_version_build], [...@revision@])
-m4_define([xfconf_version_tag], [])
+m4_define([xfconf_version_tag], [git])
 m4_define([xfconf_version], 
[xfconf_version_major().xfconf_version_minor().xfconf_version_micro()ifelse(xfconf_version_nano(),
 [], [], [.xfconf_version_nano()])ifelse(xfconf_version_tag(), [git], 
[xfconf_version_tag()-xfconf_version_build()], [xfconf_version_tag()])])
 
 m4_define([xfconf_default_debug], [ifelse(xfconf_version_tag(), [git], [yes], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master Don't use g_object_set in the init function (bug #6110).

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to c5c653df3242d3413a660f784df72f753c856b3a (commit)
   from 6cd5652ed72fae15ef73a6709ddfcc70005f5e3c (commit)

commit c5c653df3242d3413a660f784df72f753c856b3a
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 12:23:39 2009 +0100

Don't use g_object_set in the init function (bug #6110).

This will show the following warning with glib = 2.23.1:

(xfce4-panel:17374): GLib-GObject-WARNING **: IA__g_object_set_valist: 
construct property type for object `XfcePanelWindow' can't be set after 
construction

and shows a window with decorations. Use the normal gtk functions
for setting the properties.

 libxfce4panel/xfce-panel-window.c |   12 
 1 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/libxfce4panel/xfce-panel-window.c 
b/libxfce4panel/xfce-panel-window.c
index 7d0687b..6a6ecd8 100644
--- a/libxfce4panel/xfce-panel-window.c
+++ b/libxfce4panel/xfce-panel-window.c
@@ -304,14 +304,10 @@ xfce_panel_window_init (XfcePanelWindow *panel_window)
 
 GTK_WIDGET_SET_FLAGS (GTK_WIDGET (panel_window), GTK_CAN_FOCUS);
 
-g_object_set (G_OBJECT (panel_window),
-  type, GTK_WINDOW_TOPLEVEL,
-  decorated, FALSE,
-  resizable, FALSE,
-  type-hint, GDK_WINDOW_TYPE_HINT_DOCK,
-  title, PACKAGE_NAME   PACKAGE_VERSION,
-  NULL);
-
+gtk_window_set_type_hint (GTK_WINDOW (panel_window), 
GDK_WINDOW_TYPE_HINT_DOCK);
+gtk_window_set_decorated (GTK_WINDOW (panel_window), FALSE);
+gtk_window_set_resizable (GTK_WINDOW (panel_window), FALSE);
+gtk_window_set_title (GTK_WINDOW (panel_window), PACKAGE_NAME);
 gtk_window_stick (GTK_WINDOW (panel_window));
 
 priv = XFCE_PANEL_WINDOW_GET_PRIVATE (panel_window);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:xfce-4.6 Update News.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/xfce-4.6
 to b5c07c849102d2e7873391af7d177060291d473a (commit)
   from 586257b3ca946386e0f02eac7ae075e1c9087f02 (commit)

commit b5c07c849102d2e7873391af7d177060291d473a
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 12:49:05 2009 +0100

Update News.

 NEWS |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/NEWS b/NEWS
index 1d3747f..6fc5878 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+4.6.3
+=
+- Don't use g_object_set in the init function (bug #6110).
+- Translation updates (nn, nl, sv, kk, gl, sk, eu, sk, cs, zh_CN).
+
 4.6.2
 =
 - Properly set orientation of tasklist handler (bug #5222).
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:xfce-4.6 Bump version.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/xfce-4.6
 to 825b7dd12d6a521664ceb84e37039e5732c6fa59 (commit)
   from 1c1e80f52cc8395ee9b359f4e85395f94735b0e9 (commit)

commit 825b7dd12d6a521664ceb84e37039e5732c6fa59
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 13:00:44 2009 +0100

Bump version.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index bd4ad99..9706a18 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -13,7 +13,7 @@ dnl ***
 m4_define([libxfce4panel_verinfo], [2:2:1])
 m4_define([xfce4_panel_version_major], [4])
 m4_define([xfce4_panel_version_minor], [6])
-m4_define([xfce4_panel_version_micro], [2])
+m4_define([xfce4_panel_version_micro], [3])
 m4_define([xfce4_panel_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_panel_version_build], [...@revision@])
 m4_define([xfce4_panel_version_tag],   [])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:xfce-4.6 Post release tag bump.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/xfce-4.6
 to c551f622135ac1109f45162f05fbab9a78d36e2e (commit)
   from 825b7dd12d6a521664ceb84e37039e5732c6fa59 (commit)

commit c551f622135ac1109f45162f05fbab9a78d36e2e
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 13:02:55 2009 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 9706a18..485384c 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -16,7 +16,7 @@ m4_define([xfce4_panel_version_minor], [6])
 m4_define([xfce4_panel_version_micro], [3])
 m4_define([xfce4_panel_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_panel_version_build], [...@revision@])
-m4_define([xfce4_panel_version_tag],   [])
+m4_define([xfce4_panel_version_tag],   [git])
 m4_define([xfce4_panel_version], 
[xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(),
 [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], 
[xfce4_panel_version_tag()-xfce4_panel_version_build()], 
[xfce4_panel_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel|xfce-4.6.3 Creating annotated tag xfce-4.6.3

2009-12-30 Thread Nick Schermer
Updating annotated tag refs/tags/xfce-4.6.3
 as new annotated tag
 to 8d60721adc4e4a0c05004981af2c8228e77b4a27 (tag)
   succeeds xfce-4.6.2
  tagged by Nick Schermer n...@xfce.org
 on 2009-12-30 12:02 +

Daniel Nylander (1):
  l10n: Updates to Swedish (sv) translation

Eskild Hustvedt (1):
  l10n: Initial Norwegian Nynorsk translation

Nick Schermer (6):
  Drop pot file.
  Merge with translations from master.
  Don't use g_object_set in the init function (bug #6110).
  Update News.
  Build changelog during make dist.
  Bump version.

Rihards Prieditis (1):
  l10n: Updates to Latvian (lv) translation

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


[Xfce4-commits] xfce4-dict:master l10n: Updates to Danish (da) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to d04c3662c8aedb9198d30af973544fadca3a83ea (commit)
   from 9ce9aa17e7c6768449e6d6aa72ab164041df29ee (commit)

commit d04c3662c8aedb9198d30af973544fadca3a83ea
Author: Per Kongstad p_kongs...@op.pl
Date:   Wed Dec 30 13:50:30 2009 +

l10n: Updates to Danish (da) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/da.po |  152 --
 1 files changed, 78 insertions(+), 74 deletions(-)

diff --git a/po/da.po b/po/da.po
index 15c125a..a6cfbbd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,10 +6,10 @@
 # Per Kongstad p_kongs...@op.pl, 2008. 09.
 msgid 
 msgstr 
-Project-Id-Version: xfce4-dict 0.5.2\n
+Project-Id-Version: xfce4-dict 0.5.3\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-30 14:17+0100\n
-PO-Revision-Date: 2009-01-23 11:20+0100\n
+PO-Revision-Date: 2009-12-30 14:51+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
@@ -25,13 +25,17 @@ msgid A plugin to query different dictionaries.
 msgstr Et udvidelsesmodul, der slår op i forskellige ordbøger.
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
-#: ../src/xfce4-dict.desktop.in.h:2 ../lib/gui.c:627 ../lib/prefs.c:270
+#: ../src/xfce4-dict.desktop.in.h:2
+#: ../lib/gui.c:627
+#: ../lib/prefs.c:270
 msgid Dictionary
 msgstr Ordbog
 
 #: ../panel-plugin/xfce4-dict-plugin.c:346
-#: ../panel-plugin/xfce4-dict-plugin.c:472 ../src/xfce4-dict.c:204
-#: ../lib/spell.c:243 ../lib/gui.c:411
+#: ../panel-plugin/xfce4-dict-plugin.c:472
+#: ../src/xfce4-dict.c:204
+#: ../lib/spell.c:243
+#: ../lib/gui.c:411
 msgid Ready
 msgstr Klar
 
@@ -39,7 +43,8 @@ msgstr Klar
 msgid Look up a word
 msgstr Slå et ord op
 
-#: ../panel-plugin/xfce4-dict-plugin.c:443 ../lib/gui.c:651
+#: ../panel-plugin/xfce4-dict-plugin.c:443
+#: ../lib/gui.c:651
 msgid Search term
 msgstr Søgetekst
 
@@ -84,7 +89,8 @@ msgstr [TEXT]
 msgid Please report bugs to %s.
 msgstr Rapportér venligst fejl til %s.
 
-#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:847
+#: ../src/xfce4-dict.desktop.in.h:1
+#: ../lib/gui.c:847
 msgid A client program to query different dictionaries.
 msgstr Et klientprogram til at lave opslag i forskellige ordbøger.
 
@@ -93,9 +99,8 @@ msgid Dictionary Client
 msgstr Ordbogsklient
 
 #: ../lib/spell.c:75
-#, fuzzy
 msgid Spell Checker Results:
-msgstr Stavekontrol
+msgstr Resultatet af stavekontrol:
 
 #: ../lib/spell.c:101
 #, c-format
@@ -105,19 +110,19 @@ msgstr[0] %d forslag fundet.
 msgstr[1] %d forslag fundet.
 
 #: ../lib/spell.c:105
-#, fuzzy, c-format
+#, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr Forslag for  \%s\:
+msgstr Forslag for  \%s\ (%s):
 
 #: ../lib/spell.c:122
-#, fuzzy, c-format
+#, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr \%s\ er stavet korrekt.
+msgstr \%s\ er stavet korrekt (%s).
 
 #: ../lib/spell.c:134
-#, fuzzy, c-format
+#, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr Kunne ikke finde nogen forslag til \%s\.
+msgstr Kunne ikke finde nogen forslag til \%s\ (%s).
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
@@ -130,7 +135,8 @@ msgstr Fejl ved kørsel af \%s\ (%s).
 msgid Please set the spell check command in the preferences dialog.
 msgstr Vælg venligst stavekontrolkommandoen i indstillingsvinduet.
 
-#: ../lib/spell.c:208 ../lib/common.c:224
+#: ../lib/spell.c:208
+#: ../lib/common.c:224
 msgid Invalid input
 msgstr Ugyldig inddata
 
@@ -139,88 +145,88 @@ msgstr Ugyldig inddata
 msgid Process failed (%s)
 msgstr Procesfejl (%s)
 
-#: ../lib/speedreader.c:80 ../lib/speedreader.c:664
+#: ../lib/speedreader.c:80
+#: ../lib/speedreader.c:664
 msgid P_ause
-msgstr 
+msgstr P_ause
 
 #: ../lib/speedreader.c:81
 msgid _Resume
-msgstr 
+msgstr _Genoptag
 
 #: ../lib/speedreader.c:263
 msgid Running
-msgstr 
+msgstr Kører
 
 #: ../lib/speedreader.c:266
 msgid Finished
-msgstr 
+msgstr Afsluttet
 
 #: ../lib/speedreader.c:274
 msgid Speed Reader
-msgstr 
+msgstr Læsehastighedsmåler
 
 #: ../lib/speedreader.c:369
 msgid You must enter a text.
-msgstr 
+msgstr Du er nødt til at indtaste en tekst.
 
 #: ../lib/speedreader.c:505
 msgid Choose a file to load
-msgstr 
+msgstr Vælg en fil til indlæstning
 
 #: ../lib/speedreader.c:534
 #, c-format
 msgid The file '%s' could not be loaded.
-msgstr 
+msgstr Filen '%s' kunne ikke indlæses.
 
 #: ../lib/speedreader.c:552
 #, c-format
 msgid (display %d word at a time)
 msgid_plural (display %d words at a time)
-msgstr[0] 
-msgstr[1] 
+msgstr[0] (vis %d ord ad gangen)
+msgstr[1] (vis %d ord ad gangen)
 
 #: ../lib/speedreader.c:577
-msgid 
-This is an easy speed reading utility to help train you to read faster. It 
-does this by flashing words at a rapid rate on the screen.
-msgstr 
+msgid This is an easy speed reading utility to help train you to read faster. 
It does this by flashing words at a 

[Xfce4-commits] garcon:master Fix warning in ku translations.

2009-12-30 Thread Nick Schermer
Updating branch refs/heads/master
 to c5a496c678de8b2fbb1c79c346a48c74e5b4bcc1 (commit)
   from fb62a8a3dcd411a554ed335e30b4a165926f0a8f (commit)

commit c5a496c678de8b2fbb1c79c346a48c74e5b4bcc1
Author: Nick Schermer n...@xfce.org
Date:   Wed Dec 30 17:28:03 2009 +0100

Fix warning in ku translations.

 po/ku.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/po/ku.po b/po/ku.po
index 02d0385..757bb67 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -11,7 +11,7 @@ msgstr 
 Last-Translator: Erdal Ronahi erdal.ron...@gmail.com\n
 Language-Team: Kurdish ubuntu-l10n-...@lists.ubuntu.com\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=CHARSET\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 X-Generator: Lokalize 0.2\n
 Plural-Forms: nplurals=2; plural=n != 1;\n
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master l10n: Updates to Portuguese (pt) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to 22e368e854354298bff4d18ac6978903ec710572 (commit)
   from d04c3662c8aedb9198d30af973544fadca3a83ea (commit)

commit 22e368e854354298bff4d18ac6978903ec710572
Author: Sergio Marques smarque...@gmail.com
Date:   Wed Dec 30 16:59:09 2009 +

l10n: Updates to Portuguese (pt) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/pt.po |  225 ++
 1 files changed, 108 insertions(+), 117 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 7f3aaea..08cda13 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -5,29 +5,35 @@
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce4-dict-plugin 0.5.0\n
+Project-Id-Version: xfce4-dict-plugin 0.5.3\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-30 14:17+0100\n
-PO-Revision-Date: 2009-03-28 16:17+0100\n
-Last-Translator: Nuno Miguel nu...@netcabo.pt\n
+PO-Revision-Date: 2009-12-30 16:31-\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
+X-Poedit-Language: Portuguese\n
+X-Poedit-Country: PORTUGAL\n
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:1
 msgid A plugin to query different dictionaries.
-msgstr Um plugin para questionar diferentes dicionários.
+msgstr Um plugin para consultar diferentes dicionários.
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
-#: ../src/xfce4-dict.desktop.in.h:2 ../lib/gui.c:627 ../lib/prefs.c:270
+#: ../src/xfce4-dict.desktop.in.h:2
+#: ../lib/gui.c:627
+#: ../lib/prefs.c:270
 msgid Dictionary
 msgstr Dicionário
 
 #: ../panel-plugin/xfce4-dict-plugin.c:346
-#: ../panel-plugin/xfce4-dict-plugin.c:472 ../src/xfce4-dict.c:204
-#: ../lib/spell.c:243 ../lib/gui.c:411
+#: ../panel-plugin/xfce4-dict-plugin.c:472
+#: ../src/xfce4-dict.c:204
+#: ../lib/spell.c:243
+#: ../lib/gui.c:411
 msgid Ready
 msgstr Pronto
 
@@ -35,30 +41,30 @@ msgstr Pronto
 msgid Look up a word
 msgstr Encontrar uma palavra
 
-#: ../panel-plugin/xfce4-dict-plugin.c:443 ../lib/gui.c:651
+#: ../panel-plugin/xfce4-dict-plugin.c:443
+#: ../lib/gui.c:651
 msgid Search term
-msgstr Termo a procurar
+msgstr Pesquisar termo
 
 #: ../src/xfce4-dict.c:51
 msgid Search the given text using a Dict server(RFC 2229)
-msgstr Pesquisa pelo texto fornecido usando um servidor Dict (RFC 2229)
+msgstr Pesquisar pelo texto indicado usando um servidor Dict (RFC 2229)
 
 #: ../src/xfce4-dict.c:52
 msgid Search the given text using a web-based search engine
-msgstr Pesquisar pelo texto fornecido usando um motor de pesquisa na web
+msgstr Pesquisar pelo texto indicado usando um motor de pesquisa na web
 
 #: ../src/xfce4-dict.c:53
 msgid Check the given text with a spell checker
-msgstr Verificar o texto dado com um verificador
+msgstr Verificar o texto indicado com um verificador ortográfico
 
 #: ../src/xfce4-dict.c:54
 msgid Grab the focus on the text field in the panel
-msgstr Obter o foco no campo de texto no painel
+msgstr Obter o foco no campo de texto do painel
 
 #: ../src/xfce4-dict.c:55
 msgid Start stand-alone application even if the panel plugin is loaded
-msgstr 
-Iniciar aplicação independente mesmo se o plugin no painel estiver carregado
+msgstr Iniciar aplicação independente mesmo se o plugin no painel estiver 
carregado
 
 #: ../src/xfce4-dict.c:56
 msgid Grabs the PRIMARY selection content and uses it as search text
@@ -79,9 +85,10 @@ msgstr [TEXTO]
 #: ../src/xfce4-dict.c:147
 #, c-format
 msgid Please report bugs to %s.
-msgstr Por favor reporte bugs para %s.
+msgstr Por favor, reporte erros para %s.
 
-#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:847
+#: ../src/xfce4-dict.desktop.in.h:1
+#: ../lib/gui.c:847
 msgid A client program to query different dictionaries.
 msgstr Um programa para consultar dicionários diferentes.
 
@@ -90,9 +97,8 @@ msgid Dictionary Client
 msgstr Cliente de Dicionário
 
 #: ../lib/spell.c:75
-#, fuzzy
 msgid Spell Checker Results:
-msgstr Verificador Ortográfico
+msgstr Resultados do Verificador Ortográfico:
 
 #: ../lib/spell.c:101
 #, c-format
@@ -102,32 +108,33 @@ msgstr[0] %d sugestão encontrada.
 msgstr[1] %d sugestões encontradas.
 
 #: ../lib/spell.c:105
-#, fuzzy, c-format
+#, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr Sugestões para \%s\:
+msgstr Sugestões para \%s\ (%s):
 
 #: ../lib/spell.c:122
-#, fuzzy, c-format
+#, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr \%s\ is spelled correctly.
+msgstr \%s\ está bem escrito (%s).
 
 #: ../lib/spell.c:134
-#, fuzzy, c-format
+#, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr Nenhuma sugestão foi encontrada para \%s\.
+msgstr Sem sugestões para \%s\ (%s).
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
 #: ../lib/spell.c:164
 #, c-format
 msgid Error while executing \%s\ (%s).
-msgstr Erro 

[Xfce4-commits] libxfcegui4:xfce-4.6 l10n: Updates to Tamil (ta) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 1d3f4f150addb5a31f41ecb231abcef9075899f2 (commit)
   from 909e06ec72292ea2d5c1db88324bc6c6039ba549 (commit)

commit 1d3f4f150addb5a31f41ecb231abcef9075899f2
Author: Mohan R mohan...@gmail.com
Date:   Wed Dec 30 17:05:43 2009 +

l10n: Updates to Tamil (ta) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/ta.po |  451 +-
 1 files changed, 150 insertions(+), 301 deletions(-)

diff --git a/po/ta.po b/po/ta.po
index f1a2f84..eedd46e 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -1,335 +1,184 @@
-# Tamil translations for libxfcegui4 package.
-# Copyright (C) 2002-2006 The Xfce development team.
-# This file is distributed under the same license as the libxfcegui4 package.
-# Dinesh Nadarajah n_din...@yahoo.com, 2004.
+# Tamil translations for xfce-utils package.
+# Copyright (C) 2002-2007 The Xfce development team.
+# This file is distributed under the same license as the xfce-utils package.
+# Dinesh Nadarajah n_din...@yahoo.com, 2003.
 #
 msgid 
 msgstr 
-Project-Id-Version: libxfcegui4 4.4.0\n
+Project-Id-Version: xfce-utils 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-01-06 01:12+0100\n
-PO-Revision-Date: 2005-09-22 21:06+0900\n
-Last-Translator: Dinesh Nadarajah n_din...@yahoo.com\n
-Language-Team: Tamil translation-team...@lists.sourceforge.net\n
+POT-Creation-Date: 2009-02-01 11:39+0100\n
+PO-Revision-Date: 2009-12-30 12:37+0530\n
+Last-Translator: Mohan R mohan...@gmail.com\n
+Language-Team: ubuntu-l10n-tam ubuntu-l10n-...@lists.ubuntu.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+X-Poedit-Language: Tamil\n
+X-Poedit-Country: INDIA\n
+
+#: ../xfce4-about/info.c:197
+msgid Unable to load 
+msgstr பயன்பாட்டை இயக்கமுடியவில்லை
+
+#. Project lead
+#: ../xfce4-about/info.c:226
+msgid Project Lead
+msgstr செயல்திட்ட தலைவர்
+
+#. Core developers
+#: ../xfce4-about/info.c:230
+msgid Core developers
+msgstr முக்கிய நிரலாலர்கள்
+
+#. Active contributors
+#: ../xfce4-about/info.c:234
+msgid Active contributors
+msgstr தற்போதைய நிரலாலர்கள்
+
+#. Previous contributors
+#: ../xfce4-about/info.c:238
+msgid Previous contributors
+msgstr முந்தைய நிரலாலர்கள்
+
+#: ../xfce4-about/info.c:243
+msgid Web Hosting and Mailing Lists provided by
+msgstr வலை பராமரிப்பு மற்றும் மின்முகவரி அளிப்போர்
+
+#. Server admins
+#: ../xfce4-about/info.c:275
+msgid Server maintained by
+msgstr வலை சேவையகம் அளிப்போர்
+
+#. Goodies supervision
+#: ../xfce4-about/info.c:279
+msgid Goodies supervision
+msgstr சிறிய உபயோகமான பயன்பாடுகளை மேற்பார்வையிடுவோர்
+
+#. Translations supervision
+#: ../xfce4-about/info.c:283
+msgid Translations supervision
+msgstr மொழிபெயர்ப்புகளை மேற்பார்வையிடுவோர்
+
+#. Translators
+#: ../xfce4-about/info.c:287
+msgid Translators
+msgstr மொழிபெயர்ப்பாளர்கள்
+
+#: ../xfce4-about/info.c:318
+msgid If you know of anyone missing from this list, please let us know on 
+msgstr இப்பட்டியலில் எவரேனும் விடுபட்டிருபின் தெரியபடுத்துக 
+
+#: ../xfce4-about/info.c:322
+msgid Thanks to all who helped making this software available.
+msgstr இம்மென்பொருளை உருவாக்க பாடுபட்ட அனைவருக்கும் நன்றி
+
+#: ../xfce4-about/info.c:431
+msgid About Xfce 4
+msgstr Xfce 4ஐ பற்றி
+
+#: ../xfce4-about/info.c:432
+msgid Copyright 2002-2009 by Olivier Fourdan
+msgstr படியுரிமை 2002-2009 ஒலிவர் போர்டான்
+
+#: ../xfce4-about/info.c:455
+msgid Info
+msgstr தகவல்
 
-#: ../libxfce4kbd-private/xfce-shortcuts.c:53
-msgid 
-This shortcut is already being used for another window manager action. Which 
-action do you want to use?
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:54
-#: ../libxfce4kbd-private/xfce-shortcuts.c:57
-#: ../libxfce4kbd-private/xfce-shortcuts.c:60
-#: ../libxfce4kbd-private/xfce-shortcuts.c:63
-#, c-format
-msgid Use '%s'
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:54
-msgid Keep the other one
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:56
-#: ../libxfce4kbd-private/xfce-shortcuts.c:59
-#, c-format
-msgid 
-This shortcut is already being used for the command '%s'. Which action do 
-you want to use?
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:57
-#: ../libxfce4kbd-private/xfce-shortcuts.c:60
-#, c-format
-msgid Keep '%s'
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:62
-msgid 
-This shortcut is already being used by a window manager action. Which action 
-do you want to use?
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:63
-msgid Keep the window manager action
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:93
-#, c-format
-msgid Conflicting actions for %s
-msgstr 
-
-#: ../libxfce4kbd-private/xfce-shortcuts.c:126
-msgid This shortcut is already being used for something else.
-msgstr 
+#. add_page (GTK_NOTEBOOK (notebook), _(Credits), XFCE_AUTHORS, FALSE);
+#: ../xfce4-about/info.c:457
+msgid Credits
+msgstr புகழ்கள்
 
-#: 

[Xfce4-commits] libxfcegui4:xfce-4.6 l10n: Updates to Tamil (ta) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to e212351451ff255b38ac10a87d0e9d42b916c734 (commit)
   from 1d3f4f150addb5a31f41ecb231abcef9075899f2 (commit)

commit e212351451ff255b38ac10a87d0e9d42b916c734
Author: Mohan R mohan...@gmail.com
Date:   Wed Dec 30 17:09:54 2009 +

l10n: Updates to Tamil (ta) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/ta.po |  439 +-
 1 files changed, 292 insertions(+), 147 deletions(-)

diff --git a/po/ta.po b/po/ta.po
index eedd46e..67ebb03 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -1,14 +1,14 @@
-# Tamil translations for xfce-utils package.
-# Copyright (C) 2002-2007 The Xfce development team.
-# This file is distributed under the same license as the xfce-utils package.
-# Dinesh Nadarajah n_din...@yahoo.com, 2003.
+# Tamil translations for libxfcegui4 package.
+# Copyright (C) 2002-2006 The Xfce development team.
+# This file is distributed under the same license as the libxfcegui4 package.
+# Dinesh Nadarajah n_din...@yahoo.com, 2004.
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce-utils 4.4.0\n
+Project-Id-Version: libxfcegui4 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-02-01 11:39+0100\n
-PO-Revision-Date: 2009-12-30 12:37+0530\n
+POT-Creation-Date: 2009-01-06 01:12+0100\n
+PO-Revision-Date: 2009-12-30 12:26+0530\n
 Last-Translator: Mohan R mohan...@gmail.com\n
 Language-Team: ubuntu-l10n-tam ubuntu-l10n-...@lists.ubuntu.com\n
 MIME-Version: 1.0\n
@@ -17,168 +17,313 @@ msgstr 
 X-Poedit-Language: Tamil\n
 X-Poedit-Country: INDIA\n
 
-#: ../xfce4-about/info.c:197
-msgid Unable to load 
-msgstr பயன்பாட்டை இயக்கமுடியவில்லை
-
-#. Project lead
-#: ../xfce4-about/info.c:226
-msgid Project Lead
-msgstr செயல்திட்ட தலைவர்
-
-#. Core developers
-#: ../xfce4-about/info.c:230
-msgid Core developers
-msgstr முக்கிய நிரலாலர்கள்
-
-#. Active contributors
-#: ../xfce4-about/info.c:234
-msgid Active contributors
-msgstr தற்போதைய நிரலாலர்கள்
-
-#. Previous contributors
-#: ../xfce4-about/info.c:238
-msgid Previous contributors
-msgstr முந்தைய நிரலாலர்கள்
-
-#: ../xfce4-about/info.c:243
-msgid Web Hosting and Mailing Lists provided by
-msgstr வலை பராமரிப்பு மற்றும் மின்முகவரி அளிப்போர்
-
-#. Server admins
-#: ../xfce4-about/info.c:275
-msgid Server maintained by
-msgstr வலை சேவையகம் அளிப்போர்
-
-#. Goodies supervision
-#: ../xfce4-about/info.c:279
-msgid Goodies supervision
-msgstr சிறிய உபயோகமான பயன்பாடுகளை மேற்பார்வையிடுவோர்
-
-#. Translations supervision
-#: ../xfce4-about/info.c:283
-msgid Translations supervision
-msgstr மொழிபெயர்ப்புகளை மேற்பார்வையிடுவோர்
-
-#. Translators
-#: ../xfce4-about/info.c:287
-msgid Translators
-msgstr மொழிபெயர்ப்பாளர்கள்
-
-#: ../xfce4-about/info.c:318
-msgid If you know of anyone missing from this list, please let us know on 
-msgstr இப்பட்டியலில் எவரேனும் விடுபட்டிருபின் தெரியபடுத்துக 
-
-#: ../xfce4-about/info.c:322
-msgid Thanks to all who helped making this software available.
-msgstr இம்மென்பொருளை உருவாக்க பாடுபட்ட அனைவருக்கும் நன்றி
-
-#: ../xfce4-about/info.c:431
-msgid About Xfce 4
-msgstr Xfce 4ஐ பற்றி
-
-#: ../xfce4-about/info.c:432
-msgid Copyright 2002-2009 by Olivier Fourdan
-msgstr படியுரிமை 2002-2009 ஒலிவர் போர்டான்
-
-#: ../xfce4-about/info.c:455
-msgid Info
-msgstr தகவல்
+#: ../libxfce4kbd-private/xfce-shortcuts.c:53
+msgid This shortcut is already being used for another window manager action. 
Which action do you want to use?
+msgstr இந்த சுருக்குவிசை வேறொரு வின்டொ மேனேஜர் செயல்பாட்டிற்கு 
பயன்படுத்தபடுகிறது, எந்த செயல்பாட்டைதேர்வு செய்ய வேண்டும்?
 
-#. add_page (GTK_NOTEBOOK (notebook), _(Credits), XFCE_AUTHORS, FALSE);
-#: ../xfce4-about/info.c:457
-msgid Credits
-msgstr புகழ்கள்
+#: ../libxfce4kbd-private/xfce-shortcuts.c:54
+#: ../libxfce4kbd-private/xfce-shortcuts.c:57
+#: ../libxfce4kbd-private/xfce-shortcuts.c:60
+#: ../libxfce4kbd-private/xfce-shortcuts.c:63
+#, c-format
+msgid Use '%s'
+msgstr '%s'ஐ பயன்படுத்துக
 
-#: ../xfce4-about/info.c:458
-msgid Copyright
-msgstr படியுரிமை
+#: ../libxfce4kbd-private/xfce-shortcuts.c:54
+msgid Keep the other one
+msgstr மற்றொண்றை வைத்துக்கொள்க
 
-#: ../xfce4-about/info.c:459
-msgid BSDL
-msgstr பி எஸ் டி எல்
+#: ../libxfce4kbd-private/xfce-shortcuts.c:56
+#: ../libxfce4kbd-private/xfce-shortcuts.c:59
+#, c-format
+msgid This shortcut is already being used for the command '%s'. Which action 
do you want to use?
+msgstr இந்த சுருக்குவிசை '%s'செயல்பாட்டால் பயன்படுத்தபடுகிறது, எந்த 
செயல்பாட்டைதேர்வு செய்ய வேண்டும்?
 
-#: ../xfce4-about/info.c:460
-msgid LGPL
-msgstr எல் ஜி பி எல்
+#: ../libxfce4kbd-private/xfce-shortcuts.c:57
+#: ../libxfce4kbd-private/xfce-shortcuts.c:60
+#, c-format
+msgid Keep '%s'
+msgstr '%s'ஐ வைத்துக்கொள்க
 
-#: ../xfce4-about/info.c:461
-msgid GPL
-msgstr ஜி பி எல்
+#: ../libxfce4kbd-private/xfce-shortcuts.c:62
+msgid This shortcut is already being used by a window manager action. Which 
action do you want to use?
+msgstr இந்த சுருக்குவிசை வேறொரு வின்டொ 

[Xfce4-commits] xfce-utils:xfce-4.6 l10n: Updates to Tamil (ta) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 4a20e74cac70c43e2237227c92528735fc63a19d (commit)
   from 6d92dd25758504dbd1a84a11f7af6754c6aa (commit)

commit 4a20e74cac70c43e2237227c92528735fc63a19d
Author: Mohan R mohan...@gmail.com
Date:   Wed Dec 30 17:13:02 2009 +

l10n: Updates to Tamil (ta) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/ta.po |   81 +++--
 1 files changed, 41 insertions(+), 40 deletions(-)

diff --git a/po/ta.po b/po/ta.po
index 42d9239..eedd46e 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -8,76 +8,76 @@ msgstr 
 Project-Id-Version: xfce-utils 4.4.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-01 11:39+0100\n
-PO-Revision-Date: 2005-10-07 23:34+0900\n
-Last-Translator: Dinesh Nadarajah n_din...@yahoo.com\n
-Language-Team: Tamil tamili...@yahoogroups.com\n
+PO-Revision-Date: 2009-12-30 12:37+0530\n
+Last-Translator: Mohan R mohan...@gmail.com\n
+Language-Team: ubuntu-l10n-tam ubuntu-l10n-...@lists.ubuntu.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+X-Poedit-Language: Tamil\n
+X-Poedit-Country: INDIA\n
 
 #: ../xfce4-about/info.c:197
 msgid Unable to load 
-msgstr 
+msgstr பயன்பாட்டை இயக்கமுடியவில்லை
 
 #. Project lead
 #: ../xfce4-about/info.c:226
 msgid Project Lead
-msgstr 
+msgstr செயல்திட்ட தலைவர்
 
 #. Core developers
 #: ../xfce4-about/info.c:230
 msgid Core developers
-msgstr 
+msgstr முக்கிய நிரலாலர்கள்
 
 #. Active contributors
 #: ../xfce4-about/info.c:234
 msgid Active contributors
-msgstr 
+msgstr தற்போதைய நிரலாலர்கள்
 
 #. Previous contributors
 #: ../xfce4-about/info.c:238
 msgid Previous contributors
-msgstr 
+msgstr முந்தைய நிரலாலர்கள்
 
 #: ../xfce4-about/info.c:243
 msgid Web Hosting and Mailing Lists provided by
-msgstr 
+msgstr வலை பராமரிப்பு மற்றும் மின்முகவரி அளிப்போர்
 
 #. Server admins
 #: ../xfce4-about/info.c:275
 msgid Server maintained by
-msgstr 
+msgstr வலை சேவையகம் அளிப்போர்
 
 #. Goodies supervision
 #: ../xfce4-about/info.c:279
 msgid Goodies supervision
-msgstr 
+msgstr சிறிய உபயோகமான பயன்பாடுகளை மேற்பார்வையிடுவோர்
 
 #. Translations supervision
 #: ../xfce4-about/info.c:283
 msgid Translations supervision
-msgstr 
+msgstr மொழிபெயர்ப்புகளை மேற்பார்வையிடுவோர்
 
 #. Translators
 #: ../xfce4-about/info.c:287
 msgid Translators
-msgstr 
+msgstr மொழிபெயர்ப்பாளர்கள்
 
 #: ../xfce4-about/info.c:318
 msgid If you know of anyone missing from this list, please let us know on 
-msgstr 
+msgstr இப்பட்டியலில் எவரேனும் விடுபட்டிருபின் தெரியபடுத்துக 
 
 #: ../xfce4-about/info.c:322
 msgid Thanks to all who helped making this software available.
-msgstr 
+msgstr இம்மென்பொருளை உருவாக்க பாடுபட்ட அனைவருக்கும் நன்றி
 
 #: ../xfce4-about/info.c:431
-#, fuzzy
 msgid About Xfce 4
-msgstr XFce 4 பற்றி
+msgstr Xfce 4ஐ பற்றி
 
 #: ../xfce4-about/info.c:432
-#, fuzzy
 msgid Copyright 2002-2009 by Olivier Fourdan
 msgstr படியுரிமை 2002-2009 ஒலிவர் போர்டான்
 
@@ -96,51 +96,53 @@ msgstr படியுரிமை
 
 #: ../xfce4-about/info.c:459
 msgid BSDL
-msgstr 
+msgstr பி எஸ் டி எல்
 
 #: ../xfce4-about/info.c:460
 msgid LGPL
-msgstr 
+msgstr எல் ஜி பி எல்
 
 #: ../xfce4-about/info.c:461
 msgid GPL
-msgstr 
+msgstr ஜி பி எல்
 
 #. we don't support daemon mode
 #: ../xfrun/xfrun.c:50
 msgid Daemon Mode
-msgstr 
+msgstr நிலைநினைவக செயற்சூழல்
 
 #: ../xfrun/xfrun.c:52
 msgid Daemon mode is not supported.
-msgstr 
+msgstr நிலைநினைவக செயற்சூழலை ஆதரிப்பதில்லை
 
 #: ../xfrun/xfrun.c:53
 msgid Xfrun must be compiled with D-BUS support to enable daemon mode.
-msgstr 
+msgstr நிலைநினைவக செயற்சூழலுக்கு Xfrunஐ D-BUSன் ஆதரிப்புடன் தொகுத்திருக்க 
வேண்டும்
 
 #: ../xfrun/xfrun-dbus.c:141
 #, c-format
 msgid Unable to open display \%s\.
-msgstr 
+msgstr \%s\ திரையை திறக்க முடியவில்லை
 
 #: ../xfrun/xfrun-dbus.c:200
 #, c-format
 msgid D-BUS message bus disconnected. Exiting ...\n
-msgstr 
+msgstr D-BUS தகவல் வழி துண்டிக்கபட்டுள்ளது. இயக்கம் நிறுத்தபடுகின்றது ...\n
 
 #. failed
-#: ../xfrun/xfrun-dbus.c:342 ../xfrun/xfrun-dbus.c:353
+#: ../xfrun/xfrun-dbus.c:342
+#: ../xfrun/xfrun-dbus.c:353
 msgid System Error
-msgstr 
+msgstr கணினிப்பிழை
 
-#: ../xfrun/xfrun-dbus.c:344 ../xfrun/xfrun-dbus.c:355
+#: ../xfrun/xfrun-dbus.c:344
+#: ../xfrun/xfrun-dbus.c:355
 msgid Unable to fork to background:
-msgstr 
+msgstr பிற்புலத்திக்கு நிரல்நகலாக்க முடியவில்லை
 
 #: ../xfrun/xfrun-dialog.c:188
 msgid Run in _terminal
-msgstr முனையத்தில் þயக்குக
+msgstr _முனையத்தில் இயக்குக
 
 #: ../xfrun/xfrun-dialog.c:209
 msgid _Run
@@ -149,35 +151,34 @@ msgstr _இயக்குக
 #: ../xfrun/xfrun-dialog.c:540
 #, c-format
 msgid The command \%s\ failed to run:
-msgstr 
+msgstr \%s\ இயங்க மறுக்கின்றது
 
 #: ../xfrun/xfrun-dialog.c:542
-#, fuzzy
 msgid Run Error
-msgstr நிரலை þயக்குக
+msgstr இயக்கப்பிழை
 
 #: ../xfrun/xfrun-dialog.c:544
-#, fuzzy
 msgid Unknown Error
-msgstr நிரலை þயக்குக
+msgstr வகைப்படுத்த முடியா பிழை
 
 #: ../xfrun/xfrun-dialog.c:631
 #, c-format
 msgid 

[Xfce4-commits] xfce4-smartbookmark-plugin:master l10n: Updates to Italian (it) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to f4144f6626f0a9607b4f25f8c4b0ba04a30fe962 (commit)
   from 8d8241a7de8b9f00f3c099b835fa2d19d27547ae (commit)

commit f4144f6626f0a9607b4f25f8c4b0ba04a30fe962
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Wed Dec 30 19:51:59 2009 +

l10n: Updates to Italian (it) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/it.po |   16 +---
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/po/it.po b/po/it.po
index 7a6b9a8..7cc0b1f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,15 +3,17 @@
 # This file is distributed under the same license as the 
xfce4-smartbookmark-plugin package.
 # Emanuele Rocca e...@debian.org, 2006.
 # Fabio Riga u...@aruba.it, 2007.
+# Cristian Marchi cri.pe...@gmail.com, 2009.
+#
 #
 msgid 
 msgstr 
 Project-Id-Version: 0.4.1\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2008-07-27 21:20-0400\n
-PO-Revision-Date: 2007-11-02 16:29+0100\n
-Last-Translator:  Fabio Riga u...@aruba.it\n
-Language-Team: Italian xfce-i...@xfce.org\n
+PO-Revision-Date: 2009-12-29 08:18+0100\n
+Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
+Language-Team: Italian Translation Team xfce-it-translat...@googlegroups\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -23,7 +25,7 @@ msgstr Preferenze
 #. header
 #: ../src/smartbookmark.c:318
 msgid Smartbookmark
-msgstr Smartbookmark
+msgstr SmartBookmark
 
 #. text label
 #: ../src/smartbookmark.c:335
@@ -47,9 +49,9 @@ msgstr URL:  
 
 #: ../src/smartbookmark.desktop.in.in.h:1
 msgid Query websites from the Xfce panel
-msgstr 
+msgstr Interroga i siti web dal pannello di Xfce
 
 #: ../src/smartbookmark.desktop.in.in.h:2
-#, fuzzy
 msgid SmartBookmark
-msgstr Smartbookmark
+msgstr SmartBookmark
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mpc-plugin:master l10n: Updates to Italian (it) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to 5712671a6951a762181dce4a7d507d3f172de2f4 (commit)
   from 7293c9fb9b7e9929c6abd3ba949e5e1f68804961 (commit)

commit 5712671a6951a762181dce4a7d507d3f172de2f4
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Wed Dec 30 19:53:17 2009 +

l10n: Updates to Italian (it) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/it.po |   32 +++-
 1 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/po/it.po b/po/it.po
index 4de953a..0d47190 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce4-mpc-plugin\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-24 18:13+0200\n
-PO-Revision-Date: 2009-01-29 17:08+0100\n
+PO-Revision-Date: 2009-12-29 21:07+0100\n
 Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
 Language-Team: Italian xfce-it-translat...@googlegroups.com\n
 MIME-Version: 1.0\n
@@ -23,7 +23,7 @@ msgstr Avvia
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:247
 msgid Mpd Client Plugin
-msgstr Plugin per il client MPD
+msgstr Plugin per il client Mpd
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:253
 msgid Properties
@@ -42,35 +42,33 @@ msgid Password : 
 msgstr Password: 
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:269
-#, fuzzy
 msgid MPD Client : 
-msgstr Client: 
+msgstr Client MPD: 
 
+# Descrive le informazioni (titolo, anno,  artista ecc...) da visualizzare 
come tooltip.
 #: ../panel-plugin/xfce4-mpc-plugin.c:270
 msgid Tooltip Format : 
-msgstr 
+msgstr Formato delle info:
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:271
 msgid Playlist Format : 
-msgstr 
+msgstr Formato della scaletta:
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:305
 msgid Hostname or IP address
-msgstr 
+msgstr Nome host o indirizzo IP
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:306
 msgid Graphical MPD Client to launch in plugin context menu
-msgstr 
+msgstr Client MPD grafico da lanciare nel menu contestuale del plugin
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:307
 msgid Variables : %artist%, %album%, %track% and %title%
-msgstr 
+msgstr Variabili : %artist%, %album%, %track% e %title%
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:308
-msgid 
-Variables : %vol%, %status%, %newline%, %artist%, %album%, %track% and %title
-%
-msgstr 
+msgid Variables : %vol%, %status%, %newline%, %artist%, %album%, %track% and 
%title%
+msgstr Variabili : %vol%, %status%, %newline%, %artist%, %album%, %track% e 
%title%
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:313
 msgid Show _frame
@@ -83,7 +81,7 @@ msgstr ...non connesso?
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:465
 msgid Mpd playlist
-msgstr Scaletta MPD
+msgstr Scaletta Mpd
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:669
 msgid Random
@@ -95,12 +93,11 @@ msgstr Ripeti
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:697
 msgid Xfce4 Mpc Plugin
-msgstr Plugin MPD per Xfce4
+msgstr Plugin Mpc per Xfce4
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:698
 msgid A simple panel-plugin client for Music Player Daemon
-msgstr 
-Un semplice plugin da pannello per il demone del riproduttore musicale (MPD)
+msgstr Un semplice plugin da pannello per il demone del riproduttore musicale 
(MPD)
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:699
 msgid Copyright (c) 2006-2008 Landry Breuil\n
@@ -117,3 +114,4 @@ msgstr Un client per il demone del riproduttore musicale 
(MPD)
 #: ../panel-plugin/xfce4-mpc-plugin.desktop.in.in.h:2
 msgid MPD Client Plugin
 msgstr MPD Client plugin
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mpc-plugin:master l10n: Updates to Italian (it) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to b8c969205ed4e397aaf44597aee558930b18c65c (commit)
   from 5712671a6951a762181dce4a7d507d3f172de2f4 (commit)

commit b8c969205ed4e397aaf44597aee558930b18c65c
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Wed Dec 30 20:05:31 2009 +

l10n: Updates to Italian (it) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/it.po |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/it.po b/po/it.po
index 0d47190..d58a87f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce4-mpc-plugin\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-24 18:13+0200\n
-PO-Revision-Date: 2009-12-29 21:07+0100\n
+PO-Revision-Date: 2009-12-30 21:04+0100\n
 Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
 Language-Team: Italian xfce-it-translat...@googlegroups.com\n
 MIME-Version: 1.0\n
@@ -60,7 +60,7 @@ msgstr Nome host o indirizzo IP
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:306
 msgid Graphical MPD Client to launch in plugin context menu
-msgstr Client MPD grafico da lanciare nel menu contestuale del plugin
+msgstr Client MPD grafico da avviare nel menu contestuale del plugin
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:307
 msgid Variables : %artist%, %album%, %track% and %title%
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Handle Delete key for the selected item in the Cookie Manager

2009-12-30 Thread Christian Dywan
Updating branch refs/heads/master
 to b98064d0b69f133bd140fb5e52ab7dc81cacc94a (commit)
   from 381de91576238345d17e6bc8a781c7972020c0b3 (commit)

commit b98064d0b69f133bd140fb5e52ab7dc81cacc94a
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Wed Dec 30 22:52:43 2009 +0100

Handle Delete key for the selected item in the Cookie Manager

 extensions/cookie-manager/cookie-manager-page.c |   14 ++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index 71df49d..b5e40e6 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -10,6 +10,7 @@
 */
 
 #include gtk/gtk.h
+#include gdk/gdkkeysyms.h
 
 #include midori/midori.h
 #include midori/gtkiconentry.h
@@ -760,6 +761,18 @@ static gboolean cm_tree_button_release_event_cb(GtkWidget 
*widget, GdkEventButto
 }
 
 
+static gboolean cm_tree_key_press_cb(GtkWidget *widget, GdkEventKey *event, 
CookieManagerPage *cmp)
+{
+   if (event-keyval == GDK_Delete  !
+   (event-state  (GDK_SHIFT_MASK | GDK_CONTROL_MASK | 
GDK_MOD1_MASK)))
+   {
+   cm_button_delete_clicked_cb(NULL, cmp);
+   return TRUE;
+   }
+   return FALSE;
+}
+
+
 static gboolean cm_tree_button_press_event_cb(GtkWidget *widget, 
GdkEventButton *ev,

  CookieManagerPage *cmp)
 {
@@ -824,6 +837,7 @@ static GtkWidget *cm_tree_prepare(CookieManagerPage *cmp)
 
/* signals */
g_signal_connect(sel, changed, 
G_CALLBACK(cm_tree_selection_changed_cb), cmp);
+   g_signal_connect(treeview, key-press-event, 
G_CALLBACK(cm_tree_key_press_cb), cmp);
g_signal_connect(treeview, button-press-event, 
G_CALLBACK(cm_tree_button_press_event_cb), cmp);
g_signal_connect(treeview, button-release-event, 
G_CALLBACK(cm_tree_button_release_event_cb), cmp);
g_signal_connect(treeview, popup-menu, 
G_CALLBACK(cm_tree_popup_menu_cb), cmp);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Move code to delete selected item from button handler into separate function

2009-12-30 Thread Christian Dywan
Updating branch refs/heads/master
 to c91cc72505ace55aa9e0c0b0e729bfb758a9e97c (commit)
   from b98064d0b69f133bd140fb5e52ab7dc81cacc94a (commit)

commit c91cc72505ace55aa9e0c0b0e729bfb758a9e97c
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Wed Dec 30 22:55:26 2009 +0100

Move code to delete selected item from button handler into separate function

 extensions/cookie-manager/cookie-manager-page.c |9 +++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index b5e40e6..c953cae 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -343,7 +343,7 @@ static void cm_delete_cookie(CookieManagerPage *cmp, 
GtkTreeModel *model, GtkTre
 }
 
 
-static void cm_button_delete_clicked_cb(GtkToolButton *button, 
CookieManagerPage *cmp)
+static void cm_delete_item(CookieManagerPage *cmp)
 {
GtkTreeIter iter, iter_store, child;
GtkTreeModel *model;
@@ -411,6 +411,11 @@ static void cm_button_delete_clicked_cb(GtkToolButton 
*button, CookieManagerPage
}
 }
 
+static void cm_button_delete_clicked_cb(GtkToolButton *button, 
CookieManagerPage *cmp)
+{
+   cm_delete_item(cmp);
+}
+
 
 static void cm_delete_all_cookies_real(CookieManagerPage *cmp)
 {
@@ -766,7 +771,7 @@ static gboolean cm_tree_key_press_cb(GtkWidget *widget, 
GdkEventKey *event, Cook
if (event-keyval == GDK_Delete  !
(event-state  (GDK_SHIFT_MASK | GDK_CONTROL_MASK | 
GDK_MOD1_MASK)))
{
-   cm_button_delete_clicked_cb(NULL, cmp);
+   cm_delete_item(cmp);
return TRUE;
}
return FALSE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Always display spell check results on failed dictionary searches.

2009-12-30 Thread Enrico Tröger
Updating branch refs/heads/master
 to aa86fdcca7f985841014c29828578f74a1186ba4 (commit)
   from 9ce9aa17e7c6768449e6d6aa72ab164041df29ee (commit)

commit aa86fdcca7f985841014c29828578f74a1186ba4
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Thu Dec 31 00:47:27 2009 +0100

Always display spell check results on failed dictionary searches.

 ChangeLog   |6 ++
 lib/dictd.c |2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9403872..6abd69c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-12-31  Enrico Tröger  enrico(dot)troeger(at)uvena(dot)de
+
+ * lib/dict.c:
+   Always display spell check results on failed dictionary searches.
+
+
 2009-12-30  Enrico Tröger  enrico(dot)troeger(at)uvena(dot)de
 
  * lib/speedreader.c:
diff --git a/lib/dictd.c b/lib/dictd.c
index 68955b9..bd364b7 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -446,7 +446,7 @@ static gboolean process_server_response(DictData *dd)
if (NZV(dd-spell_bin))
{
gtk_text_buffer_insert(dd-main_textbuffer, 
dd-textiter, \n, 1);
-   dict_spell_start_query(dd, dd-searched_word, TRUE);
+   dict_spell_start_query(dd, dd-searched_word, FALSE);
}
 
return FALSE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Fix possibly uninitialised variable

2009-12-30 Thread Enrico Tröger
Updating branch refs/heads/master
 to c66d4f3f3f1a75eb9ce5c96ef3d57bf4bbb1e492 (commit)
   from aa86fdcca7f985841014c29828578f74a1186ba4 (commit)

commit c66d4f3f3f1a75eb9ce5c96ef3d57bf4bbb1e492
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Thu Dec 31 00:50:35 2009 +0100

Fix possibly uninitialised variable

 lib/speedreader.c |7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/speedreader.c b/lib/speedreader.c
index a31baf4..23b2da5 100644
--- a/lib/speedreader.c
+++ b/lib/speedreader.c
@@ -349,7 +349,7 @@ static gboolean sr_timer(gpointer data)
 static void sr_start(XfdSpeedReader *dialog)
 {
XfdSpeedReaderPrivate *priv = XFD_SPEED_READER_GET_PRIVATE(dialog);
-   gint wpm = 400, grouping;
+   gint wpm, grouping;
gint interval;
const gchar *fontname;
PangoFontDescription *pfd;
@@ -389,8 +389,9 @@ static void sr_start(XfdSpeedReader *dialog)
 
/* calculate the rate */
wpm = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(priv-spin_wpm));
-   if (wpm = 1)
-   interval = 6 / wpm;
+   if (wpm  1)
+   wpm = 400;
+   interval = 6 / wpm;
 
/* save the settings */
priv-dd-speedreader_wpm = wpm;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-dict

2009-12-30 Thread Enrico Tröger
Updating branch refs/heads/master
 to db36444a787f70bf0f256c9ee8d8a8ee6ae9b73c (commit)
   from c66d4f3f3f1a75eb9ce5c96ef3d57bf4bbb1e492 (commit)

commit db36444a787f70bf0f256c9ee8d8a8ee6ae9b73c
Merge: c66d4f3f3f1a75eb9ce5c96ef3d57bf4bbb1e492 
22e368e854354298bff4d18ac6978903ec710572
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Thu Dec 31 01:01:17 2009 +0100

Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-dict

commit 22e368e854354298bff4d18ac6978903ec710572
Author: Sergio Marques smarque...@gmail.com
Date:   Wed Dec 30 16:59:09 2009 +

l10n: Updates to Portuguese (pt) translation

Transmitted-via: Transifex (translations.xfce.org)

commit d04c3662c8aedb9198d30af973544fadca3a83ea
Author: Per Kongstad p_kongs...@op.pl
Date:   Wed Dec 30 13:50:30 2009 +

l10n: Updates to Danish (da) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/da.po |  152 +
 po/pt.po |  225 ++
 2 files changed, 186 insertions(+), 191 deletions(-)

diff --git a/po/da.po b/po/da.po
index 15c125a..a6cfbbd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,10 +6,10 @@
 # Per Kongstad p_kongs...@op.pl, 2008. 09.
 msgid 
 msgstr 
-Project-Id-Version: xfce4-dict 0.5.2\n
+Project-Id-Version: xfce4-dict 0.5.3\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-30 14:17+0100\n
-PO-Revision-Date: 2009-01-23 11:20+0100\n
+PO-Revision-Date: 2009-12-30 14:51+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
@@ -25,13 +25,17 @@ msgid A plugin to query different dictionaries.
 msgstr Et udvidelsesmodul, der slår op i forskellige ordbøger.
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
-#: ../src/xfce4-dict.desktop.in.h:2 ../lib/gui.c:627 ../lib/prefs.c:270
+#: ../src/xfce4-dict.desktop.in.h:2
+#: ../lib/gui.c:627
+#: ../lib/prefs.c:270
 msgid Dictionary
 msgstr Ordbog
 
 #: ../panel-plugin/xfce4-dict-plugin.c:346
-#: ../panel-plugin/xfce4-dict-plugin.c:472 ../src/xfce4-dict.c:204
-#: ../lib/spell.c:243 ../lib/gui.c:411
+#: ../panel-plugin/xfce4-dict-plugin.c:472
+#: ../src/xfce4-dict.c:204
+#: ../lib/spell.c:243
+#: ../lib/gui.c:411
 msgid Ready
 msgstr Klar
 
@@ -39,7 +43,8 @@ msgstr Klar
 msgid Look up a word
 msgstr Slå et ord op
 
-#: ../panel-plugin/xfce4-dict-plugin.c:443 ../lib/gui.c:651
+#: ../panel-plugin/xfce4-dict-plugin.c:443
+#: ../lib/gui.c:651
 msgid Search term
 msgstr Søgetekst
 
@@ -84,7 +89,8 @@ msgstr [TEXT]
 msgid Please report bugs to %s.
 msgstr Rapportér venligst fejl til %s.
 
-#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:847
+#: ../src/xfce4-dict.desktop.in.h:1
+#: ../lib/gui.c:847
 msgid A client program to query different dictionaries.
 msgstr Et klientprogram til at lave opslag i forskellige ordbøger.
 
@@ -93,9 +99,8 @@ msgid Dictionary Client
 msgstr Ordbogsklient
 
 #: ../lib/spell.c:75
-#, fuzzy
 msgid Spell Checker Results:
-msgstr Stavekontrol
+msgstr Resultatet af stavekontrol:
 
 #: ../lib/spell.c:101
 #, c-format
@@ -105,19 +110,19 @@ msgstr[0] %d forslag fundet.
 msgstr[1] %d forslag fundet.
 
 #: ../lib/spell.c:105
-#, fuzzy, c-format
+#, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr Forslag for  \%s\:
+msgstr Forslag for  \%s\ (%s):
 
 #: ../lib/spell.c:122
-#, fuzzy, c-format
+#, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr \%s\ er stavet korrekt.
+msgstr \%s\ er stavet korrekt (%s).
 
 #: ../lib/spell.c:134
-#, fuzzy, c-format
+#, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr Kunne ikke finde nogen forslag til \%s\.
+msgstr Kunne ikke finde nogen forslag til \%s\ (%s).
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
@@ -130,7 +135,8 @@ msgstr Fejl ved kørsel af \%s\ (%s).
 msgid Please set the spell check command in the preferences dialog.
 msgstr Vælg venligst stavekontrolkommandoen i indstillingsvinduet.
 
-#: ../lib/spell.c:208 ../lib/common.c:224
+#: ../lib/spell.c:208
+#: ../lib/common.c:224
 msgid Invalid input
 msgstr Ugyldig inddata
 
@@ -139,88 +145,88 @@ msgstr Ugyldig inddata
 msgid Process failed (%s)
 msgstr Procesfejl (%s)
 
-#: ../lib/speedreader.c:80 ../lib/speedreader.c:664
+#: ../lib/speedreader.c:80
+#: ../lib/speedreader.c:664
 msgid P_ause
-msgstr 
+msgstr P_ause
 
 #: ../lib/speedreader.c:81
 msgid _Resume
-msgstr 
+msgstr _Genoptag
 
 #: ../lib/speedreader.c:263
 msgid Running
-msgstr 
+msgstr Kører
 
 #: ../lib/speedreader.c:266
 msgid Finished
-msgstr 
+msgstr Afsluttet
 
 #: ../lib/speedreader.c:274
 msgid Speed Reader
-msgstr 
+msgstr Læsehastighedsmåler
 
 #: ../lib/speedreader.c:369
 msgid You must enter a text.
-msgstr 
+msgstr Du er nødt til at indtaste en tekst.
 
 #: ../lib/speedreader.c:505
 msgid Choose a file to load
-msgstr 
+msgstr Vælg en fil til indlæstning
 
 #: ../lib/speedreader.c:534
 #, c-format
 msgid The 

[Xfce4-commits] gigolo|gigolo-0.4.0 Creating annotated tag gigolo-0.4.0

2009-12-30 Thread Enrico Tröger
Updating annotated tag refs/tags/gigolo-0.4.0
 as new annotated tag
 to bdeaf21eb192a93676d0607e4f5fcc6f29e75997 (tag)
   succeeds gigolo-0.3.1
  tagged by Enrico Tröger enr...@xfce.org
 on 2009-12-31 00:46 +

Daniel Nylander (1):
  l10n: Updates to Swedish (sv) translation

Enrico Tröger (27):
  Fix wrongly opening the Connect dialog when clicking on domains without 
hosts in the Browse Network panel.
  French translation update (Jérôme Guelfucci)
  Don't show error dialogs when the error was already handled.
  Czech translation update (Jan Hrdina)
  Rework the whole network browsing code:
  Plug a little memleak.
  Show 'No Workgroups/Hosts/Shares found' messages in the network browser 
if appropriate.
  Use gtk_list_store_insert_with_values() instead of 
gtk_list_store_append() and gtk_list_store_set().
  Expand the nodes in the network browser on the fly while they are added.
  German translation update (Fabian Nowak).
  Only query the window state at exit if the main window was realised at 
all.
  Use a counter with a timeout for a more accurate approximation of 
finished network browsing.
  Message catalog updated
  New release: Gigolo 0.3.2.
  Fix build for GTK 2.12 (oops).
  Make use of the G_GNUC_PRINTF() macro.
  Add a Bookmark side panel.
  Add descriptions for archive and gphoto2 schemes.
  Update the popup menu after editing bookmarks.
  Adjust tooltip for the 'Show side panel' option.
  Simplify the code a bit.
  Spanish translation update (Elega)
  Move definition of a variable to fix non-debug build of the test suite.
  When querying Samba shares in the Connect/Bookmark Edit dialog, mount 
smb://hostname as necessary.
  Properly clean up on destruction.
  Sync with GTK upstream (see 
http://git.gnome.org/cgit/gtk+/commit/?id=84a9e65ca3bf407807dbe60c549169810c631601).
  Update to Waf 1.5.8.

Enrico Tröger (34):
  Add module description file.
  Rename module.xml (oops).
  Add ignore file
  Generate LINGUAS file on the fly as it is not maintained anymore
  Detect Xfce environment without using 'xprop' tool
  Remove autogenerated files from the repository
  Merge branch 'master' of ssh://git.xfce.org/git/apps/gigolo
  s/SVN/GIT/
  Drop old code
  Merge branch 'master' of ssh://git.xfce.org/git/apps/gigolo
  Change mailing address
  Implement folder property for bookmarks
  Don't use deprecated GIO API
  gigolo_window_find_bookmark_by_uri() = 
gigolo_settings_get_bookmark_by_uri()
  Display the folder as part of the URI for bookmarks in tooltips
  Folders may be empty
  Merge branch 'master' of ssh://git.xfce.org/git/apps/gigolo
  Fix displaying of additional bookmark information in the bookmark dialog
  Properly handle spaces in URIs
  Minor fixes
  Merge branch 'master' of ssh://git.xfce.org/git/apps/gigolo
  Fix command to determine the available languages to fix the build with 
autotools
  Ignore the INSTALL file
  Explicitly check for and link against libX11
  Fix wrong check (oops)
  Use pkgconfig for the X11 checks
  Implement basic version of path component for WebDav URIs. Not really 
tested yet.
  Strip leading slashes for Share and Path values
  Remove useless casts
  Use a GMountOperation when mounting volumes (#6047)
  Update all message catalogues
  Drop pot file.
  Re-add gigolo.pot file due to some Transiflex problems
  New release: 0.4.0

Evaggelos Balaskas (1):
  l10n: Updates to Greek (el) translation

Gabor Kelemen (1):
  2009-07-24  Gabor Kelemen  kelem...@gnome.hu

Harald Servat (1):
  l10n: Updates to Catalan (Valencian) (ca) translation

Ignacio Velasco (1):
  l10n: Updates to Spanish (Castilian) (es) translation

Leandro Regueiro (2):
  l10n: Updates to Galician (gl) translation
  l10n: Updates to Galician (gl) translation

Masato Hashimoto (4):
  Japanese translation update
  Update ja translation
  l10n: Updates to Japanese (ja) translation
  l10n: Updates to Japanese (ja) translation

Maximilian Schleiss (1):
  Translations updates - de it tr

Michal Varady (1):
  Czech translation updated, terminology improved, mistakes fixed

Mike Massonnet (10):
  goodies translation update
  Catalan translation update
  goodies translation update
  goodies translation update (galician only)
  update translations
  update goodies translations
  Drop svn:executable bit from po files
  update translations
  update goodies translations
  update goodies translation

Nuno Miguel (2):
  l10n: Added Portuguese translation
  l10n: Updates to Portuguese (pt) translation

Og Maciel (1):
  l10n: Updates to Portuguese (Brazilian) (pt_BR) translation

Per Kongstad (4):
  * da.po: Danish translation update (Per Kongstad)

[Xfce4-commits] xfce4-dict:master l10n: Updates to Japanese (ja) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to 476b1c575779c19e54d4662aa6ab25d6e296a142 (commit)
   from 67b34e18e5b16fd765dce6fedd4addb9124dbdcf (commit)

commit 476b1c575779c19e54d4662aa6ab25d6e296a142
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Thu Dec 31 03:35:15 2009 +

l10n: Updates to Japanese (ja) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/ja.po |   52 +++-
 1 files changed, 23 insertions(+), 29 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 0b8257c..f7fb08f 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9,8 +9,8 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-dict-plugin\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-30 14:17+0100\n
-PO-Revision-Date: 2009-08-28 00:45+0900\n
+POT-Creation-Date: 2009-12-31 12:32+0900\n
+PO-Revision-Date: 2009-12-31 12:32+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
@@ -111,19 +111,19 @@ msgstr[0] %d 個の候補が見つかりました。
 msgstr[1] %d 個の候補が見つかりました。
 
 #: ../lib/spell.c:105
-#, fuzzy, c-format
+#, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr \%s\ の候補:
+msgstr \%s\ (%s) の候補:
 
 #: ../lib/spell.c:122
-#, fuzzy, c-format
+#, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr \%s\ は正しいスペルです。
+msgstr \%s\ は正しいスペルです (%s)。
 
 #: ../lib/spell.c:134
-#, fuzzy, c-format
+#, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr \%s\ の候補はありませんでした。
+msgstr \%s\ (%s) の候補はありませんでした。
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
@@ -145,13 +145,13 @@ msgstr 不正な入力です。
 msgid Process failed (%s)
 msgstr 処理失敗 (%s)
 
-#: ../lib/speedreader.c:80 ../lib/speedreader.c:664
+#: ../lib/speedreader.c:80 ../lib/speedreader.c:665
 msgid P_ause
-msgstr 
+msgstr 一時停止(_A)
 
 #: ../lib/speedreader.c:81
 msgid _Resume
-msgstr 
+msgstr 再開(_R)
 
 #: ../lib/speedreader.c:263
 msgid Running
@@ -169,23 +169,23 @@ msgstr スピードリーダ
 msgid You must enter a text.
 msgstr 文字列を入力してください。
 
-#: ../lib/speedreader.c:505
+#: ../lib/speedreader.c:506
 msgid Choose a file to load
 msgstr ロードするファイルの選択
 
-#: ../lib/speedreader.c:534
+#: ../lib/speedreader.c:535
 #, c-format
 msgid The file '%s' could not be loaded.
 msgstr ファイル '%s' を読み込めませんでした。
 
-#: ../lib/speedreader.c:552
+#: ../lib/speedreader.c:553
 #, c-format
 msgid (display %d word at a time)
 msgid_plural (display %d words at a time)
 msgstr[0] (一度に %d 個表示します)
 msgstr[1] (一度に %d 個表示します)
 
-#: ../lib/speedreader.c:577
+#: ../lib/speedreader.c:578
 msgid 
 This is an easy speed reading utility to help train you to read faster. It 
 does this by flashing words at a rapid rate on the screen.
@@ -193,24 +193,24 @@ msgstr 
 これは速読練習用の簡単なユーティリティです。画面に文字列を一つずつ、高速に表
 示します。
 
-#: ../lib/speedreader.c:580
+#: ../lib/speedreader.c:581
 msgid _Words per Minute:
 msgstr 1分あたりの単語数(_W):
 
-#: ../lib/speedreader.c:586
+#: ../lib/speedreader.c:587
 msgid _Mark Paragraphs
 msgstr 段落に印をつける(_M)
 
-#: ../lib/speedreader.c:593
+#: ../lib/speedreader.c:594
 msgid Word _Grouping:
 msgstr 単語のグルーピング(_G):
 
-#: ../lib/speedreader.c:609
+#: ../lib/speedreader.c:610
 msgid _Font Size:
 msgstr フォントサイズ(_F):
 
 # Default strings to be displayed in the Speed Reader. Each ja strings should 
be separated by space because Speed Reader displays strings separated by space 
in turn.
-#: ../lib/speedreader.c:629
+#: ../lib/speedreader.c:630
 msgid 
 Enter some text here you would like to read.\n
 \n
@@ -221,17 +221,17 @@ msgstr 
 \n
 体を楽に、 リラックスして ください。 「スタート」ボタンを 押すと 開始します。
 
-#: ../lib/speedreader.c:645
+#: ../lib/speedreader.c:646
 msgid Load the contents of a file
 msgstr 文字列をファイルから読み込みます
 
 # tooltip
-#: ../lib/speedreader.c:653
+#: ../lib/speedreader.c:654
 msgid Clear the contents of the text field
 msgstr テキストフィールドの内容をクリアします
 
 # Start speed reading
-#: ../lib/speedreader.c:665
+#: ../lib/speedreader.c:666
 msgid _Start
 msgstr スタート(_S)
 
@@ -445,7 +445,6 @@ msgid Links:
 msgstr リンク:
 
 #: ../lib/prefs.c:354
-#, fuzzy
 msgid Phonetics:
 msgstr 発音の色:
 
@@ -502,7 +501,6 @@ msgid URL:
 msgstr URL:
 
 #: ../lib/prefs.c:621
-#, fuzzy
 msgid 
 Enter the URL of a web site which offers translation or dictionary services. 
 Use {word} as placeholder for the searched word.
@@ -530,7 +528,3 @@ msgstr 
 
 #~ msgid Link Color:
 #~ msgstr リンクの色:
-
-# Stop speed reading
-#~ msgid St_op
-#~ msgstr ストップ(_O)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] orage:master l10n: Updates to Japanese (ja) translation

2009-12-30 Thread Transifex
Updating branch refs/heads/master
 to 7917885e5f7b5b23091ba4941a9fb12e559368bc (commit)
   from eec84db564bffc2e6e1b1e50c8e87814ae6bc1f6 (commit)

commit 7917885e5f7b5b23091ba4941a9fb12e559368bc
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Thu Dec 31 05:46:12 2009 +

l10n: Updates to Japanese (ja) translation

Transmitted-via: Transifex (translations.xfce.org)

 po/ja.po |  190 -
 1 files changed, 100 insertions(+), 90 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 0e0bfe3..6ee1e7b 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -14,8 +14,8 @@ msgid 
 msgstr 
 Project-Id-Version: orage 4.5.9.6\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-30 17:07+0200\n
-PO-Revision-Date: 2009-09-12 15:43+0900\n
+POT-Creation-Date: 2009-12-31 14:43+0900\n
+PO-Revision-Date: 2009-12-31 14:42+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese xfce-users...@ml.fdiary.net\n
 MIME-Version: 1.0\n
@@ -26,11 +26,11 @@ msgstr 
 
 #: ../globaltime/globaltime.c:100
 msgid Raising GlobalTime window...
-msgstr グローバルタイムウィンドウを生成しています...
+msgstr 世界時計ウィンドウを生成しています...
 
 #: ../globaltime/globaltime.c:102
 msgid GlobalTime window raise failed
-msgstr グローバルタイムウィンドウの生成に失敗しました
+msgstr 世界時計ウィンドウの生成に失敗しました
 
 #. ** timezone tooltip **
 #: ../globaltime/globaltime.c:278
@@ -56,12 +56,14 @@ msgstr 
 
 #: ../globaltime/globaltime.c:481
 msgid adjust to change hour
-msgstr 時を設定してください
+msgstr 時を調整してください
 
 #: ../globaltime/globaltime.c:497
 msgid 
 adjust to change minute. Click arrows with button 2 to change only 1 minute.
 msgstr 
+分を調整してください。ボタン 2 で矢印ボタンをクリックすると 1 分ずつ変更しま
+す。
 
 #: ../globaltime/gt_prefs.c:264 ../globaltime/gt_prefs.c:265
 msgid NEW
@@ -116,9 +118,8 @@ msgid close window and exit
 msgstr ウィンドウを閉じて終了します
 
 #: ../globaltime/gt_prefs.c:589
-#, fuzzy
 msgid Globaltime preferences 
-msgstr 設定を更新します
+msgstr 世界時計設定 
 
 #. ---HEADING---
 #: ../globaltime/gt_prefs.c:602
@@ -244,9 +245,8 @@ msgid update preferences
 msgstr 設定を更新します
 
 #: ../globaltime/gt_prefs.c:1061
-#, fuzzy
 msgid Globaltime Preferences
-msgstr 全体設定
+msgstr 世界時計の設定
 
 #. ---HEADING--
 #: ../globaltime/gt_prefs.c:1072
@@ -296,25 +296,25 @@ msgstr 現地のタイムゾーン:
 #: ../globaltime/timezone_selection.c:103
 #: ../panel-plugin/timezone_selection.c:103 ../src/timezone_selection.c:103
 msgid  Other
-msgstr 
+msgstr  その他
 
 #: ../globaltime/timezone_selection.c:158
 #: ../panel-plugin/timezone_selection.c:158 ../src/timezone_selection.c:169
 #, c-format
 msgid %d hour %d mins
-msgstr 
+msgstr %d 時間 %d 分
 
 #: ../globaltime/timezone_selection.c:161
 #: ../panel-plugin/timezone_selection.c:161 ../src/timezone_selection.c:172
-#, fuzzy, c-format
+#, c-format
 msgid %d hour
-msgstr 時
+msgstr %d 時間
 
 #: ../globaltime/timezone_selection.c:163
 #: ../panel-plugin/timezone_selection.c:163 ../src/timezone_selection.c:174
-#, fuzzy, c-format
+#, c-format
 msgid %d mins
-msgstr 分
+msgstr %d 分
 
 #: ../globaltime/timezone_selection.c:169
 #: ../panel-plugin/timezone_selection.c:169 ../src/timezone_selection.c:180
@@ -323,19 +323,20 @@ msgstr 
 
 #: ../globaltime/timezone_selection.c:172
 #: ../panel-plugin/timezone_selection.c:172 ../src/timezone_selection.c:183
-#, fuzzy
 msgid forward
-msgstr 翌日に移動します
+msgstr 
 
+# Summer time shift - previous
 #: ../globaltime/timezone_selection.c:196
 #: ../panel-plugin/timezone_selection.c:196 ../src/timezone_selection.c:207
 msgid not changed
-msgstr 
+msgstr 変更なし
 
+# Summer time shift - next
 #: ../globaltime/timezone_selection.c:197
 #: ../panel-plugin/timezone_selection.c:197 ../src/timezone_selection.c:208
 msgid not changing
-msgstr 
+msgstr 変更なし
 
 #. location
 #: ../globaltime/timezone_selection.c:249
@@ -349,17 +350,17 @@ msgstr 現在地
 #: ../globaltime/timezone_selection.c:260
 #: ../panel-plugin/timezone_selection.c:260 ../src/timezone_selection.c:271
 msgid GMT Offset
-msgstr 
+msgstr GMT との時差
 
 #: ../globaltime/timezone_selection.c:266
 #: ../panel-plugin/timezone_selection.c:266 ../src/timezone_selection.c:277
 msgid Previous/Next Change
-msgstr 
+msgstr 前回/次回の変更
 
 #: ../globaltime/timezone_selection.c:271
 #: ../panel-plugin/timezone_selection.c:271 ../src/timezone_selection.c:282
 msgid Country
-msgstr 
+msgstr 国
 
 #: ../globaltime/timezone_selection.c:301
 #: ../globaltime/timezone_selection.c:311
@@ -369,13 +370,14 @@ msgstr 
 msgid Pick timezone
 msgstr タイムゾーンを選択してください
 
+# Change timezone view
 #: ../globaltime/timezone_selection.c:304
 #: ../globaltime/timezone_selection.c:314
 #: ../panel-plugin/timezone_selection.c:304
 #: ../panel-plugin/timezone_selection.c:314 ../src/timezone_selection.c:315
 #: ../src/timezone_selection.c:325
 msgid Change mode
-msgstr 
+msgstr モード変更
 
 #: ../globaltime/timezone_selection.c:305
 #: