[Xfce4-commits] parole:master Fix buffering info that was displayed in fullscreen mode Fix WriteReady handler, the browser plugin is getting usuable now.

2009-12-01 Thread Ali Abdallah
Updating branch refs/heads/master
 to acc3fc53c611bda9c9a8d0c00fcff9ab38896036 (commit)
   from 7c7a8971e66cd810a82800a8ba91880a6f631579 (commit)

commit acc3fc53c611bda9c9a8d0c00fcff9ab38896036
Author: Ali Abdallah al...@xfce.org
Date:   Tue Dec 1 09:14:07 2009 +0100

Fix buffering info that was displayed in fullscreen mode
Fix WriteReady handler, the browser plugin is getting usuable now.

 browser-plugin/media-plugin/parole-plugin-player.c |1 +
 browser-plugin/plugin.cpp  |8 ++--
 gst/parole-gst.c   |2 +-
 3 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/browser-plugin/media-plugin/parole-plugin-player.c 
b/browser-plugin/media-plugin/parole-plugin-player.c
index 103bdee..d9bb713 100644
--- a/browser-plugin/media-plugin/parole-plugin-player.c
+++ b/browser-plugin/media-plugin/parole-plugin-player.c
@@ -729,6 +729,7 @@ parole_plugin_player_construct (GObject *object)
  * buffering
  */
 player-priv-buffering = gtk_label_new (NULL);
+gtk_widget_set_no_show_all (player-priv-buffering, TRUE);
 gtk_widget_hide (player-priv-buffering);
 gtk_box_pack_start (GTK_BOX (vbox), player-priv-buffering, 
FALSE, FALSE, 0);
diff --git a/browser-plugin/plugin.cpp b/browser-plugin/plugin.cpp
index 185a82d..3b5526d 100644
--- a/browser-plugin/plugin.cpp
+++ b/browser-plugin/plugin.cpp
@@ -105,6 +105,8 @@ parole_plugin_player_ready_cb (DBusGProxy *proxy, gpointer 
data)
 {
plugin-ping_id = g_timeout_add_seconds (10, (GSourceFunc) 
parole_plugin_ping, plugin);
 }
+
+
 }
 
 
@@ -413,12 +415,6 @@ int32_t CPlugin::WriteReady (NPStream * stream)
 {
 g_debug (WriteReady url=%s, stream-url);
 
-if (checked)
-{
-   DestroyStream (stream, NPRES_DONE);
-   return -1;
-}
-
 return  player_ready ? STREAMBUFSIZE  : 0;
 }
 
diff --git a/gst/parole-gst.c b/gst/parole-gst.c
index 6e52df9..6c9acfe 100644
--- a/gst/parole-gst.c
+++ b/gst/parole-gst.c
@@ -1376,7 +1376,7 @@ parole_gst_button_press_event (GtkWidget *widget, 
GdkEventButton *ev)
 {
nav = GST_NAVIGATION (gst-priv-video_sink);
gst_navigation_send_mouse_event (nav, mouse-button-press, ev-button, 
ev-x, ev-y);
-   ret = TRUE;
+   //ret = TRUE;
 }
 
 if (GTK_WIDGET_CLASS (parole_gst_parent_class)-button_press_event)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:master Fix a minor memory leak in the tray plugin, the plugin is not able to close notification when the daemon is notify-osd, notify_notification_close does nothing, however

2009-12-01 Thread Ali Abdallah
Updating branch refs/heads/master
 to 708a6683211511e599ecdb5033ccfbec94f1994c (commit)
   from dd33007064166e4b910e7e95172ae2bf3650b3b1 (commit)

commit 708a6683211511e599ecdb5033ccfbec94f1994c
Author: Ali Abdallah al...@xfce.org
Date:   Tue Dec 1 14:05:13 2009 +0100

Fix a minor memory leak in the tray plugin,
the plugin is not able to close notification when the daemon is
notify-osd, notify_notification_close does nothing, however it works
with xfce4-notifyd and notification-daemon.

 plugins/tray/tray-provider.c |   10 +-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/plugins/tray/tray-provider.c b/plugins/tray/tray-provider.c
index 5d5883f..0343e97 100644
--- a/plugins/tray/tray-provider.c
+++ b/plugins/tray/tray-provider.c
@@ -190,6 +190,7 @@ tray_activate_cb (GtkStatusIcon *tray_icon, TrayProvider 
*tray)
 static void
 notification_closed_cb (NotifyNotification *n, TrayProvider *tray)
 {
+g_object_unref (tray-n);
 tray-n = NULL;
 }
 
@@ -313,7 +314,14 @@ state_changed_cb (ParoleProviderPlayer *player, const 
ParoleStream *stream, Paro
 {
if ( tray-n )
{
-   notify_notification_close (tray-n, NULL);
+   GError *error = NULL;
+   notify_notification_close (tray-n, error);
+   if ( error )
+   {
+   g_warning (Failed to close notification : %s, error-message);
+   g_error_free (error);
+   }
+   g_object_unref (tray-n);
tray-n = NULL;
}
if ( state  PAROLE_STATE_PAUSED )
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:master Update the API doc+fix the time in the tray plugin.

2009-12-01 Thread Ali Abdallah
Updating branch refs/heads/master
 to dd33007064166e4b910e7e95172ae2bf3650b3b1 (commit)
   from acc3fc53c611bda9c9a8d0c00fcff9ab38896036 (commit)

commit dd33007064166e4b910e7e95172ae2bf3650b3b1
Author: Ali Abdallah al...@xfce.org
Date:   Tue Dec 1 13:23:59 2009 +0100

Update the API doc+fix the time in the tray plugin.

 docs/plugin-api/Makefile.am  |3 +-
 docs/plugin-api/Parole-Plugins-docs.sgml |6 +-
 docs/plugin-api/Parole-Plugins-sections.txt  |3 +-
 docs/plugin-api/parole-plugins-tut.sgml  |  142 +++
 docs/plugin-api/tmpl/Parole-Plugins-unused.sgml  |  185 ++
 docs/plugin-api/tmpl/parole-filters.sgml |   19 --
 docs/plugin-api/tmpl/parole-pl-parser.sgml   |9 +
 docs/plugin-api/tmpl/parole-provider-player.sgml |4 +-
 docs/plugin-api/tmpl/parole-provider-plugin.sgml |7 +-
 docs/plugin-api/tmpl/parole-stream.sgml  |5 +-
 parole/parole-filters.c  |   68 +-
 parole/parole-filters.h  |   11 -
 parole/parole-pl-parser.c|  288 +
 parole/parole-pl-parser.h|2 +
 parole/parole-provider-player.c  |   63 -
 parole/parole-provider-plugin.c  |2 +
 parole/parole.h.in   |2 +
 plugins/sample/sample-plugin.c   |2 +-
 plugins/sample/sample-provider.c |2 -
 plugins/tray/tray-provider.c |   22 ++-
 20 files changed, 671 insertions(+), 174 deletions(-)

diff --git a/docs/plugin-api/Makefile.am b/docs/plugin-api/Makefile.am
index 88be230..0ea1d96 100644
--- a/docs/plugin-api/Makefile.am
+++ b/docs/plugin-api/Makefile.am
@@ -55,7 +55,8 @@ HTML_IMAGES=
 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
 content_files= \
-   version.xml
+   version.xml \
+   parole-plugins-tut.sgml
 
 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
diff --git a/docs/plugin-api/Parole-Plugins-docs.sgml 
b/docs/plugin-api/Parole-Plugins-docs.sgml
index 7fb9374..55baf32 100644
--- a/docs/plugin-api/Parole-Plugins-docs.sgml
+++ b/docs/plugin-api/Parole-Plugins-docs.sgml
@@ -4,6 +4,7 @@
 [
   !ENTITY % local.common.attrib xmlns:xi  CDATA  #FIXED 
'http://www.w3.org/2003/XInclude'
   !ENTITY version SYSTEM version.xml
+  !ENTITY plugin-tut SYSTEM parole-plugins-tut.sgml
   !ENTITY date July 2009
 ]
 book id=index
@@ -42,8 +43,9 @@
 /para
   /part
   
-  part id=tutorial
-titlePlugin tutorial/title
+  part id=parole-plugins-tut
+  titleParole Plugin Tutorial/title
+plugin-tut;
   /part
   
   part id=fundamentals
diff --git a/docs/plugin-api/Parole-Plugins-sections.txt 
b/docs/plugin-api/Parole-Plugins-sections.txt
index f0e1f1a..dc2e22d 100644
--- a/docs/plugin-api/Parole-Plugins-sections.txt
+++ b/docs/plugin-api/Parole-Plugins-sections.txt
@@ -83,6 +83,7 @@ PAROLE_ENUM_TYPE_PL_FORMAT
 FILEparole-pl-parser/FILE
 ParolePlFormat
 parole_pl_parser_guess_format_from_extension
+parole_pl_parser_guess_format_from_data
 parole_pl_parser_can_parse_data
 parole_pl_parser_parse_from_file_by_extension
 parole_pl_parser_parse_all_from_file
@@ -109,14 +110,12 @@ PAROLE_IMPLEMENT_INTERFACE
 
 SECTION
 FILEparole-filters/FILE
-ParoleFileFormat
 parole_get_supported_audio_filter
 parole_get_supported_video_filter
 parole_get_supported_media_filter
 parole_get_supported_files_filter
 parole_get_supported_playlist_filter
 parole_file_filter
-parole_file_guess_format
 /SECTION
 
 SECTION
diff --git a/docs/plugin-api/parole-plugins-tut.sgml 
b/docs/plugin-api/parole-plugins-tut.sgml
new file mode 100644
index 000..a33959c
--- /dev/null
+++ b/docs/plugin-api/parole-plugins-tut.sgml
@@ -0,0 +1,142 @@
+
+para
+   This section explains the steps required to write a plugin for Parole 
using
+   the C language interface.
+/para
+
+para
+   A simple example can be found in the parole plugins dir shipped with 
the source code, the sample
+   plugin.
+/para
+para
+   As a basics, the plugin needs to implement link 
linkend=ParoleProviderPlugintypeParoleProviderPlugin/type/link
+   interface, That is, the player use this interface to get if the plugin 
is configurable, to ask it to show
+   its properties dialog when needed, to set the link 
linkend=ParoleProviderPlayertypeParoleProviderPlayer/type/link
+   interface used by plugins to access the the Parole player backend.
+/para
+
+
+  sect1
+titlePlugin structure./title
+sample-plugin.c
+programlisting
+ 
+#include sample-provider.h
+
+/* Avoid a no previous function declaration compiler warning*/
+G_MODULE_EXPORT GType  

[Xfce4-commits] parole|0.1.99 Creating annotated tag 0.1.99

2009-12-01 Thread Ali Abdallah
Updating annotated tag refs/tags/0.1.99
 as new annotated tag
 to 13f23a43ab7ee1913cc1f084332323184998432d (tag)
   succeeds 0.1.90-23-gdd33007
  tagged by Ali Abdallah al...@xfce.org
 on 2009-12-01 13:23 +

Ali Abdallah (1):
  Fix a minor memory leak in the tray plugin,

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


[Xfce4-commits] parole:master Prepare 0.1.99

2009-12-01 Thread Ali Abdallah
Updating branch refs/heads/master
 to 323e608cc63dcdce997702146f27c37923f5e915 (commit)
   from 708a6683211511e599ecdb5033ccfbec94f1994c (commit)

commit 323e608cc63dcdce997702146f27c37923f5e915
Author: Ali Abdallah al...@xfce.org
Date:   Tue Dec 1 14:23:40 2009 +0100

Prepare 0.1.99

 NEWS |   24 +++
 configure.ac.in  |2 +-
 docs/plugin-api/Parole-Plugins-sections.txt  |4 ---
 docs/plugin-api/tmpl/Parole-Plugins-unused.sgml  |   28 ++
 docs/plugin-api/tmpl/parole-provider-player.sgml |8 --
 docs/plugin-api/tmpl/parole-provider-plugin.sgml |8 --
 docs/plugin-api/tmpl/parole-stream.sgml  |   16 
 7 files changed, 48 insertions(+), 42 deletions(-)

diff --git a/NEWS b/NEWS
index a921114..ee6137a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,18 @@
-1.98
+0.1.99
+
+- Fix bug in the active plugin saved list.
+- Added translators credit.
+- Fix a memory leak.
+- reload the logo when the theme is changed.
+- Fix compilation with xulrunner 1.9.2.
+- Fix bug #6039 concerning the crash on a virtual box.
+- Fix a variable type causing the cursor to be set invisible on the video
+  widget event if no video is playing.
+/* Browser plugin */
+- Fix buffering info that was displayed in fullscreen mode.
+- Stabilizing the browser plugin.
+
+0.1.98
 
 - Fix missing signal handler for the mute menu item.
 - Don't hide the controls in full screen when cursor is above
@@ -10,14 +24,14 @@
 - Added an option in the media chooser to chooer whether to start
   playing opened files directly or not (bug #6035).
 
-1.96
+0.1.96
 
 - Fix the plugin loader bug, when the a plugin is asking to pack a widget
   and the plugin loader is not ready (bug #6032).
 - Exit after 60 seconds of inactivity on the browser plugin to avoid
   any zombie process.
 
-1.95
+0.1.95
 
 - Use taglib when compiled to get the media title and display it in
   the list instead of waiting for a tag message from gst to change
@@ -40,7 +54,7 @@
 - Added --device command line to be used with cdda:// dvd:// etc...
 - Added browser media player plugin.
 
-1.91
+0.1.91
 
 - Don't runref the vis plugin as playbin will remove it on exit (bug #5830).
 - Fix settings dialog displayes in english when locales aren't english (bug 
#5829).
@@ -48,6 +62,6 @@
 - Fix some untranslatable strings (bug #5827).
 - Fix desktop file Application Type typo. (Type=Application instead if 
Type=Application;).
 
-1.90
+0.1.90
 
 First release.
diff --git a/configure.ac.in b/configure.ac.in
index 71d5b06..4b346c0 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -3,7 +3,7 @@ m4_define([parole_verinfo],  [0:2:0])
 m4_define([parole_version_api],  [0])
 m4_define([parole_version_major],  [0])
 m4_define([parole_version_minor],  [1])
-m4_define([parole_version_micro],  [98])
+m4_define([parole_version_micro],  [99])
 m4_define([parole_version_build],  [...@revision@])
 m4_define([parole_version_tag], [])
 m4_define([parole_version], 
[parole_version_major().parole_version_minor().parole_version_micro()ifelse(parole_version_tag(),
 [git], [parole_version_tag().parole_version_build()], [parole_version_tag()])])
diff --git a/docs/plugin-api/Parole-Plugins-sections.txt 
b/docs/plugin-api/Parole-Plugins-sections.txt
index dc2e22d..f72b9a5 100644
--- a/docs/plugin-api/Parole-Plugins-sections.txt
+++ b/docs/plugin-api/Parole-Plugins-sections.txt
@@ -1,6 +1,5 @@
 SECTION
 FILEparole-provider-player/FILE
-PAROLE_PROVIDER_PLAYER_GET_INTERFACE
 ParoleProviderPlayerIface
 ParoleProviderPlayer
 ParolePluginContainer
@@ -23,7 +22,6 @@ parole_provider_player_get_type
 
 SECTION
 FILEparole-provider-plugin/FILE
-PAROLE_PROVIDER_PLUGIN_GET_INTERFACE
 ParoleProviderPluginIface
 ParoleProviderPlugin
 parole_provider_plugin_get_is_configurable
@@ -58,8 +56,6 @@ parole_file_get_type
 ParoleMediaType
 TITLEParoleStream/TITLE
 ParoleStream
-parole_stream_new
-parole_stream_init_properties
 SUBSECTION Standard
 PAROLE_STREAM
 PAROLE_IS_STREAM
diff --git a/docs/plugin-api/tmpl/Parole-Plugins-unused.sgml 
b/docs/plugin-api/tmpl/Parole-Plugins-unused.sgml
index abec82b..86f6ab7 100644
--- a/docs/plugin-api/tmpl/Parole-Plugins-unused.sgml
+++ b/docs/plugin-api/tmpl/Parole-Plugins-unused.sgml
@@ -165,6 +165,20 @@ static void sample_provider_finalize (GObject *object)
   /part
 
 
+!-- # MACRO PAROLE_PROVIDER_PLAYER_GET_INTERFACE # --
+para
+
+/para
+
+...@o: 
+
+!-- # MACRO PAROLE_PROVIDER_PLUGIN_GET_INTERFACE # --
+para
+
+/para
+
+...@o: 
+
 !-- # ENUM ParoleFileFormat # --
 para
 
@@ -183,3 +197,17 @@ static void sample_provider_finalize (GObject *object)
 @file: 
 @Returns: 
 
+!-- # FUNCTION parole_stream_init_properties # --
+para
+
+/para
+
+...@stream: 
+
+!-- # FUNCTION parole_stream_new # --
+para
+
+/para
+
+...@returns: 
+
diff --git 

[Xfce4-commits] parole:master l10n: Updates to Catalan (Valencian) (ca) translation

2009-12-01 Thread Transifex
Updating branch refs/heads/master
 to c65462f5a74d956565fc89ebe4c97b193c0e6c8f (commit)
   from 323e608cc63dcdce997702146f27c37923f5e915 (commit)

commit c65462f5a74d956565fc89ebe4c97b193c0e6c8f
Author: Harald Servat redcr...@gmail.com
Date:   Tue Dec 1 13:36:51 2009 +

l10n: Updates to Catalan (Valencian) (ca) translation

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

 po/ca.po |  172 ++---
 1 files changed, 96 insertions(+), 76 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index d3ce1ef..5a9dd5f 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,8 +10,8 @@ msgstr 
 Project-Id-Version: parole\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-11-27 10:38+0100\n
-PO-Revision-Date: 2009-10-11 15:57+0100\n
-Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
+PO-Revision-Date: 2009-12-01 14:36+0100\n
+Last-Translator: Harald Servat redcr...@gmail.com\n
 Language-Team: Catalan\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -56,7 +56,8 @@ msgstr Reproductor de suports
 msgid Mute
 msgstr Silenci
 
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:1093
+#: ../data/interfaces/parole.ui.h:10
+#: ../src/parole-player.c:1093
 #: ../src/parole-disc-menu.c:113
 msgid Next Chapter
 msgstr Capítol següent
@@ -65,8 +66,10 @@ msgstr Capítol següent
 msgid None
 msgstr Cap
 
-#: ../data/interfaces/parole.ui.h:12 ../data/desktop/parole.desktop.in.in.h:1
-#: ../src/parole-about.c:52 ../plugins/window-title/window-title-provider.c:58
+#: ../data/interfaces/parole.ui.h:12
+#: ../data/desktop/parole.desktop.in.in.h:1
+#: ../src/parole-about.c:52
+#: ../plugins/window-title/window-title-provider.c:58
 msgid Parole Media Player
 msgstr Reproductor de suports Parole
 
@@ -74,7 +77,8 @@ msgstr Reproductor de suports Parole
 msgid Plugins
 msgstr Connectors
 
-#: ../data/interfaces/parole.ui.h:14 ../src/parole-player.c:1105
+#: ../data/interfaces/parole.ui.h:14
+#: ../src/parole-player.c:1105
 #: ../src/parole-disc-menu.c:114
 msgid Previous Chapter
 msgstr Capítol anterior
@@ -120,9 +124,8 @@ msgid _Media
 msgstr _Suport
 
 #: ../data/interfaces/parole.ui.h:25
-#, fuzzy
 msgid _Open location
-msgstr Obre una ubicació…
+msgstr _Obre una ubicació
 
 #: ../data/interfaces/parole.ui.h:26
 msgid _View
@@ -130,15 +133,15 @@ msgstr _Visualitza
 
 #: ../data/interfaces/mediachooser.ui.h:1
 msgid Replace playlist with opened files
-msgstr 
+msgstr Substitueix la llista de reproducció pels fitxers oberts
 
 #: ../data/interfaces/mediachooser.ui.h:2
 msgid Scan folders recursively
-msgstr 
+msgstr Explorar els directoris recursivament
 
 #: ../data/interfaces/mediachooser.ui.h:3
 msgid Start playing opened files
-msgstr 
+msgstr Començar a reproduir els fitxers oberts
 
 #: ../data/interfaces/plugins.ui.h:1
 msgid bAuthor:/b
@@ -237,18 +240,12 @@ msgid Stop
 msgstr Para
 
 #: ../gst/parole-gst.c:1674
-msgid 
-Unable to load playbin GStreamer plugin, check your GStreamer installation
-msgstr 
-No s'ha pogut carregar el connector playbin Gstreamer, comproveu la vostra 
-instaŀlació de Gstreamer
+msgid Unable to load playbin GStreamer plugin, check your GStreamer 
installation
+msgstr No s'ha pogut carregar el connector playbin Gstreamer, comproveu la 
vostra instaŀlació de Gstreamer
 
 #: ../gst/parole-gst.c:1690
-msgid 
-Unable to load video GStreamer plugin, check your GStreamer installation
-msgstr 
-No s'ha pogut carregar el connector de vídeo Gstreamer, comproveu la vostra 
-instaŀlació de Gstreamer
+msgid Unable to load video GStreamer plugin, check your GStreamer 
installation
+msgstr No s'ha pogut carregar el connector de vídeo Gstreamer, comproveu la 
vostra instaŀlació de Gstreamer
 
 #: ../src/main.c:53
 #, c-format
@@ -277,11 +274,11 @@ msgstr Obre una instància nova
 
 #: ../src/main.c:192
 msgid Do not load plugins
-msgstr 
+msgstr No carregar els connectors
 
 #: ../src/main.c:193
 msgid Set Audio-CD/VCD/DVD device path
-msgstr 
+msgstr Establir el camí per a Audio-CD/VCD/DVD
 
 #: ../src/main.c:194
 msgid Play or pause if already playing
@@ -350,11 +347,10 @@ msgstr S'ha denegat el permís
 
 #: ../src/parole-medialist.c:445
 msgid Unknown playlist format, Please select a support playlist format
-msgstr 
-No es reconeix el format de la llista de reproducció. Seleccioneu un format 
-de llista de reproducció compatible
+msgstr No es reconeix el format de la llista de reproducció. Seleccioneu un 
format de llista de reproducció compatible
 
-#: ../src/parole-medialist.c:513 ../src/parole-player.c:1785
+#: ../src/parole-medialist.c:513
+#: ../src/parole-player.c:1785
 msgid Playlist
 msgstr Llista de reproducció
 
@@ -398,14 +394,16 @@ msgstr El flux del suport no es pot cercar
 #.
 #. * Next chapter menu item
 #.
-#: ../src/parole-player.c:1093 ../src/parole-disc-menu.c:122
+#: ../src/parole-player.c:1093
+#: ../src/parole-disc-menu.c:122
 msgid Next Track
 msgstr Pista següent
 
 #.
 #. * Previous 

[Xfce4-commits] xfce4-notes-plugin:master Update build-env

2009-12-01 Thread Mike Massonnet
Updating branch refs/heads/master
 to 089487805ee0892447127df45214c3be01686b67 (commit)
   from 57a59bbc634132f73356be4a0f84b6805ae428b6 (commit)

commit 089487805ee0892447127df45214c3be01686b67
Author: Mike Massonnet mmasson...@gmail.com
Date:   Tue Dec 1 17:27:01 2009 +0100

Update build-env

 ChangeLog  |4 
 autogen.sh |2 +-
 configure.in.in = configure.ac.in |5 +++--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a99605b..b25c3b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-01  Mike Massonnet mmasson...@xfce.org
+
+Update build-env
+
 2009-11-22  Mike Massonnet mmasson...@xfce.org
 
 Add X11 link to the panel plugin
diff --git a/autogen.sh b/autogen.sh
index 2350758..5d74889 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -27,7 +27,7 @@ else
 fi
 sed -e s/@LINGUAS@/${linguas}/g \
 -e s/@REVISION@/${revision}/g \
- configure.in.in  configure.in
+ configure.ac.in  configure.ac
 
 exec xdt-autogen $@
 
diff --git a/configure.in.in b/configure.ac.in
similarity index 94%
rename from configure.in.in
rename to configure.ac.in
index 115464e..061fda6 100644
--- a/configure.in.in
+++ b/configure.ac.in
@@ -8,10 +8,10 @@ dnl
 
 m4_define([xfce4_notes_plugin_version_major], [1])
 m4_define([xfce4_notes_plugin_version_minor], [7])
-m4_define([xfce4_notes_plugin_version_micro], [1])
+m4_define([xfce4_notes_plugin_version_micro], [2])
 m4_define([xfce4_notes_plugin_version_nano], [])
 m4_define([xfce4_notes_plugin_version_build], [...@revision@])
-m4_define([xfce4_notes_plugin_version_tag], []) # Leave empty for releases
+m4_define([xfce4_notes_plugin_version_tag], [git]) # Leave empty for releases
 m4_define([xfce4_notes_plugin_version], 
[xfce4_notes_plugin_version_major().xfce4_notes_plugin_version_minor().xfce4_notes_plugin_version_micro()ifelse(xfce4_notes_plugin_version_nano(),
 [], [], 
[.xfce4_notes_plugin_version_nano()])ifelse(xfce4_notes_plugin_version_tag(), 
[git], [xfce4_notes_plugin_version_tag()-xfce4_notes_plugin_version_build()], 
[xfce4_notes_plugin_version_tag()])])
 
 AC_PREREQ([2.50])
@@ -23,6 +23,7 @@ AC_CANONICAL_TARGET()
 AM_INIT_AUTOMAKE([1.11 dist-bzip2])
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE()
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 dnl Avoid g77 and g++ checks
 m4_undefine([AC_PROG_CXX])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-notes-plugin:master Add context menu for quick access to window list

2009-12-01 Thread Mike Massonnet
Updating branch refs/heads/master
 to 6940936c4ff4927315fd79a39769e49dcf9a4a31 (commit)
   from 089487805ee0892447127df45214c3be01686b67 (commit)

commit 6940936c4ff4927315fd79a39769e49dcf9a4a31
Author: Mike Massonnet mmasson...@gmail.com
Date:   Tue Dec 1 17:32:28 2009 +0100

Add context menu for quick access to window list

 ChangeLog |   10 ++
 panel-plugin/application.vala |   33 +
 panel-plugin/main.vala|6 ++
 3 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b25c3b7..ac07cdf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2009-12-01  Mike Massonnet mmasson...@xfce.org
 
+Add context menu for quick access to window list
+   * panel-plugin/application.vala:
+ - New public function context_menu. It builds a menu to be used for
+ context menus like in the systray.
+   * panel-plugin/main.vala:
+ - Build the context menu as a submenu inside the right click action
+ menu of the panel plugin.
+
+2009-12-01  Mike Massonnet mmasson...@xfce.org
+
 Update build-env
 
 2009-11-22  Mike Massonnet mmasson...@xfce.org
diff --git a/panel-plugin/application.vala b/panel-plugin/application.vala
index dad4b0d..19f4f6d 100644
--- a/panel-plugin/application.vala
+++ b/panel-plugin/application.vala
@@ -493,6 +493,39 @@ namespace Xnp {
}
}
 
+   /**
+* context_menu:
+*
+* Provides a GtkMenu to be used for right click context menus
+* like in trayicons. Its items are destroyed/refreshed every
+* time the menu is shown.
+*/
+   public Gtk.Menu context_menu () {
+   var menu = new Gtk.Menu ();
+
+   menu.show += (menu) = {
+   // Clean up menu
+   me...@foreach ((w) = {
+   w.destroy ();
+   });
+
+   // Add fresh items
+   foreach (var win in this.window_list) {
+   var mi = new Gtk.MenuItem.with_label 
(win.name);
+   mi.set_data (window, (void*)win);
+   mi.show ();
+   mi.activate += (i) = {
+   // Jump to win
+   var w = (Xnp.Window)i.get_data 
(window);
+   w.present ();
+   };
+   menu.append (mi);
+   }
+   };
+
+   return menu;
+   }
+
}
 
 }
diff --git a/panel-plugin/main.vala b/panel-plugin/main.vala
index 5f2f547..7da7847 100644
--- a/panel-plugin/main.vala
+++ b/panel-plugin/main.vala
@@ -72,6 +72,12 @@ public class NotesPlugin : GLib.Object {
panel_plugin.set_tooltip_text (_(Notes));
panel_plugin.menu_show_configure ();
 
+   var mi = new Gtk.MenuItem.with_mnemonic (_(_Go));
+   var menu = application.context_menu ();
+   mi.set_submenu (menu);
+   mi.show_all ();
+   panel_plugin.menu_insert_item (mi);
+
set_x_selection ();
 
panel_plugin.size_changed += (p, size) = {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-notes-plugin:master Do as for Clipman, let the plugin be a standalone app

2009-12-01 Thread Mike Massonnet
Updating branch refs/heads/master
 to 65ef5662c844a5b01b7c9b3ca438d88abe1bd0e1 (commit)
   from 6940936c4ff4927315fd79a39769e49dcf9a4a31 (commit)

commit 65ef5662c844a5b01b7c9b3ca438d88abe1bd0e1
Author: Mike Massonnet mmasson...@gmail.com
Date:   Tue Dec 1 21:35:31 2009 +0100

Do as for Clipman, let the plugin be a standalone app

 ChangeLog  |   13 ++
 panel-plugin/Makefile.am   |   62 --
 panel-plugin/application.vala  |   42 ++
 panel-plugin/{main.vala = main-panel-plugin.vala} |4 +
 panel-plugin/main-status-icon.vala |  139 
 5 files changed, 251 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ac07cdf..6661699 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,18 @@
 2009-12-01  Mike Massonnet mmasson...@xfce.org
 
+Do as for Clipman, let the plugin be a standalone app
+   * panel-plugin/Makefile.am:
+ - Update Makefile to build both plugin and binary C.
+   * panel-plugin/application.vala(open_about_dialog):
+ - Add public dialog to show an about dialog.
+   * panel-plugin/main-panel-plugin.vala:
+ - Rename main.vala to main-panel-plugin.vala.
+ - Show about item in panel plugin context menu.
+   * panel-plugin/main-status-icon.vala:
+ - New main source to build binary xfce4-notes.
+
+2009-12-01  Mike Massonnet mmasson...@xfce.org
+
 Add context menu for quick access to window list
* panel-plugin/application.vala:
  - New public function context_menu. It builds a menu to be used for
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 320121b..0a3057f 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -58,26 +58,38 @@ notes_VALASOURCES = 
\
hypertextview.vala  \
note.vala   \
window.vala \
-   application.vala\
-   main.vala
+   application.vala
+
+notes_panel_plugin_VALASOURCES =   \
+   main-panel-plugin.vala
+
+notes_status_icon_VALASOURCES =
\
+   main-status-icon.vala
 
 notes_VALABUILTSOURCES = $(notes_VALASOURCES:.vala=.c)
+notes_panel_plugin_VALABUILTSOURCES = 
$(notes_panel_plugin_VALASOURCES:.vala=.c)
+notes_status_icon_VALABUILTSOURCES = $(notes_status_icon_VALASOURCES:.vala=.c)
 
 if MAINTAINER_MODE
 if HAVE_LIBXFCE4PANEL47
 DEFINES=-D HAVE_LIBXFCE4PANEL47
-PACKAGES=--pkg=libxfcegui4-1.0 --pkg=libxfce4panel-1.0
+PACKAGES=--pkg=libxfcegui4-1.0 --pkg=gtk+-2.0
 else
-PACKAGES=--pkg=libxfce4panel-1.0
+PACKAGES=--pkg=gtk+-2.0
 endif
 BUILT_SOURCES = vala.stamp
-vala.stamp: $(notes_VALASOURCES)
-   $(VALAC) $(DEFINES) --vapidir=$(srcdir) --pkg=config --pkg=color 
--pkg=popup --pkg=libxfconf-0 $(PACKAGES) $^ -C
+vala.stamp: $(notes_VALASOURCES) $(notes_panel_plugin_VALASOURCES) 
$(notes_status_icon_VALASOURCES)
+   $(VALAC) $(DEFINES) --vapidir=$(srcdir) --pkg=config --pkg=color 
--pkg=popup\
+--pkg=libxfconf-0 $(PACKAGES) --pkg=libxfce4panel-1.0  
\
+$(notes_VALASOURCES) $(notes_panel_plugin_VALASOURCES) -C
+   $(VALAC) $(DEFINES) --vapidir=$(srcdir) --pkg=config --pkg=color 
--pkg=popup\
+--pkg=libxfconf-0 --pkg=libxfce4util-1.0 $(PACKAGES)   
\
+$(notes_VALASOURCES) $(notes_status_icon_VALASOURCES) -C
touch $@
 endif
 
 #
-# Plugin
+# Panel plugin
 #
 
 if HAVE_LIBXFCE4PANEL47
@@ -90,7 +102,8 @@ libnotes_la_SOURCES =
\
color.h \
popup.c \
popup.h \
-   $(notes_VALABUILTSOURCES)
+   $(notes_VALABUILTSOURCES)   \
+   $(notes_panel_plugin_VALABUILTSOURCES)
 
 libnotes_la_CFLAGS =   \
@LIBX11_CFLAGS@ \
@@ -116,7 +129,8 @@ xfce4_notes_plugin_SOURCES =
\
color.h \
popup.c \
popup.h \
-   $(notes_VALABUILTSOURCES)
+   $(notes_VALABUILTSOURCES)   \
+   $(notes_panel_plugin_VALABUILTSOURCES)
 
 xfce4_notes_plugin_CFLAGS =

[Xfce4-commits] xfce4-notes-plugin:master Add desktop file and autostart code for standalone app

2009-12-01 Thread Mike Massonnet
Updating branch refs/heads/master
 to a48528137201c54eb1653e1ea835973653bca564 (commit)
   from 65ef5662c844a5b01b7c9b3ca438d88abe1bd0e1 (commit)

commit a48528137201c54eb1653e1ea835973653bca564
Author: Mike Massonnet mmasson...@gmail.com
Date:   Tue Dec 1 22:05:01 2009 +0100

Add desktop file and autostart code for standalone app

 ChangeLog |4 +
 Makefile.am   |5 +
 panel-plugin/Makefile.am  |   26 --
 panel-plugin/main-status-icon.vala|5 +-
 panel-plugin/xfce-autostart.c |  126 +
 panel-plugin/{color.h = xfce-autostart.h}|   27 ++
 panel-plugin/xfce-autostart.vapi  |5 +
 panel-plugin/xfce4-notes-autostart.desktop.in |   10 ++
 xfce4-notes.desktop.in|   12 +++
 9 files changed, 193 insertions(+), 27 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6661699..6fc2d0a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2009-12-01  Mike Massonnet mmasson...@xfce.org
 
+Add desktop file and autostart code for standalone app
+
+2009-12-01  Mike Massonnet mmasson...@xfce.org
+
 Do as for Clipman, let the plugin be a standalone app
* panel-plugin/Makefile.am:
  - Update Makefile to build both plugin and binary C.
diff --git a/Makefile.am b/Makefile.am
index 9dd8263..1cf03e2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,6 +8,11 @@ SUBDIRS =  
\
 distclean-local:
rm -rf *.cache *~
 
+desktopdir = $(datadir)/applications
+desktop_in_files = xfce4-notes.desktop.in
+desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+...@intltool_desktop_rule@
+
 EXTRA_DIST =   \
AUTHORS \
ChangeLog   \
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 0a3057f..44fb002 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -52,7 +52,8 @@ xfce4_notes_settings_LDADD =  
\
 notes_VAPISOURCES =\
config.vapi \
color.vapi  \
-   popup.vapi
+   popup.vapi  \
+   xfce-autostart.vapi
 
 notes_VALASOURCES =\
hypertextview.vala  \
@@ -73,17 +74,17 @@ notes_status_icon_VALABUILTSOURCES = 
$(notes_status_icon_VALASOURCES:.vala=.c)
 if MAINTAINER_MODE
 if HAVE_LIBXFCE4PANEL47
 DEFINES=-D HAVE_LIBXFCE4PANEL47
-PACKAGES=--pkg=libxfcegui4-1.0 --pkg=gtk+-2.0
+PACKAGES=--pkg=config --pkg=color --pkg=popup --pkg=libxfcegui4-1.0 
--pkg=gtk+-2.0
 else
-PACKAGES=--pkg=gtk+-2.0
+PACKAGES=--pkg=config --pkg=color --pkg=popup --pkg=gtk+-2.0
 endif
 BUILT_SOURCES = vala.stamp
 vala.stamp: $(notes_VALASOURCES) $(notes_panel_plugin_VALASOURCES) 
$(notes_status_icon_VALASOURCES)
-   $(VALAC) $(DEFINES) --vapidir=$(srcdir) --pkg=config --pkg=color 
--pkg=popup\
---pkg=libxfconf-0 $(PACKAGES) --pkg=libxfce4panel-1.0  
\
+   $(VALAC) $(DEFINES) --vapidir=$(srcdir) $(PACKAGES) 
\
+--pkg=libxfconf-0 --pkg=libxfce4panel-1.0  
\
 $(notes_VALASOURCES) $(notes_panel_plugin_VALASOURCES) -C
-   $(VALAC) $(DEFINES) --vapidir=$(srcdir) --pkg=config --pkg=color 
--pkg=popup\
---pkg=libxfconf-0 --pkg=libxfce4util-1.0 $(PACKAGES)   
\
+   $(VALAC) $(DEFINES) --vapidir=$(srcdir) $(PACKAGES) 
\
+--pkg=xfce-autostart --pkg=libxfconf-0 --pkg=libxfce4util-1.0  
\
 $(notes_VALASOURCES) $(notes_status_icon_VALASOURCES) -C
touch $@
 endif
@@ -159,6 +160,8 @@ xfce4_notes_SOURCES =   
\
color.h \
popup.c \
popup.h \
+   xfce-autostart.c\
+   xfce-autostart.h\
$(notes_VALABUILTSOURCES)   \
$(notes_status_icon_VALABUILTSOURCES)
 
@@ -198,6 +201,15 @@ endif
$  $@
 
 #
+# Autostart file
+#
+
+autostartdir = $(sysconfdir)/xdg/autostart
+autostart_in_files = xfce4-notes-autostart.desktop.in
+autostart_DATA = 

[Xfce4-commits] xfce4-notes-plugin:master l10n: Updates to Dutch (Flemish) (nl) translation

2009-12-01 Thread Transifex
Updating branch refs/heads/master
 to c6ad1c1a8b22486e2dbd09968c5bc55a2ddfdb6e (commit)
   from ac1b53b331fab14f8e3184a52f977935d179a2e4 (commit)

commit c6ad1c1a8b22486e2dbd09968c5bc55a2ddfdb6e
Author: Vincent Tunru proje...@vinnl.nl
Date:   Tue Dec 1 22:30:30 2009 +

l10n: Updates to Dutch (Flemish) (nl) translation

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

 po/nl.po |   44 +---
 1 files changed, 17 insertions(+), 27 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 063c6f9..95c4801 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce 4-notes-plugin\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-01 23:13+0100\n
-PO-Revision-Date: 2009-09-21 17:20+0100\n
+PO-Revision-Date: 2009-12-01 23:30+0100\n
 Last-Translator: Vincent Tunru proje...@vinnl.nl\n
 Language-Team: Dutch vertal...@vrijschrift.org\n
 MIME-Version: 1.0\n
@@ -31,18 +31,23 @@ msgstr Ideaal voor snelle notities
 #: ../panel-plugin/main-panel-plugin.vala:72
 #: ../panel-plugin/main-status-icon.vala:53
 #: ../panel-plugin/main-status-icon.vala:131
-#: ../panel-plugin/application.vala:98 ../panel-plugin/application.vala:525
-#: ../panel-plugin/window.vala:80 ../panel-plugin/window.vala:165
-#: ../panel-plugin/window.vala:945 ../panel-plugin/xfce4-notes-settings.c:91
+#: ../panel-plugin/application.vala:98
+#: ../panel-plugin/application.vala:525
+#: ../panel-plugin/window.vala:80
+#: ../panel-plugin/window.vala:165
+#: ../panel-plugin/window.vala:945
+#: ../panel-plugin/xfce4-notes-settings.c:91
 msgid Notes
 msgstr Notities
 
 #: ../panel-plugin/main-panel-plugin.vala:76
-#: ../panel-plugin/main-status-icon.vala:98 ../panel-plugin/window.vala:688
+#: ../panel-plugin/main-status-icon.vala:98
+#: ../panel-plugin/window.vala:688
 msgid _Go
 msgstr _Ga
 
-#: ../panel-plugin/application.vala:102 ../panel-plugin/window.vala:948
+#: ../panel-plugin/application.vala:102
+#: ../panel-plugin/window.vala:948
 #, c-format
 msgid Notes %d
 msgstr Notities %d
@@ -51,7 +56,8 @@ msgstr Notities %d
 msgid Rename group
 msgstr Groepsnaam wijzigen
 
-#: ../panel-plugin/application.vala:348 ../panel-plugin/window.vala:1069
+#: ../panel-plugin/application.vala:348
+#: ../panel-plugin/window.vala:1069
 #, c-format
 msgid The name %s is already in use
 msgstr De naam %s is al in gebruik
@@ -76,14 +82,15 @@ msgstr Kon het configuratievenster niet openen
 
 #: ../panel-plugin/application.vala:534
 msgid translator-credits
-msgstr 
+msgstr Vincent Tunru
 
 #: ../panel-plugin/window.vala:711
 msgid _Rename
 msgstr Naam _wijzigen
 
 #. Always on top
-#: ../panel-plugin/window.vala:731 ../panel-plugin/xfce4-notes-settings.c:174
+#: ../panel-plugin/window.vala:731
+#: ../panel-plugin/xfce4-notes-settings.c:174
 msgid Always on top
 msgstr Altijd bovenop
 
@@ -228,61 +235,44 @@ msgstr Achtergrondkleur
 
 #~ msgid Show tabs in the notes
 #~ msgstr Tabbladen bij notities weergeven
-
 #~ msgid Red
 #~ msgstr Rood
-
 #~ msgid Purple
 #~ msgstr Paars
 
 #, fuzzy
 #~ msgid Choose current note font
 #~ msgstr Kies vensterlettertype
-
 #~ msgid Are you sure you want to delete this window?
 #~ msgstr Weet u zeker dat u dit venster wilt verwijderen?
-
 #~ msgid Window
 #~ msgstr Venster
-
 #~ msgid _Options
 #~ msgstr _Opties
-
 #~ msgid R_ename...
 #~ msgstr Naam _wijzigen
-
 #~ msgid Show on startup
 #~ msgstr Notities altijd weergeven na het opstarten
-
 #~ msgid Always
 #~ msgstr Altijd
-
 #~ msgid Never
 #~ msgstr Nooit
-
 #~ msgid Last state
 #~ msgstr Laatste status
-
 #~ msgid Rename window
 #~ msgstr Vensternaam wijzigen
-
 #~ msgid Error
 #~ msgstr Fout
-
 #~ msgid Unable to rename window
 #~ msgstr Kon de naam van het venster niet wijzigen
-
 #~ msgid Unable to rename note
 #~ msgstr Kon de naam van de notitie niet wijzigen
-
 #~ msgid Hide arrow button
 #~ msgstr Pijlknop verbergen
-
 #~ msgid Notes plugin for the Xfce4 desktop
 #~ msgstr Notitie-plugin voor Xfce4
-
 #~ msgid Resize grip
 #~ msgstr Handvat voor venstergrootte
-
 #~ msgid Xfce 4 Notes Plugin
 #~ msgstr Xfce 4 notities plugin
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-notes-plugin:master l10n: Updates to Spanish (Castilian) (es) translation

2009-12-01 Thread Transifex
Updating branch refs/heads/master
 to 313d3f8214d5abc82eff9b043be4af831c35c7c2 (commit)
   from c6ad1c1a8b22486e2dbd09968c5bc55a2ddfdb6e (commit)

commit 313d3f8214d5abc82eff9b043be4af831c35c7c2
Author: Ignacio Velasco el...@elega.com.ar
Date:   Tue Dec 1 22:44:12 2009 +

l10n: Updates to Spanish (Castilian) (es) translation

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

 po/es.po |   45 +
 1 files changed, 17 insertions(+), 28 deletions(-)

diff --git a/po/es.po b/po/es.po
index bba2bb0..3bb13de 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: \n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-01 23:13+0100\n
-PO-Revision-Date: 2009-09-20 23:48-0300\n
+PO-Revision-Date: 2009-12-01 19:43-0300\n
 Last-Translator: elega el...@elega.com.ar\n
 Language-Team: Spanish xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
@@ -31,18 +31,23 @@ msgstr Ideal para sus notas rápidas
 #: ../panel-plugin/main-panel-plugin.vala:72
 #: ../panel-plugin/main-status-icon.vala:53
 #: ../panel-plugin/main-status-icon.vala:131
-#: ../panel-plugin/application.vala:98 ../panel-plugin/application.vala:525
-#: ../panel-plugin/window.vala:80 ../panel-plugin/window.vala:165
-#: ../panel-plugin/window.vala:945 ../panel-plugin/xfce4-notes-settings.c:91
+#: ../panel-plugin/application.vala:98
+#: ../panel-plugin/application.vala:525
+#: ../panel-plugin/window.vala:80
+#: ../panel-plugin/window.vala:165
+#: ../panel-plugin/window.vala:945
+#: ../panel-plugin/xfce4-notes-settings.c:91
 msgid Notes
 msgstr Notas
 
 #: ../panel-plugin/main-panel-plugin.vala:76
-#: ../panel-plugin/main-status-icon.vala:98 ../panel-plugin/window.vala:688
+#: ../panel-plugin/main-status-icon.vala:98
+#: ../panel-plugin/window.vala:688
 msgid _Go
 msgstr _Ir
 
-#: ../panel-plugin/application.vala:102 ../panel-plugin/window.vala:948
+#: ../panel-plugin/application.vala:102
+#: ../panel-plugin/window.vala:948
 #, c-format
 msgid Notes %d
 msgstr Notas %d
@@ -51,7 +56,8 @@ msgstr Notas %d
 msgid Rename group
 msgstr Renombrar grupo
 
-#: ../panel-plugin/application.vala:348 ../panel-plugin/window.vala:1069
+#: ../panel-plugin/application.vala:348
+#: ../panel-plugin/window.vala:1069
 #, c-format
 msgid The name %s is already in use
 msgstr El nombre %s ya está en uso
@@ -76,14 +82,15 @@ msgstr No se puede abrir el diálogo de configuración
 
 #: ../panel-plugin/application.vala:534
 msgid translator-credits
-msgstr 
+msgstr Elega el...@elega.com.ar
 
 #: ../panel-plugin/window.vala:711
 msgid _Rename
 msgstr _Renombrar
 
 #. Always on top
-#: ../panel-plugin/window.vala:731 ../panel-plugin/xfce4-notes-settings.c:174
+#: ../panel-plugin/window.vala:731
+#: ../panel-plugin/xfce4-notes-settings.c:174
 msgid Always on top
 msgstr Siempre encima
 
@@ -228,64 +235,46 @@ msgstr Color de fondo
 
 #~ msgid Show tabs in the notes
 #~ msgstr Mostrar pestañas en las notas
-
 #~ msgid Red
 #~ msgstr Rojo
-
 #~ msgid Purple
 #~ msgstr Violeta
 
 #, fuzzy
 #~ msgid Choose current note font
 #~ msgstr Elegir tipo de letra de la ventana
-
 #~ msgid Are you sure you want to delete this window?
 #~ msgstr ¿Está seguro de querer eliminar esta ventana?
-
 #~ msgid Window
 #~ msgstr Ventana
-
 #~ msgid _Options
 #~ msgstr _Opciones
-
 #~ msgid R_ename...
 #~ msgstr R_enombrar...
-
 #~ msgid Show tabs
 #~ msgstr Mostrar pestañas
-
 #~ msgid Show on startup
 #~ msgstr Mostrar al inicio
-
 #~ msgid Always
 #~ msgstr Siempre
-
 #~ msgid Never
 #~ msgstr Nunca
-
 #~ msgid Last state
 #~ msgstr Último estado
-
 #~ msgid Rename window
 #~ msgstr Renombrar ventana
-
 #~ msgid Error
 #~ msgstr Error
-
 #~ msgid Unable to rename window
 #~ msgstr Imposible renombrar ventana
-
 #~ msgid Unable to rename note
 #~ msgstr Imposible renombrar nota
-
 #~ msgid Hide arrow button
 #~ msgstr Ocultar botón flecha
-
 #~ msgid Notes plugin for the Xfce4 desktop
 #~ msgstr Complemento de notas para el escritorio Xfce4
-
 #~ msgid Resize grip
 #~ msgstr Pulsador de redimensionado
-
 #~ msgid Xfce 4 Notes Plugin
 #~ msgstr Complemento de notas de Xfce 4
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:xfce-4.6 l10n: Updated Norwegian Nynorsk translation

2009-12-01 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to e9dfd3dc31fbd465d909e20ea7895152e756dafe (commit)
   from 2cc2cfa64851d3ae371a96fc32a4266ade2af2ea (commit)

commit e9dfd3dc31fbd465d909e20ea7895152e756dafe
Author: Eskild Hustvedt u...@zerodogg.org
Date:   Tue Dec 1 23:03:22 2009 +

l10n: Updated Norwegian Nynorsk translation

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

 po/nn.po |   53 ++---
 1 files changed, 22 insertions(+), 31 deletions(-)

diff --git a/po/nn.po b/po/nn.po
index 07a96fd..47b61e7 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -2,19 +2,20 @@
 # This file is distributed under the same license as the thunars package.
 #
 # Eirik U. Birkeland eir...@gmail.com, 2008.
+# Eskild Hustvedt i...@zerodogg.org, 2009.
 msgid 
 msgstr 
 Project-Id-Version: Thunar\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-01-11 00:20+0100\n
-PO-Revision-Date: 2008-06-09 17:12+0200\n
-Last-Translator: Eirik U. Birkeland eir...@gmail.com\n
-Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\n
+PO-Revision-Date: 2009-12-01 21:56+0100\n
+Last-Translator: Eskild Hustvedt i...@zerodogg.org\n
+Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\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-Generator: KBabel 1.11.4\n
+X-Generator: VIM 7.2 \n
 
 #. base directory not readable
 #: ../thunar-vfs/thunar-vfs-deep-count-job.c:233
@@ -934,6 +935,7 @@ msgstr Klarte ikkje gje nytt namn til «%s»
 #: ../thunar/thunar-dialogs.c:248
 msgid translator-credits
 msgstr 
+Eskild Hustvedt i...@zerodogg.org\n
 Launchpad Contributions:\n
   Christian Auflem https://launchpad.net/~christigan-auflem\n;
   Eirik U. Birkeland https://launchpad.net/~eirikub\n;
@@ -2101,9 +2103,8 @@ msgstr 
 Vil du hoppa over denne fila og halda fram med å omdøypa dei andre filene?
 
 #: ../thunar/thunar-settings.desktop.in.h:1
-#, fuzzy
 msgid Configure the Thunar file manager
-msgstr Thunar filhandsaming
+msgstr Sett opp Thunar filhandsamaren
 
 #. set window title and icon
 #: ../thunar/thunar-settings.desktop.in.h:2 ../thunar/thunar-window.c:2243
@@ -2113,7 +2114,7 @@ msgstr Filhandsamar
 
 #: ../thunar/thunar-shortcuts-model.c:356
 msgid Desktop
-msgstr 
+msgstr Skrivebord
 
 #: ../thunar/thunar-shortcuts-pane.c:413
 msgid Side Pane (Create Shortcut)
@@ -2538,39 +2539,32 @@ msgid Go to the home folder
 msgstr Gå til heimemappa.
 
 #: ../thunar/thunar-window.c:302
-#, fuzzy
 msgid Go to the desktop folder
-msgstr Gå til heimemappa.
+msgstr Gå til skrivebordsmappa.
 
 #: ../thunar/thunar-window.c:303
-#, fuzzy
 msgid Go to the documents folder
-msgstr Gå til heimemappa.
+msgstr Gå til dokumenter-mappa.
 
 #: ../thunar/thunar-window.c:304
-#, fuzzy
 msgid Go to the downloads folder
-msgstr Gå til malmappan.
+msgstr Gå til nedlastingsmappa.
 
 #: ../thunar/thunar-window.c:305
-#, fuzzy
 msgid Go to the music folder
-msgstr Gå til heimemappa.
+msgstr Gå til musikkmappa.
 
 #: ../thunar/thunar-window.c:306
-#, fuzzy
 msgid Go to the pictures folder
-msgstr Gå til malmappan.
+msgstr Gå til biletmappa.
 
 #: ../thunar/thunar-window.c:307
-#, fuzzy
 msgid Go to the videos folder
-msgstr Gå til heimemappa.
+msgstr Gå til videomappa.
 
 #: ../thunar/thunar-window.c:308
-#, fuzzy
 msgid Go to the public folder
-msgstr Gå til malmappan.
+msgstr Gå til den offentlege mappa.
 
 #: ../thunar/thunar-window.c:309
 msgid T_emplates
@@ -2695,9 +2689,9 @@ msgid Failed to open the home folder
 msgstr Klarte ikkje opna heimemappa
 
 #: ../thunar/thunar-window.c:1951
-#, fuzzy, c-format
+#, c-format
 msgid Failed to open folder \%s\
-msgstr Klarte ikkje opna fila «%s»
+msgstr Klarte ikkje opna mappa «%s»
 
 #. display the About Templates dialog
 #: ../thunar/thunar-window.c:2076
@@ -2709,7 +2703,6 @@ msgid All files in this folder will appear in the 
\Create Document\ menu.
 msgstr Alle filene i denne mappa kjem opp i «Opprett dokument»-menyen.
 
 #: ../thunar/thunar-window.c:2105
-#, fuzzy
 msgid 
 If you frequently create certain kinds  of documents, make a copy of one and 
 put it in this folder. Thunar will add an entry for this document in the 
@@ -3212,9 +3205,8 @@ msgstr Klarte ikkje få kontakt med papirkorga
 
 #. tell the user whether the trash is full or empty
 #: ../plugins/thunar-tpa/thunar-tpa-icon.c:287
-#, fuzzy
 msgid Trash contains files
-msgstr Papirkorga er full
+msgstr Papirkorga inneheld filer
 
 #: ../plugins/thunar-tpa/thunar-tpa-icon.c:287
 msgid Trash is empty
@@ -3273,16 +3265,15 @@ msgid Failed to save actions to disk.
 msgstr Fekk ikkje lagra handlingane til disken.
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:463
-#, fuzzy, c-format
+#, c-format
 msgid 
 Are you sure that you want to delete\n
 action \%s\?
-msgstr Er du sikker på at du vil fjerna «%s»?
+msgstr Er du sikker på at du vil fjerne handlinga «%s»?
 
 #: 

[Xfce4-commits] xfdesktop:xfce-4.6 l10n: Initial Norwegian Nynorsk translation

2009-12-01 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 92b16e78735f40859269bc644d9d093a37325f17 (commit)
   from 8b1505bab0e234dd7472dc7aba67169c9e7d1edb (commit)

commit 92b16e78735f40859269bc644d9d093a37325f17
Author: Eskild Hustvedt u...@zerodogg.org
Date:   Tue Dec 1 23:10:07 2009 +

l10n: Initial Norwegian Nynorsk translation

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

 po/{ka.po = nn.po} |  566 +--
 1 files changed, 279 insertions(+), 287 deletions(-)

diff --git a/po/ka.po b/po/nn.po
similarity index 70%
copy from po/ka.po
copy to po/nn.po
index c412e9e..306fb3a 100644
--- a/po/ka.po
+++ b/po/nn.po
@@ -1,289 +1,294 @@
+# Translation of XFdesktop to Norwegian Nynorsk
+# This file is distributed under the same license as the XFDesktop package.
+# Eskild Hustvedt i...@zerodogg.org, 2009.
+#
+#, fuzzy
 msgid 
 msgstr 
-Project-Id-Version: xfdesktop 4.4.0\n
+Project-Id-Version: xfdesktop\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-01-26 01:15+0100\n
-PO-Revision-Date: 2006-08-24 23:48+0400\n
-Last-Translator: Dimitri Gogelia delphi.kni...@gmail.com\n
-Language-Team: Georgian delphi.kni...@gmail.com\n
+PO-Revision-Date: 2009-12-01 22:01+0100\n
+Last-Translator: Eskild Hustvedt i...@zerodogg.org\n
+Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-X-Poedit-Language: Georgian\n
-X-Poedit-Country: GEORGIA\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Generator: VIM 7.2 \n
 
 #: ../common/xfdesktop-common.c:87 ../common/xfdesktop-common.c:191
 #, c-format
 msgid Backdrop list file is not valid
-msgstr 
+msgstr Lista over bakgrunssbilete er ikkje gyldig
 
 #: ../panel-plugin/desktop-menu-plugin.c:653
 #, c-format
 msgid Unable to launch xfce4-menueditor: %s
-msgstr 
+msgstr Kunne ikkje starte xfce4-menueditor: %s
 
 #: ../panel-plugin/desktop-menu-plugin.c:676
 msgid Select Icon
-msgstr 
+msgstr Vel eit ikon
 
 #: ../panel-plugin/desktop-menu-plugin.c:678
 msgid Select Menu File
-msgstr 
+msgstr Vel ei meny-fil
 
 #: ../panel-plugin/desktop-menu-plugin.c:705
 msgid All Files
-msgstr 
+msgstr Alle filer
 
 #: ../panel-plugin/desktop-menu-plugin.c:712
 msgid Image Files
-msgstr 
+msgstr Alle biletfiler
 
 #: ../panel-plugin/desktop-menu-plugin.c:715
 msgid Menu Files
-msgstr 
+msgstr Menyfiler
 
 #: ../panel-plugin/desktop-menu-plugin.c:740
 #: ../panel-plugin/xfce4-menu.desktop.in.in.h:2
 msgid Xfce Menu
-msgstr 
+msgstr Xfce meny
 
 #: ../panel-plugin/desktop-menu-plugin.c:752
 msgid Button
-msgstr 
+msgstr Knapp
 
 #: ../panel-plugin/desktop-menu-plugin.c:765
 msgid Button _title:
-msgstr 
+msgstr _Nanm på knapp:
 
 #: ../panel-plugin/desktop-menu-plugin.c:778
 msgid _Show title in button
-msgstr 
+msgstr _Vis namnet på knappen
 
 #: ../panel-plugin/desktop-menu-plugin.c:785
 msgid Menu File
-msgstr 
+msgstr Menyfil
 
 #: ../panel-plugin/desktop-menu-plugin.c:797
 msgid Use default _desktop menu file
-msgstr 
+msgstr Bruk standard _menyfil
 
 #: ../panel-plugin/desktop-menu-plugin.c:806
 msgid Use _custom menu file:
-msgstr 
+msgstr Bruk _sjølvvald menyfil:
 
 #: ../panel-plugin/desktop-menu-plugin.c:847
 msgid _Edit Menu
-msgstr 
+msgstr Redig_er meny
 
 #: ../panel-plugin/desktop-menu-plugin.c:854
 msgid Icons
-msgstr 
+msgstr Ikon
 
 #: ../panel-plugin/desktop-menu-plugin.c:866
 msgid _Button icon:
-msgstr 
+msgstr _Knappikon:
 
 #: ../panel-plugin/desktop-menu-plugin.c:880
 msgid Show _icons in menu
-msgstr 
+msgstr _Vis ikoner i menyen
 
 #: ../panel-plugin/desktop-menu-plugin.c:915
 msgid There is already a panel menu registered for this screen
-msgstr 
+msgstr Det er allereie ein panelmeny registrert for denne skjermen
 
 #: ../panel-plugin/desktop-menu-plugin.c:1030
 msgid Edit Menu
-msgstr 
+msgstr Rediger menyen
 
 #: ../panel-plugin/xfce4-menu.desktop.in.in.h:1
 msgid Shows a menu containing categories of installed applications
-msgstr 
+msgstr Visar ein meny some innehald kategoriar med installerte program
 
 #: ../src/main.c:231
 #, c-format
 msgid This is %s version %s, running on Xfce %s.\n
-msgstr 
+msgstr Dette er %s versjon %s, som køyrar på Xfce %s.\n
 
 #: ../src/main.c:233
 #, c-format
 msgid Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d.
-msgstr 
+msgstr Bygget med GTK+ %d.%d.%d, lenkja til GTK+ %d.%d.%d.
 
 #: ../src/main.c:237
 #, c-format
 msgid Build options:\n
-msgstr 
+msgstr Byggval:\n
 
 #: ../src/main.c:238
 #, c-format
 msgid Desktop Menu:%s\n
-msgstr 
+msgstr Skrivebordsmeny: %s\n
 
 #: ../src/main.c:240 ../src/main.c:247 ../src/main.c:254
 msgid enabled
-msgstr 
+msgstr skrudd på
 
 #: ../src/main.c:242 ../src/main.c:249 ../src/main.c:256
 msgid disabled
-msgstr 
+msgstr skrudd av
 
 #: ../src/main.c:245
 #, c-format
 msgid Desktop Icons:   %s\n
-msgstr 
+msgstr Skrivebordsikon:%s\n
 
 #: ../src/main.c:252
 #, c-format
 msgid Desktop 

[Xfce4-commits] libxfce4menu:xfce-4.6 l10n: Initial Norwegian Nynorsk translation

2009-12-01 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 58753982d643adc898642ea955f6ee4d0432b665 (commit)
   from f01a2cc78731de361cf4b19ae0bdb47589e5bde1 (commit)

commit 58753982d643adc898642ea955f6ee4d0432b665
Author: Eskild Hustvedt u...@zerodogg.org
Date:   Tue Dec 1 23:19:40 2009 +

l10n: Initial Norwegian Nynorsk translation

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

 po/{nb.po = nn.po} |   23 ---
 1 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/po/nb.po b/po/nn.po
similarity index 60%
copy from po/nb.po
copy to po/nn.po
index 35fe0ee..3fa5724 100644
--- a/po/nb.po
+++ b/po/nn.po
@@ -1,40 +1,41 @@
-# Norwegian Bokmal translation of the libxfce4menu package.
-# Copyright (C) 2007-2009 Jannis Pohlmann jan...@xfce.org
+# Translation of libxfce4menu to Norwegian Nynorsk
 # This file is distributed under the same license as the libxfce4menu package.
-# Terje Uriansrud te...@uriansrudnet, 2008-2009.
+# Eskild Hustvedt i...@zerodogg.org, 2009.
 #
+#, fuzzy
 msgid 
 msgstr 
-Project-Id-Version: libxfce 4menu\n
+Project-Id-Version: libxfce4menu\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-01-06 01:23+0100\n
-PO-Revision-Date: 2008-10-15 22:32+0200\n
-Last-Translator: Terje t...@operamail.com\n
-Language-Team: Norwegian Bokmal\n
+PO-Revision-Date: 2009-12-02 00:19+0100\n
+Last-Translator: Eskild Hustvedt i...@zerodogg.org\n
+Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\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-Generator: VIM 7.2 \n
 
 #. Let the caller know there was no suitable file
 #: ../libxfce4menu/xfce-menu.c:743
 #, c-format
 msgid Failed to locate the system menu
-msgstr Klarte ikke å finne systemmenyen
+msgstr Kunne ikkje finne system-menyen
 
 #: ../libxfce4menu/xfce-menu-item-cache.c:198
 #, c-format
 msgid Failed to create the libxfce4menu item cache in %s.
-msgstr Klarte ikke å opprette libxfce4menu programhurtiglager i %s.
+msgstr Kunne ikkje opprette libxfce4menu elementhurtiglageret i %s.
 
 #: ../libxfce4menu/xfce-menu-item-cache.c:208
 #, c-format
 msgid Failed to load the libxfce4menu item cache from %s: %s.
-msgstr Klarte ikke å laste libxfcemenu elementhurtiglager fra %s: %s.
+msgstr Kunne ikkje laste libxfce4menu elementhurtiglageret frå %s: %s.
 
 #: ../tests/test-display-menu.c:353
 msgid XfceMenu: Display Menu Test
-msgstr XfceMenu: Vis menytest
+msgstr XfceMenu: Syn menytest
 
 #. Create button
 #: ../tests/test-display-menu.c:362
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder:xfce-4.6 l10n: Initial Norwegian Nynorsk translation

2009-12-01 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 372546a3d693db132a5c576cb6be64ab842895c3 (commit)
   from bbf442e8978733d7f3fe907fd1f62aeaf9df22a1 (commit)

commit 372546a3d693db132a5c576cb6be64ab842895c3
Author: Eskild Hustvedt u...@zerodogg.org
Date:   Tue Dec 1 23:31:29 2009 +

l10n: Initial Norwegian Nynorsk translation

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

 po/{nb.po = nn.po} |   47 ++-
 1 files changed, 22 insertions(+), 25 deletions(-)

diff --git a/po/nb.po b/po/nn.po
similarity index 64%
copy from po/nb.po
copy to po/nn.po
index 5c45cb0..611e22c 100644
--- a/po/nb.po
+++ b/po/nn.po
@@ -1,21 +1,21 @@
-# Norwegian Bokmal translations for xfce package.
-# Copyright (C) 2008 THE xfce'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce package.
-# Terje Uriansrud t...@operamail.com, 2008.
-# Terje Uriansrud te...@uriansrud.net, 2009.
+# Translation of xfce4-appfinder to Norwegian Nynorsk
+# This file is distributed under the same license as the xfce4-appfinder 
package.
+# Eskild Hustvedt i...@zerodogg.org, 2009.
 #
+#, fuzzy
 msgid 
 msgstr 
-Project-Id-Version: xfce 4-appfinder\n
+Project-Id-Version: xfce4-appfinder\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-01-02 13:31+0100\n
-PO-Revision-Date: 2008-10-15 23:10+0200\n
-Last-Translator: Terje Uriansrud te...@uriansrud.net\n
-Language-Team: Norwegian Bokmal\n
+PO-Revision-Date: 2009-12-02 00:30+0100\n
+Last-Translator: Eskild Hustvedt i...@zerodogg.org\n
+Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\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-Generator: VIM 7.2 \n
 
 #: ../src/main.c:43
 msgid Version information
@@ -28,15 +28,15 @@ msgstr [MENYFIL]
 #: ../src/main.c:65
 #, c-format
 msgid Type '%s --help' for usage information.
-msgstr Skriv '%s --help' for hjelp om bruk.
+msgstr Skriv «%s --help» for bruksinformasjon.
 
 #: ../src/main.c:71
 msgid Unable to initialize GTK+.
-msgstr Klarte ikke initialisere GTK+.
+msgstr Kunne ikkje klargjere GTK+.
 
 #: ../src/main.c:81
 msgid The Xfce development team. All rights reserved.
-msgstr Xfce utviklingsteam. Alle rettigheter reservert.
+msgstr Xfce utviklingslaget. Alle rettar reservert.
 
 #: ../src/main.c:82
 #, c-format
@@ -46,11 +46,11 @@ msgstr Rapporter feil til %s.
 #: ../src/main.c:98
 #, c-format
 msgid Failed to connect to xfconf daemon. Reason: %s
-msgstr Klarte ikke koble til xfconf prosessen. Årsak: %s
+msgstr Kunne ikkje kople til xfconf-tenaren. Grunn: %s
 
 #: ../src/main.c:102
 msgid Failed to connect to xfconf daemon.
-msgstr Klarte ikke koble til xfconf prosessen
+msgstr Kunne ikkje kople til xfconf-tenaren.
 
 #: ../src/xfce-appfinder-window.c:280 ../src/xfce-appfinder-window.c:294
 #: ../data/xfce4-appfinder.desktop.in.h:1
@@ -59,7 +59,7 @@ msgstr Programkatalog
 
 #: ../src/xfce-appfinder-window.c:295 ../data/xfce4-appfinder.desktop.in.h:2
 msgid Find and launch applications installed on your system
-msgstr Finn og kjør programmer installert på datamaskinen din
+msgstr Finn og køyr program som er installert på ditt system
 
 #: ../src/xfce-appfinder-window.c:318
 msgid Search
@@ -67,40 +67,37 @@ msgstr Søk
 
 #: ../src/xfce-appfinder-window.c:341
 msgid Categories
-msgstr Kategorier
+msgstr Kategoriar
 
 #: ../src/xfce-appfinder-window.c:389
 msgid C_lose after execute
-msgstr _Lukk etter start
+msgstr _Lukk etter køyring
 
 #: ../src/xfce-appfinder-window.c:790
 #, c-format
 msgid Could not execute application %s. Reason: %s
-msgstr Klarte ikke starte programmet %s. Årsak: %s
+msgstr Kunne ikkje køyre program %s. Grunn: %s
 
 #: ../src/xfce-appfinder-window.c:794
 #, c-format
 msgid Could not execute application %s
-msgstr Klarte ikke starte programmet %s
+msgstr Kunne ikkje køyre program %s
 
 #: ../src/xfce-appfinder-window.c:916
 #, c-format
 msgid Could not load menu from %s. Reason: %s
-msgstr Klarte ikke laste inn meny fra %s. Årsak: %s
+msgstr Kunne ikkje laste meny frå %s. Grunn: %s
 
 #: ../src/xfce-appfinder-window.c:918 ../src/xfce-appfinder-window.c:927
 msgid Could not load system menu
-msgstr Klarte ikke laste inn systemmeny
+msgstr Kunne ikkje laste system-meny
 
 #: ../src/xfce-appfinder-window.c:925
 #, c-format
 msgid Could not load menu from %s
-msgstr Klarte ikke laste meny fra %s
+msgstr Kunne ikkje laste meny frå %s
 
 #: ../src/xfce-appfinder-window.c:940 ../src/xfce-appfinder-window.c:947
 #: ../src/xfce-appfinder-window.c:1203
 msgid All
 msgstr Alle
-
-#~ msgid Filter
-#~ msgstr Filter
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.6 l10n: Initial Norwegian Nynorsk translation

2009-12-01 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to a8a203b374f6d8e638379d116b7b06795cfd55d1 (commit)
   from 3e992c2da78b654bd8f436b0678d158e4bf40003 (commit)

commit a8a203b374f6d8e638379d116b7b06795cfd55d1
Author: Eskild Hustvedt u...@zerodogg.org
Date:   Tue Dec 1 23:39:18 2009 +

l10n: Initial Norwegian Nynorsk translation

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

 po/{af.po = nn.po} |   87 ---
 1 files changed, 41 insertions(+), 46 deletions(-)

diff --git a/po/af.po b/po/nn.po
similarity index 66%
copy from po/af.po
copy to po/nn.po
index 4e9b5e9..b08dd63 100644
--- a/po/af.po
+++ b/po/nn.po
@@ -1,98 +1,98 @@
-# Afrikaans translations for xfce-utils package.
-# Copyright (C) 2002-2007 The Xfce development team.
+# Translation of xfce-utils to Norwegian Nynorsk
 # This file is distributed under the same license as the xfce-utils package.
-# Petri Jooste petri.joo...@gmail.com, 2005.
+# Eskild Hustvedt i...@zerodogg.org, 2009.
 #
+#, fuzzy
 msgid 
 msgstr 
-Project-Id-Version: xfce-utils 4.4.0\n
+Project-Id-Version: xfce-utils\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-01 11:39+0100\n
-PO-Revision-Date: 2005-10-07 23:08+0900\n
-Last-Translator: Petri Jooste petri.joo...@gmail.com\n
-Language-Team: Afrikaans i...@af.org.za\n
+PO-Revision-Date: 2009-12-02 00:38+0100\n
+Last-Translator: Eskild Hustvedt i...@zerodogg.org\n
+Language-Team: Norwegian Nynorsk i18n...@lister.ping.uio.no\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-Generator: VIM 7.2 \n
 
 #: ../xfce4-about/info.c:197
 msgid Unable to load 
-msgstr 
+msgstr Kunne ikkje laste 
 
 #. Project lead
 #: ../xfce4-about/info.c:226
 msgid Project Lead
-msgstr 
+msgstr Prosjektleiar
 
 #. Core developers
 #: ../xfce4-about/info.c:230
 msgid Core developers
-msgstr 
+msgstr Kjerneutviklarar
 
 #. Active contributors
 #: ../xfce4-about/info.c:234
 msgid Active contributors
-msgstr 
+msgstr Aktive bidragsytarar
 
 #. Previous contributors
 #: ../xfce4-about/info.c:238
 msgid Previous contributors
-msgstr 
+msgstr Tidlegare bidragsytarar
 
 #: ../xfce4-about/info.c:243
 msgid Web Hosting and Mailing Lists provided by
-msgstr 
+msgstr Vevtenar og e-postlister gitt av
 
 #. Server admins
 #: ../xfce4-about/info.c:275
 msgid Server maintained by
-msgstr 
+msgstr Tenar vedlikehaldt av
 
 #. Goodies supervision
 #: ../xfce4-about/info.c:279
 msgid Goodies supervision
-msgstr 
+msgstr «Goodies» tilsyn
 
 #. Translations supervision
 #: ../xfce4-about/info.c:283
 msgid Translations supervision
-msgstr 
+msgstr Omsetjingstilsyn
 
 #. Translators
 #: ../xfce4-about/info.c:287
 msgid Translators
-msgstr 
+msgstr Omsetjarar
 
 #: ../xfce4-about/info.c:318
 msgid If you know of anyone missing from this list, please let us know on 
-msgstr 
+msgstr Viss du veit om nokon som manglar frå denne lista, gje oss beskjed på
 
 #: ../xfce4-about/info.c:322
 msgid Thanks to all who helped making this software available.
-msgstr 
+msgstr Takk til alle som hjalp til med å gjere denne programvara 
tilgjengeleg.
 
 #: ../xfce4-about/info.c:431
 msgid About Xfce 4
-msgstr Aangaande Xfce 4
+msgstr Om Xfce 4
 
 #: ../xfce4-about/info.c:432
-#, fuzzy
 msgid Copyright 2002-2009 by Olivier Fourdan
-msgstr Kopiereg 2002-2009 deur Olivier Fourdan
+msgstr Copyright 2002-2009 ved Oliver Fourdan
 
 #: ../xfce4-about/info.c:455
 msgid Info
-msgstr Inligting
+msgstr Info
 
 #. add_page (GTK_NOTEBOOK (notebook), _(Credits), XFCE_AUTHORS, FALSE);
 #: ../xfce4-about/info.c:457
 msgid Credits
-msgstr Erkenning
+msgstr Bidragsytarar
 
 #: ../xfce4-about/info.c:458
 msgid Copyright
-msgstr Kopiereg
+msgstr Copyright
 
 #: ../xfce4-about/info.c:459
 msgid BSDL
@@ -109,74 +109,69 @@ msgstr GPL
 #. we don't support daemon mode
 #: ../xfrun/xfrun.c:50
 msgid Daemon Mode
-msgstr 
+msgstr Tenarmodus
 
 #: ../xfrun/xfrun.c:52
 msgid Daemon mode is not supported.
-msgstr 
+msgstr Tenarmodus er ikkje støtta
 
 #: ../xfrun/xfrun.c:53
 msgid Xfrun must be compiled with D-BUS support to enable daemon mode.
-msgstr 
+msgstr Xfrun må vere kompilert med D-BUS-støtte for å slå på tenarmodus.
 
 #: ../xfrun/xfrun-dbus.c:141
 #, c-format
 msgid Unable to open display \%s\.
-msgstr 
+msgstr Kunne ikkje opne display «%s».
 
 #: ../xfrun/xfrun-dbus.c:200
 #, c-format
 msgid D-BUS message bus disconnected. Exiting ...\n
-msgstr 
+msgstr D-BUS meldingsbuss blei kopla frå. Avsluttar ...\n
 
 #. failed
 #: ../xfrun/xfrun-dbus.c:342 ../xfrun/xfrun-dbus.c:353
 msgid System Error
-msgstr 
+msgstr Systemfeil
 
 #: ../xfrun/xfrun-dbus.c:344 ../xfrun/xfrun-dbus.c:355
 msgid Unable to fork to background:
-msgstr 
+msgstr Kunne ikkje forgreine til bakgrunnen:
 
 #: ../xfrun/xfrun-dialog.c:188
 msgid Run in _terminal
-msgstr Loop in _terminaal
+msgstr Køyr i _terminal
 
 #: ../xfrun/xfrun-dialog.c:209
 msgid _Run
-msgstr _Loop
+msgstr _Køyr
 
 

[Xfce4-commits] midori:master Revise handling of application paths when importing bookmarks

2009-12-01 Thread Christian Dywan
Updating branch refs/heads/master
 to 2ea4ae70794bae0dc40546609f48abce972ffc15 (commit)
   from 27e28080b8feed251e48008973ae5930161d6663 (commit)

commit 2ea4ae70794bae0dc40546609f48abce972ffc15
Author: Christian Dywan christ...@twotoasts.de
Date:   Tue Dec 1 22:43:16 2009 +0100

Revise handling of application paths when importing bookmarks

 midori/midori-browser.c |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index dea7693..d93de36 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -4168,12 +4168,13 @@ _action_bookmarks_import_activate (GtkAction* 
action,
 label = gtk_label_new_with_mnemonic (_(_Application:));
 gtk_size_group_add_widget (sizegroup, label);
 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
-model = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INT);
+model = gtk_list_store_new (4, G_TYPE_STRING, G_TYPE_STRING,
+   G_TYPE_STRING, G_TYPE_INT);
 combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (model));
 renderer = gtk_cell_renderer_pixbuf_new ();
 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, FALSE);
 gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), renderer, 
icon-name, 1);
-gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), renderer, width, 
2);
+gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), renderer, width, 
3);
 renderer = gtk_cell_renderer_text_new ();
 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE);
 gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo), renderer, text, 
0);
@@ -4186,7 +4187,7 @@ _action_bookmarks_import_activate (GtkAction* action,
 if (g_file_test (path, G_FILE_TEST_EXISTS))
 gtk_list_store_insert_with_values (model, NULL, G_MAXINT,
 0, bookmark_clients[i].name, 1, bookmark_clients[i].icon,
-2, icon_width, -1);
+2, path, 3, icon_width, -1);
 g_free (path);
 }
 gtk_combo_box_set_active (combobox, 0);
@@ -4222,13 +4223,14 @@ _action_bookmarks_import_activate (GtkAction* 
action,
 gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT);
 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
 {
+GtkTreeIter iter;
 gchar* path;
 gchar* selected;
 KatzeArray* folder;
 GError* error;
 
-i = gtk_combo_box_get_active (combobox);
-path = g_build_filename (g_get_home_dir (), bookmark_clients[i].path, 
NULL);
+gtk_combo_box_get_active_iter (combobox, iter);
+gtk_tree_model_get (GTK_TREE_MODEL (model), iter, 2, path, -1);
 
 selected = gtk_combo_box_get_active_text (combobox_folder);
 folder = browser-bookmarks;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Do not free the SoupURI obtained from soup_message_get_uri

2009-12-01 Thread Christian Dywan
Updating branch refs/heads/master
 to 27e28080b8feed251e48008973ae5930161d6663 (commit)
   from aa5b5850c0637ad19ab8ffed6437a6e7e9ec033c (commit)

commit 27e28080b8feed251e48008973ae5930161d6663
Author: Alexander Butenko a.bute...@gmail.com
Date:   Tue Dec 1 22:35:28 2009 +0100

Do not free the SoupURI obtained from soup_message_get_uri

 extensions/adblock.c |1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/extensions/adblock.c b/extensions/adblock.c
index 50b0db4..df90650 100644
--- a/extensions/adblock.c
+++ b/extensions/adblock.c
@@ -662,7 +662,6 @@ adblock_session_request_queued_cb (SoupSession* session,
 data.query = g_strdup_printf (%s?%s, soup_uri-path, 
soup_uri-query);
 else
 data.query = g_strdup (soup_uri-path);
-soup_uri_free (soup_uri);
 
 data.uri = uri;
 page_uri = NULL; /* FIXME */
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-notes-plugin:master l10n: Updates to Chinese (China) (zh_CN) translation

2009-12-01 Thread Transifex
Updating branch refs/heads/master
 to ea287a84ffed0b8b83680713f0b091ad995f3bd6 (commit)
   from 313d3f8214d5abc82eff9b043be4af831c35c7c2 (commit)

commit ea287a84ffed0b8b83680713f0b091ad995f3bd6
Author: Xu Meihong mhun...@gmail.com
Date:   Wed Dec 2 06:59:52 2009 +

l10n: Updates to Chinese (China) (zh_CN) translation

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

 po/zh_CN.po |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index d312254..d285a4d 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: xfce4-notes-plugin\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-01 23:13+0100\n
-PO-Revision-Date: 2009-11-09 20:04+0800\n
+PO-Revision-Date: 2009-12-02 15:01+0800\n
 Last-Translator: Hunt Xu hun...@live.cn\n
 Language-Team: Chinese (Simplified) xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
@@ -77,6 +77,8 @@ msgstr 无法打开设置对话框
 #: ../panel-plugin/application.vala:534
 msgid translator-credits
 msgstr 
+Hunt Xu hun...@live.cn, 2009.\n
+Dig dig.ge...@gmail.com, 2009.
 
 #: ../panel-plugin/window.vala:711
 msgid _Rename
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits