[Xfce4-commits] xfce4-power-manager:master Don't attach to the status icon if libnotify = 0.7.

2011-03-25 Thread Nick Schermer
Updating branch refs/heads/master
 to 9bc8900b4efef29fdc06331b028c7108df15b856 (commit)
   from f39d1e987d7d3507075bd54e402416dead58f4a0 (commit)

commit 9bc8900b4efef29fdc06331b028c7108df15b856
Author: Nick Schermer n...@xfce.org
Date:   Fri Mar 25 08:11:33 2011 +0100

Don't attach to the status icon if libnotify = 0.7.

 src/xfpm-notify.c |3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/xfpm-notify.c b/src/xfpm-notify.c
index c93a843..311b0fd 100644
--- a/src/xfpm-notify.c
+++ b/src/xfpm-notify.c
@@ -233,9 +233,6 @@ xfpm_notify_new_notification_internal (const gchar *title, 
const gchar *message,
 #if !NOTIFY_CHECK_VERSION (0, 7, 0) 
 if ( icon )
notify_notification_attach_to_status_icon (n, icon);
-#else
-if ( icon )
-   notify_notification_attach_to_status_icon (n, icon);
 #endif
 #endif

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


[Xfce4-commits] thunarx-python:master Use g_return_val_if_fail instead of g_return_if_fail because this override function must have a return value

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 75b892dddc32c3c5e5f10cac216390a588218f1f (commit)
   from e9d83b29de2c799446f3b6931a974d33425a16ab (commit)

commit 75b892dddc32c3c5e5f10cac216390a588218f1f
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 11:07:29 2011 -0400

Use g_return_val_if_fail instead of g_return_if_fail because this override 
function must have a return value

 src/thunarx.override |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/thunarx.override b/src/thunarx.override
index bf2d3c7..0f4127e 100644
--- a/src/thunarx.override
+++ b/src/thunarx.override
@@ -31,7 +31,7 @@ _pyobject_to_ghashtable (PyObject   *py_dict,
 Py_ssize_t pos = 0;
 PyObject *py_key, *py_value;
 
-g_return_if_fail (py_dict != NULL);
+g_return_val_if_fail (py_dict != NULL, NULL);
 
 while (PyDict_Next (py_dict, pos, py_key, py_value))
 {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Make the abicheck work on Solaris and PPC64 (bug #7416).

2011-03-25 Thread Nick Schermer
Updating branch refs/heads/master
 to a2d91c0e7ec3fa327b68dbc26809d40a5592307f (commit)
   from ed2db07ccace659ce9e06f334f41ad09419d6cb1 (commit)

commit a2d91c0e7ec3fa327b68dbc26809d40a5592307f
Author: Guido Berhoerster g...@opensuse.org
Date:   Fri Mar 25 17:52:50 2011 +0100

Make the abicheck work on Solaris and PPC64 (bug #7416).

 xfconf/abicheck.sh |8 +---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/xfconf/abicheck.sh b/xfconf/abicheck.sh
index 4684846..a21a209 100755
--- a/xfconf/abicheck.sh
+++ b/xfconf/abicheck.sh
@@ -2,6 +2,7 @@
 #
 # Copyright (c) 2004 The GLib Development Team.
 # Copyright (c) 2005 Benedikt Meurer be...@xfce.org.
+# Copyright (c) 2011 Guido Berhoerster g...@opensuse.org
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -17,6 +18,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 #
 
-cpp -P -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DALL_FILES 
${srcdir:-.}/xfconf.symbols | sed -e '/^$/d' -e 's/ XFCONF_GNUC.*$//' -e 's/ 
G_GNUC.*$//' -e 's/ PRIVATE//' | sort  expected-abi
-nm -D .libs/libxfconf-0.so | grep  T\|R  | cut -d ' ' -f 3 | grep -v '^_.*' 
| sort  actual-abi
-diff -u expected-abi actual-abi  rm expected-abi actual-abi
+trap 'rm expected-abi actual-abi' EXIT
+${CPP:-cpp} -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DALL_FILES 
${srcdir:-.}/xfconf.symbols | sed 's/ G_GNUC.*$//;s/ PRIVATE//;/^ *$/d;/^#/d' | 
sort expected-abi
+${NM:-nm} -D -g -P .libs/libxfconf-0.so | awk '$2~/^[DRTG]$/$1~/^[^_]/{print 
$1}' | sort actual-abi
+diff -u expected-abi actual-abi
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Remove the obsolete documentation.py:

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 98f4ef233ed0659dbc1bae632dfa1d82c2d3d49f (commit)
   from 75b892dddc32c3c5e5f10cac216390a588218f1f (commit)

commit 98f4ef233ed0659dbc1bae632dfa1d82c2d3d49f
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 11:16:33 2011 -0400

Remove the obsolete documentation.py:

 docs/Makefile.am  |1 -
 docs/documentation.py |  253 -
 2 files changed, 0 insertions(+), 254 deletions(-)

diff --git a/docs/Makefile.am b/docs/Makefile.am
index b73b082..23a7a2f 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -1,7 +1,6 @@
 SUBDIRS = examples
 
 docsdir = $(docdir)
-docs_DATA = documentation.py
 
 BUILDDIR = $(top_builddir)/docs
 
diff --git a/docs/documentation.py b/docs/documentation.py
deleted file mode 100644
index 758530d..000
--- a/docs/documentation.py
+++ /dev/null
@@ -1,253 +0,0 @@
-class MenuProvider:
-def get_file_actions(self, window, files):
-
-@param window the window it was sent from
-@type  window gtk.Window
-@param files  selected files
-@type  files  list of nautilus.FileInfo
-@returns  menu items to show
-@rtypea sequence of nautilus.MenuItems
-
-
-def get_folder_actions(self, window, file):
-
-@param window the window it was sent from
-@type  window gtk.Window
-@param file   file that was clicked on
-@type  file   nautilus.FileInfo
-@returns  menu items to show
-@rtypea sequence of nautilus.MenuItems
-
-
-def get_dnd_actions(self, window, folder, files):
-
-@param window the window it was sent from
-@type  window gtk.Window
-@param folder folder the user dropped files into
-@type  folder nautilus.FileInfo
-@param files  selected files
-@type  files  list of nautilus.FileInfo
-@returns  menu items to show
-@rtypea sequence of nautilus.MenuItems
-
-
-class PropertyPageProvider:
-def get_property_pages(self, files):
-
-@param files  selected files
-@type  files  list of nautilus.FileInfo
-@returns  property pages to show
-@rtypea sequence of nautilus.PropertyPage
-
-Creates a property page for files
-
-
-class RenamerProvider:
-def get_renamers(self):
-
-@rtype  list of thunarx.Renamer
-
-pass
-
-class PreferencesProvider:
-def get_preferences_actions(self, window):
-
-@param  window the window it was sent from
-@type   window gtk.Window
-@rtype  list of gtk.Action
-
-pass
-
-class FileInfo:
-def get_name(self):
-
-@rtype   string
-
-pass
-
-def get_uri(self):
-
-@rtype   string
-
-pass
-
-def get_parent_uri(self):
-
-@rtype   string
-
-pass
-
-def get_uri_scheme(self):
-
-@rtype   string
-
-pass
-
-def get_mime_type(self):
-
-@rtype   string
-
-pass
-
-def has_mime_type(self, mime_type):
-
-@type   mime_type   string
-@rtype  boolean
-
-pass
-
-def is_directory(self):
-
-@rtype   boolean
-
-pass
-
-def get_file_info(self):
-
-@rtype  gio.FileInfo
-
-pass
- 
-def get_filesystem_info(self):
-
-@rtype  gio.FileInfo
-
-pass
-
-def get_location(self):
-
-@rtype  gio.File
-
-pass
-
-def changed(self):
-pass
-
-def renamed(self):
-pass
-
-class PropertyPage:
-
-Properties:
-  label (string)
-  label-widget (widget)
-
-
-def __init__(self, label):
-pass
-
-def get_label(self):
-
-@rtype string
-
-pass
-
-def set_label(self, label):
-
-@type   label   string
-
-pass
-
-def get_label_widget(self):
-
-@type gtk.Widget
-
-pass
-
-def set_label_widget(self, widget):
-
-@type   widget  gtk.Widget
-
-pass
-
-class Renamer:
-
-In order to extend the bulk renamer, you must sub-class thunarx.Renamer as
-in the example plugin.  In order to have settings saved, they must be
-registered as gobject properties as in the example plugin.
-
-Properties:
-help-url (string)
-name (string)
-Signals:
-changed
-
-
-def __init__(self):
-pass
-
-def get_help_url(self):
-
-@rtype  string
-
-
-def set_help_url(self, help_url):
-
-@type   help_urlstring
-@param  

[Xfce4-commits] thunarx-python:master Removed a last reference to documentation.py

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to e1e246c0aff0949b8be82416f924cf9b80338a09 (commit)
   from 98f4ef233ed0659dbc1bae632dfa1d82c2d3d49f (commit)

commit e1e246c0aff0949b8be82416f924cf9b80338a09
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 11:18:51 2011 -0400

Removed a last reference to documentation.py

 docs/Makefile.am |1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/docs/Makefile.am b/docs/Makefile.am
index 23a7a2f..6797741 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -56,7 +56,6 @@ CLEANFILES =  \
reference/builddate.xml
 
 EXTRA_DIST =   \
-documentation.py\
$(XMLFILES) 
 
 REFERENCE_DEPS =   \
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Moved the examples directory to it's own folder

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to d2095a1dfdcf370330c6ec390b85436057045df1 (commit)
   from e1e246c0aff0949b8be82416f924cf9b80338a09 (commit)

commit d2095a1dfdcf370330c6ec390b85436057045df1
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 11:34:29 2011 -0400

Moved the examples directory to it's own folder

 Makefile.am|2 +-
 configure.ac.in|2 +-
 docs/Makefile.am   |2 --
 docs/examples/README   |1 -
 {docs/examples = examples}/Makefile.am|0
 examples/README|1 +
 {docs/examples = examples}/thunarx-menu-plugin.py |0
 .../thunarx-preferences-plugin.py  |0
 .../thunarx-property-page-plugin.py|0
 .../thunarx-renamer-plugin.py  |0
 .../thunarx-submenu-plugin.py  |0
 11 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 95246e7..459e70c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = src
+SUBDIRS = src examples
 
 if ENABLE_GTK_DOC
 SUBDIRS += docs
diff --git a/configure.ac.in b/configure.ac.in
index 6d2a0ca..c20df2f 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -162,8 +162,8 @@ XDT_FEATURE_LINKER_OPTS()
 AC_OUTPUT([
 Makefile
 src/Makefile
+examples/Makefile
 docs/Makefile
-docs/examples/Makefile
 docs/reference/entities.docbook
 ])
 
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 6797741..1080f6b 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -1,5 +1,3 @@
-SUBDIRS = examples
-
 docsdir = $(docdir)
 
 BUILDDIR = $(top_builddir)/docs
diff --git a/docs/examples/README b/docs/examples/README
deleted file mode 100644
index b0dda42..000
--- a/docs/examples/README
+++ /dev/null
@@ -1 +0,0 @@
-To install the example plugin, copy to your thunar prefix's 
/lib/thunarx-2/python folder.  You may need to create the python folder.
diff --git a/docs/examples/Makefile.am b/examples/Makefile.am
similarity index 100%
rename from docs/examples/Makefile.am
rename to examples/Makefile.am
diff --git a/examples/README b/examples/README
new file mode 100644
index 000..c468cd5
--- /dev/null
+++ b/examples/README
@@ -0,0 +1 @@
+To install the example plugin, copy to $XDG_DATA_DIR/thunarx-python/extensions 
where $XDG_DATA_DIR could be /usr/share for a global install or ~/.local/share 
for a local install.
diff --git a/docs/examples/thunarx-menu-plugin.py 
b/examples/thunarx-menu-plugin.py
similarity index 100%
rename from docs/examples/thunarx-menu-plugin.py
rename to examples/thunarx-menu-plugin.py
diff --git a/docs/examples/thunarx-preferences-plugin.py 
b/examples/thunarx-preferences-plugin.py
similarity index 100%
rename from docs/examples/thunarx-preferences-plugin.py
rename to examples/thunarx-preferences-plugin.py
diff --git a/docs/examples/thunarx-property-page-plugin.py 
b/examples/thunarx-property-page-plugin.py
similarity index 100%
rename from docs/examples/thunarx-property-page-plugin.py
rename to examples/thunarx-property-page-plugin.py
diff --git a/docs/examples/thunarx-renamer-plugin.py 
b/examples/thunarx-renamer-plugin.py
similarity index 100%
rename from docs/examples/thunarx-renamer-plugin.py
rename to examples/thunarx-renamer-plugin.py
diff --git a/docs/examples/thunarx-submenu-plugin.py 
b/examples/thunarx-submenu-plugin.py
similarity index 100%
rename from docs/examples/thunarx-submenu-plugin.py
rename to examples/thunarx-submenu-plugin.py
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Updated the gtk-doc overview to mention the new python extension install path

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 3ca94dec416ed930f1cad2cc556f067e2f120ef4 (commit)
   from d2095a1dfdcf370330c6ec390b85436057045df1 (commit)

commit 3ca94dec416ed930f1cad2cc556f067e2f120ef4
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 14:13:38 2011 -0400

Updated the gtk-doc overview to mention the new python extension install 
path

 docs/reference/thunarx-python-overview.xml |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/reference/thunarx-python-overview.xml 
b/docs/reference/thunarx-python-overview.xml
index f174b0b..c856e11 100644
--- a/docs/reference/thunarx-python-overview.xml
+++ b/docs/reference/thunarx-python-overview.xml
@@ -22,10 +22,10 @@
 the main class from a thunarx module class will be loaded/para
 
 note
-titleA note about the standard python extensions install path/title
+titleWhere to install python extensions/title
 
-paraThe system-wide install path is $PREFIX/lib/thunarx-2/python (or 
thunarx-1). However, some 64 bit distributions, 
-such as Fedora, put Thunarx-Python extensions in 
$PREFIX/lib64/thunarx-1/python  (or thunarx-1). /para
+paraAs of thunarx-python 0.3.0, python extensions are installed in 
$XDG_DATA_DIR/thunarx-python/extensions where $XDG_DATA_DIR 
+could be /usr/share for a global install or ~/.local/share for a local 
install./para
 /note
 
 xi:include href=thunarx-python-overview-example.xml/
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Remove the dependency on gnome-python2, it isn't needed

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 2d81676afbe2409eda89d8ed5eb62b79ad66876a (commit)
   from 3ca94dec416ed930f1cad2cc556f067e2f120ef4 (commit)

commit 2d81676afbe2409eda89d8ed5eb62b79ad66876a
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 14:24:44 2011 -0400

Remove the dependency on gnome-python2, it isn't needed

 configure.ac.in |1 -
 src/Makefile.am |   13 -
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index c20df2f..dd2986e 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -92,7 +92,6 @@ XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([PYGTK], [pygtk-2.0], [2.6.0])
 XDT_CHECK_PACKAGE([PYGOBJECT], [pygobject-2.0], [2.16.0])
-XDT_CHECK_PACKAGE([GNOMEPYTHON], [gnome-python-2.0], [2.12.0])
 
 PYTHON_CFLAGS=`python-config --includes`
 PYTHON_LIBS=`python-config --libs`
diff --git a/src/Makefile.am b/src/Makefile.am
index 04dc610..c621c3c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,8 +23,7 @@ thunarx_python_la_SOURCES =   
\
 thunarx_python_la_CFLAGS = \
$(THUNARX_CFLAGS)   \
$(PYTHON_CFLAGS)\
-   $(PYGTK_CFLAGS) \
-   $(GNOMEPYTHON_CFLAGS)
+   $(PYGTK_CFLAGS) 
 
 thunarx_python_la_LDFLAGS =\
-avoid-version  \
@@ -32,8 +31,7 @@ thunarx_python_la_LDFLAGS =   
\
-module \
$(THUNARX_LDFLAGS)  \
$(PYTHON_LDFLAGS)   \
-   $(PYGTK_LDFLAGS)\
-   $(GNOMEPYTHON_LIBS)
+   $(PYGTK_LDFLAGS)
 
 pyexec_LTLIBRARIES = thunarx.la
 pyexecdir = $(THUNARX_LIBDIR)/thunarx-python
@@ -45,20 +43,17 @@ thunarx_la_LDFLAGS =
\
initthunarx \
$(THUNARX_LDFLAGS)  \
$(PYTHON_LDFLAGS)   \
-   $(PYGTK_LDFLAGS)\
-   $(GNOMEPYTHON_LDFLAGS)
+   $(PYGTK_LDFLAGS)
 
 thunarx_la_LIBADD =\
$(THUNARX_LIBS) \
$(PYTHON_LIBS)  \
-   $(GNOMEPYTHON_LIBS) \
$(PYGTK_LIBS)
 
 thunarx_la_CFLAGS =\
$(THUNARX_CFLAGS)   \
$(PYTHON_CFLAGS)\
-   $(PYGTK_CFLAGS) \
-   $(GNOMEPYTHON_CFLAGS)
+   $(PYGTK_CFLAGS) 
 
 thunarx_la_SOURCES = thunarxmodule.c
 nodist_thunarx_la_SOURCES = thunarx.c
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Cleaned up the docs makefiles somewhat

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 498daa46c98fefccee671d0d88656c0bce6c56bd (commit)
   from 2d81676afbe2409eda89d8ed5eb62b79ad66876a (commit)

commit 498daa46c98fefccee671d0d88656c0bce6c56bd
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 14:41:19 2011 -0400

Cleaned up the docs makefiles somewhat

 Makefile.am  |   12 
 docs/Makefile.am |   13 +
 2 files changed, 5 insertions(+), 20 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 459e70c..a46e4bb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4,16 +4,4 @@ if ENABLE_GTK_DOC
 SUBDIRS += docs
 endif
 
-distclean-local:
-   rm -rf *.spec *.cache *~
-
-rpm: dist
-   rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
-   @rm -f $(PACKAGE)-$(VERSION).tar.gz
-
-dist-hook:
-   echo  DIST HOOK 
-   echo `pwd` 
-   test -d $(srcdir)/docs/html  mv $(srcdir)/docs/html $(distdir)/docs 
|| echo
-
 DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 1080f6b..6d67e4f 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -23,7 +23,7 @@ XMLFILES =
\
reference/thunarx-python-file-info.xml
 
 HTMLdir = $(datadir)/gtk-doc/html/thunarx-python
-HTML_DATA =\
+HTMLFILES =\
html/index.html \
html/index.sgml \
html/thunarx-python-overview.html \
@@ -44,14 +44,13 @@ CSSdir = $(HTMLdir)
 CSS_DATA = $(CSS_FILES)
 
 BUILT_SOURCES =\
-   build_stamp \
reference/builddate.xml \
-   $(HTML_DATA)
+   $(HTMLFILES)
 
 CLEANFILES =   \
-   build_stamp \
thunarx-python-ref.*\
-   reference/builddate.xml
+   reference/builddate.xml \
+   $(HTMLFILES)
 
 EXTRA_DIST =   \
$(XMLFILES) 
@@ -60,14 +59,12 @@ REFERENCE_DEPS =\
reference   \
$(XMLFILES)
 
-$(HTML_DATA): build_stamp
-
 if ENABLE_GTK_DOC
 
 reference/builddate.xml: $(REFERENCE_DEPS)
$(PYTHON) -c 'import datetime; print datetime.date.today()'  $@
 
-build_stamp: $(REFERENCE_DEPS) reference/builddate.xml
+$(HTMLFILES): $(REFERENCE_DEPS) reference/builddate.xml
xsltproc --nonet --xinclude -o $(BUILDDIR)/html/ \
 --path $(BUILDDIR)/reference:$(srcdir)/reference \
 --stringparam gtkdoc.bookname thunarx-python \
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python:master Release 0.3.0

2011-03-25 Thread Adam Plumb
Updating branch refs/heads/master
 to 68111c9e70b3da122bf7e34ef69d435af8f49e1d (commit)
   from 498daa46c98fefccee671d0d88656c0bce6c56bd (commit)

commit 68111c9e70b3da122bf7e34ef69d435af8f49e1d
Author: Adam Plumb adampl...@gmail.com
Date:   Fri Mar 25 14:42:02 2011 -0400

Release 0.3.0

 NEWS|8 
 configure.ac.in |6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 8787dd9..1cb3291 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+0.3.0:
+- Look for python extensions in $XDG_DATA_DIR/thunarx-python/extensions 
now.   No longer look in /usr/lib/thunarx-1/python.
+- Fix PyCapsule support for the pygobject module
+- Don't hard-code the docs directory in the Makefile.am files
+- Use g_return_val_if_fail in override function instead of g_return_if_fail
+- Updated documentation and moved examples to its own folder
+- Removed the dependency on gnome-python2, there was no need for it.
+
 0.2.3:
 - Fix the python macros to work with python3
 - Fix the main Makefile.am to only build the docs folder if 
diff --git a/configure.ac.in b/configure.ac.in
index dd2986e..c920c18 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -12,8 +12,8 @@ dnl ***
 dnl *** Version information ***
 dnl ***
 m4_define([txp_version_major], [0])
-m4_define([txp_version_minor], [2])
-m4_define([txp_version_micro], [3])
+m4_define([txp_version_minor], [3])
+m4_define([txp_version_micro], [0])
 m4_define([txp_version_tag], [])
 m4_define([txp_version_build], [])
 m4_define([txp_version], 
[txp_version_major().txp_version_minor().txp_version_micro()ifelse(txp_version_tag(),
 [], [], [txp_version_tag()-txp_version_build()])])
@@ -21,7 +21,7 @@ m4_define([txp_version], 
[txp_version_major().txp_version_minor().txp_version_mi
 dnl ***
 dnl *** Initialize autoconf ***
 dnl ***
-AC_COPYRIGHT([Copyright (c) 2009 Adam Plumb adampl...@gmail.com.])
+AC_COPYRIGHT([Copyright (c) 2010 Adam Plumb adampl...@gmail.com.])
 AC_INIT([thunarx-python], [txp_version], [thunar-...@xfce.org])
 AC_PREREQ([2.50])
 AC_CANONICAL_TARGET()
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunarx-python|thunarx-python-0.3.0 Creating annotated tag thunarx-python-0.3.0

2011-03-25 Thread Adam Plumb
Updating annotated tag refs/tags/thunarx-python-0.3.0
 as new annotated tag
 to 7948c25d6945aec9a59a73101c18f5a3f0519a7a (tag)
   succeeds thunarx-python-0.2.3
  tagged by Adam Plumb adampl...@gmail.com
 on 2011-03-25 18:42 +

Adam Plumb (11):
  The pygobject and pygtk init functions should both use PyCapsule_Import 
if possible.
  Fix indentation from previous commit
  Look in /thunarx-python/extensions for scripts now.  Don't look in 
/usr/lib/thunarx-1/python anymore
  Use g_return_val_if_fail instead of g_return_if_fail because this 
override function must have a return value
  Remove the obsolete documentation.py:
  Removed a last reference to documentation.py
  Moved the examples directory to it's own folder
  Updated the gtk-doc overview to mention the new python extension install 
path
  Remove the dependency on gnome-python2, it isn't needed
  Cleaned up the docs makefiles somewhat
  Release 0.3.0

Guido Berhoerster (2):
  Fixes bug #7440. Don't hard code the doc path
  Fixes bug #7440. Don't hard code the doc path (for examples)

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


[Xfce4-commits] xfce4-indicator-plugin:master l10n: Ukrainian translation

2011-03-25 Thread Transifex
Updating branch refs/heads/master
 to 338602b7e81a5d617e3e416fda534f40ce24ba17 (commit)
   from 4277c8a8ad8db7f273e5b16c47200f00a64010c3 (commit)

commit 338602b7e81a5d617e3e416fda534f40ce24ba17
Author: Yarema aka Knedlyk yupad...@gmail.com
Date:   Fri Mar 25 20:35:40 2011 +0100

l10n: Ukrainian translation

New status: 2 messages complete with 0 fuzzies and 1 untranslated.

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

 po/uk.po |   30 ++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/po/uk.po b/po/uk.po
new file mode 100644
index 000..3e61318
--- /dev/null
+++ b/po/uk.po
@@ -0,0 +1,30 @@
+# Ukrainian translation of xfce4-indicator-plugin.
+# This file is distributed under the same license as the xfmedia-remote-plugin 
package.
+#
+# Yarema aka Knedlyk yupad...@gmail.com, 2011.
+msgid 
+msgstr 
+Project-Id-Version: xfce4-indicator-plugin\n
+Report-Msgid-Bugs-To: \n
+POT-Creation-Date: 2011-03-25 17:32-0400\n
+PO-Revision-Date: 2011-03-25 18:36+0300\n
+Last-Translator: Yarema aka Knedlyk yupad...@gmail.com\n
+Language-Team: Ukrainian xfce4-...@xfce.org\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=utf-8\n
+Language: uk\n
+Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n
+
+
+#: ../panel-plugin/indicator.c:208
+msgid No Indicators
+msgstr Немає індикаторів
+
+#: ../panel-plugin/indicator.desktop.in.in.h:1
+msgid An indicator of something that needs your attention on the desktop
+msgstr 
+
+#: ../panel-plugin/indicator.desktop.in.in.h:2
+msgid Indicator Plugin
+msgstr Плагін індикаторів
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-indicator-plugin:master l10n: Updated Ukrainian (uk) translation to 100%

2011-03-25 Thread Transifex
Updating branch refs/heads/master
 to 2b0df5290bfe304992aa7ba4760ed321c529e6fb (commit)
   from 338602b7e81a5d617e3e416fda534f40ce24ba17 (commit)

commit 2b0df5290bfe304992aa7ba4760ed321c529e6fb
Author: Yarema aka Knedlyk yupad...@gmail.com
Date:   Fri Mar 25 20:36:48 2011 +0100

l10n: Updated Ukrainian (uk) translation to 100%

New status: 3 messages complete with 0 fuzzies and 0 untranslated.

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

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

diff --git a/po/uk.po b/po/uk.po
index 3e61318..f5408e0 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,6 +1,6 @@
 # Ukrainian translation of xfce4-indicator-plugin.
 # This file is distributed under the same license as the xfmedia-remote-plugin 
package.
-#
+# 
 # Yarema aka Knedlyk yupad...@gmail.com, 2011.
 msgid 
 msgstr 
@@ -12,18 +12,17 @@ msgstr 
 Language-Team: Ukrainian xfce4-...@xfce.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=utf-8\n
-Language: uk\n
 Content-Transfer-Encoding: 8bit\n
+Language: uk\n
 Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n
 
-
 #: ../panel-plugin/indicator.c:208
 msgid No Indicators
 msgstr Немає індикаторів
 
 #: ../panel-plugin/indicator.desktop.in.in.h:1
 msgid An indicator of something that needs your attention on the desktop
-msgstr 
+msgstr Індикатор якоїсь події, що потребує Вашої уваги на стільниці
 
 #: ../panel-plugin/indicator.desktop.in.in.h:2
 msgid Indicator Plugin
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-sensors-plugin:master forgotten file + nice print of configure messages; I am very angry on git cause it sucked my changes and can't in a simple way change the repository URIs

2011-03-25 Thread Fabian
Updating branch refs/heads/master
 to 94b3351a91b38392412371ad3e0053007b5fdd16 (commit)
   from 2b46dea7b88caae97408387c98ee5a98bfd74f6c (commit)

commit 94b3351a91b38392412371ad3e0053007b5fdd16
Author: Fabian timyst...@arcor.de
Date:   Fri Mar 25 22:14:55 2011 +0100

forgotten file + nice print of configure messages; I am very angry on git 
cause it sucked my changes and can't in a simple way change the repository URIs 
so that it works in contrast to subversion

 configure.in.in|8 +-
 include/sensors-interface-plugin.h |  190 
 2 files changed, 196 insertions(+), 2 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 9dceae7..df75d19 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -393,7 +393,7 @@ echo   and user member of the 
respective group)
 fi
 
 if test x$enable_netcat = xyes; then
-echonetcat: $NETCAT_PATH on $NETCAT_HOST:$HDDTEMP_PORT
+echonetcat for hddtemp: $NETCAT_PATH on $NETCAT_HOST:$HDDTEMP_PORT
 fi
 
 if test x$enable_libsensors = xyes; then
@@ -403,7 +403,11 @@ if test x$enable_procacpi = xyes; then
 echo *  /proc/acpi
 fi
 if test x$enable_sysfsacpi = xyes; then
-echo/sys/class/power_supply
+echo *  /sys/class/power_supply
+fi
+echo
+if test x$enable_xnvctrl = xyes; then
+echo *  NVIDIA X CTRL
 fi
 echo
 if test x$LIBNOTIFY_FOUND = xyes; then
diff --git a/include/sensors-interface-plugin.h 
b/include/sensors-interface-plugin.h
new file mode 100644
index 000..cc4cee2
--- /dev/null
+++ b/include/sensors-interface-plugin.h
@@ -0,0 +1,190 @@
+/* $Id$ */
+/*  Copyright 2004-2011 Fabian Nowak (timyst...@arcor.de)
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/* Note for programmers and editors: Try to use 4 spaces instead of Tab! */
+
+#ifndef XFCE4_SENSORS_INTERFACE_PLUGIN_H
+#define XFCE4_SENSORS_INTERFACE_PLUGIN_H
+
+#ifdef HAVE_CONFIG_H
+ #include config.h
+#endif
+
+/* Glib/Gtk includes */
+#include gtk/gtk.h
+#include glib.h
+/* #include glib/gprintf.h  */
+
+/* Xfce includes */
+#include libxfce4panel/libxfce4panel.h
+
+/* Package includes */
+#include types.h
+#include sensors-interface-types.h
+
+/**
+ * Sensors module
+ */
+typedef struct {
+
+XfcePanelPlugin *plugin;
+
+/* eventbox to catch events */
+GtkWidget *eventbox;
+
+/* our XfceSensors widget */
+GtkWidget *widget_sensors;
+
+/* panel value display */
+GtkWidget *panel_label_data;
+
+/* optional label for plugin */
+GtkWidget *panel_label_text;
+
+/* update the tooltip */
+gint timeout_id;
+
+/* font size for display in panel */
+gchar *font_size;
+gint font_size_numerical;
+gchar *font;
+
+/* temperature scale for display in panel */
+t_tempscale scale;
+
+/* panel size to compute number of cols/columns */
+gint panel_size;
+
+gint lines_size;
+
+/* panel orientation */
+GtkOrientation orientation;
+
+/* if the bars have been initialized */
+gboolean bars_created;
+
+/* if the tachos have been initialized */
+gboolean tachos_created;
+
+/* show title in panel */
+gboolean show_title;
+
+/* show labels in panel (GUI mode only) */
+gboolean show_labels;
+
+/* show units in textual view */
+gboolean show_units;
+
+/* show small spacings only in textual view */
+gboolean show_smallspacings;
+
+/* show colored bars (GUI mode only) */
+gboolean show_colored_bars;
+
+/* use the progress-bar UI */
+//gboolean display_values_graphically;
+display_t display_values_type;
+
+/* suppress Hddtemp failure messages and any other messages */
+gboolean suppressmessage;
+
+/* sensor update time */
+gint sensors_refresh_time;
+
+/* sensor relevant stuff */
+/* no problem if less than 11 sensors, else will have to enlarge the
+following arrays. NYI!! */
+gint num_sensorchips;
+
+/* gint sensorsCount[SENSORS]; */
+
+/* contains the progress bar panels */
+/* FIXME:Might be replaced by GPtrArray as well */
+GtkWidget* panels[10][256];
+/*GArray *panels_array; */
+
+/* contains the tacho panels */
+/* FIXME:Might be replaced by GPtrArray as well */
+GtkWidget* tachos[10][256];
+
+   

[Xfce4-commits] xfce4-sensors-plugin:master and more leftovers from the git-suck

2011-03-25 Thread Fabian
Updating branch refs/heads/master
 to f36c5eafa272255b0faa2b1bab923af8d8269a00 (commit)
   from 94b3351a91b38392412371ad3e0053007b5fdd16 (commit)

commit f36c5eafa272255b0faa2b1bab923af8d8269a00
Author: Fabian timyst...@arcor.de
Date:   Fri Mar 25 22:16:08 2011 +0100

and more leftovers from the git-suck

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

diff --git a/configure.in.in b/configure.in.in
index df75d19..0ca80c0 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -405,7 +405,6 @@ fi
 if test x$enable_sysfsacpi = xyes; then
 echo *  /sys/class/power_supply
 fi
-echo
 if test x$enable_xnvctrl = xyes; then
 echo *  NVIDIA X CTRL
 fi
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:master l10n: Updated Spanish (Castilian) (es) translation to 86%

2011-03-25 Thread Transifex
Updating branch refs/heads/master
 to 5fa79c63419d6fb42ff836555f38faf5d57e178e (commit)
   from b2462b86611db859714bfda516e4e4b617acba14 (commit)

commit 5fa79c63419d6fb42ff836555f38faf5d57e178e
Author: Gonzalo Lagos xalo...@gmail.com
Date:   Fri Mar 25 23:49:15 2011 +0100

l10n: Updated Spanish (Castilian) (es) translation to 86%

New status: 253 messages complete with 3 fuzzies and 37 untranslated.

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

 docs/manual/po/es.po |   43 +++
 1 files changed, 31 insertions(+), 12 deletions(-)

diff --git a/docs/manual/po/es.po b/docs/manual/po/es.po
index 41ec049..1c9c5ab 100644
--- a/docs/manual/po/es.po
+++ b/docs/manual/po/es.po
@@ -550,11 +550,11 @@ msgstr Cada aparición de literal%m/literal en el 
comando se sustituirá co
 
 #: Thunar.xml648(title)
 msgid Troubleshooting the Volume Manager
-msgstr 
+msgstr Solucionando problemas del gestor de volumen
 
 #: Thunar.xml650(para)
 msgid Useful tips to trouble shoot the volume manager in case it does not 
work as expected.
-msgstr 
+msgstr Consejos útiles para el gestor de volumen en caso de no funcionar como 
se esperaba.
 
 #: Thunar.xml656(para)
 msgid Make sure applicationThunar/application is running as daemon. The 
volume manager depends on this, as it is not a daemon by itself. By default, 
Xfce automatically spawns applicationThunar/application as daemon on 
startup. If it got killed for some reason, open the guilabelRun 
program/guilabel (using the keyboard shortcut 
keycombokeycapAlt/keycapkeycapF2/keycap/keycombo or right-click on 
the desktop and choose guilabelRun Program.../guilabel from the desktop 
menu), enter literalThunar --daemon/literal and click 
guibuttonRun/guibutton.
@@ -562,11 +562,11 @@ msgstr 
 
 #: Thunar.xml668(para)
 msgid Try running applicationthunar-volman/application from a 
applicationTerminal/application window after hot-plugging the drive or 
inserting the media. First, you need to figure out the HAL UDI of the new 
device using applicationlshal/application or 
applicationhal-device/application. Once you know the UDI, run 
literalthunar-volman --device-added lt;udi-of-your-devicegt;/literal in a 
applicationTerminal/application window and watch the output for errors or 
warnings.
-msgstr 
+msgstr Pruebe correr applicationthunar-volman/application desde una 
ventana de applicationTerminal/application después de haber conectado el 
dispositvo. Primero, averigüe la dirección HAL del nuevo dispositivo, usando 
para ello applicationlshal/application o 
applicationhal-device/application. Una vez hecho esto, corra el comando 
literalthunar-volman --device-added lt;dirección de su 
dispositivogt;/literal en una ventana de applicationTerminal/application 
y analice los errores o avisos mostrados.
 
 #: Thunar.xml678(para)
 msgid If it still refuses to work, ask on the ulink type=\http\ 
url=\http://forum.xfce.org/\;Xfce Forum/ulink or the ulink type=\http\ 
url=\http://foo-projects.org/mailman/listinfo/thunar-dev\;thunar-dev mailing 
list/ulink for help.
-msgstr 
+msgstr Si aún no funciona, consulte en el ulink type=\http\ 
url=\http://forum.xfce.org/\;Foro Xfce/ulink o en la ulink type=\http\ 
url=\http://foo-projects.org/mailman/listinfo/thunar-dev\;lista de correo 
thunar-dev t/ulink para más ayuda.
 
 #: Thunar.xml689(title)
 msgid File Management Preferences
@@ -746,7 +746,7 @@ msgstr El menú \Enviar a\ 
 
 #: Thunar.xml969(para)
 msgid By default, the guilabelSend To/guilabel menu includes an entry 
named guilabelDesktop (Create Link)/guilabel for all files and folders, 
which simply creates a link on the desktop for each selected file. In addition, 
if the guilabelShortcuts Pane/guilabel is active, the menu also includes an 
entry called guilabelSide Pane (Create Shortcut)/guilabel for folders, 
which allows users to add new shortcuts to the side pane. Following these 
entries, applicationThunar/application lists the removable drives currently 
plugged into the computer. In the screenshot above, the guilabelFloppy 
Drive/guilabel represents a possible target where files can be sent to. Note 
that the device is mounted automatically once selected from the guilabelSend 
To/guilabel menu, so you do not need to manually mount it.
-msgstr 
+msgstr Por defecto, el menú guilabelEnviar a/guilabel incluye una entrada 
llamada guilabelEscritorio (Crear acceso directo)/guilabel para todos los 
archivos y carpetas, la que simplemente crea un acceso directo en el escritorio 
para cada archivo seleccionado. Además, si el guilabelPanel de accesos 
directos/guilabel está activo, el menu también incluirá una entrada llamada 
guilabelPanel lateral (Crear acceso directo)/guilabel para carpetas, la que 
permite añadir nuevos accesos en el panel lateral. A continuación de estas 
entradas, applicationThunar/application muestra los dispositivos removibles 
que están conectados al ordenador. En la fotografía de arriba, la 

[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 67%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to ee6c5f3175b0b034a2461c09242474553a5a296e (commit)
   from 01523c72fdca42dc41184aa336c267520508157f (commit)

commit ee6c5f3175b0b034a2461c09242474553a5a296e
Author: necdetyucel necdetyu...@gmail.com
Date:   Fri Mar 25 23:50:23 2011 +0100

l10n: Updated Turkish (tr) translation to 67%

New status: 120 messages complete with 4 fuzzies and 54 untranslated.

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

 doc/manual/po/tr.po |9 +++--
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 2555e23..6e08708 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -228,9 +228,8 @@ msgid When you run applicationstartxfce4/application 
for the first time, se
 msgstr applicationstartxfce4/application'u ilk defa başlattığınızda, 
birkaç uygulama Xfce oturum yöneticisi tarafından başlatılır:
 
 #: ./xfce-utils.xml240(para)
-#, fuzzy
 msgid In a default session there is a full width panel at the top of the 
screen and a smaller one at the bottom. The 
applicationxfce4-panel/application application manages all panels on the 
screen.
-msgstr Öntanımlı bir oturumda bir tane ekranın üstünde tam genişlikteve bir 
tane altta küçük iki panel vardır. applicationxfce4-panel/application 
uygulaması ekrandaki tüm panelleri yönetir.
+msgstr Öntanımlı bir oturumda bir tane ekranın üstünde tam genişlikte ve bir 
tane altta daha küçük iki panel vardır. applicationxfce4-panel/application 
uygulaması ekrandaki tüm panelleri yönetir.
 
 #: ./xfce-utils.xml246(para)
 msgid The top panel shows a graphical pager with a miniature view of all 
workspaces, a task list showing all applications running on the current 
workspace and a system tray to show status icons that are used for example by 
some media players or instant messaging applications.
@@ -304,7 +303,7 @@ msgstr Çalıştır Penceresi
 
 #: ./xfce-utils.xml357(para)
 msgid If you know the name of a program and it is not on the panel or in the 
desktop menu you can use the run dialog. To open the dialog type 
keycapAlt+F2/keycap or choose the guilabelRun program.../guilabel 
option from the desktop menu.
-msgstr 
+msgstr Panelde veya masaüstü menüsünde bulunmayan bir programın adını 
biliyorsanız çalıştırma kutusunu kullanabilirsiniz. Bunu yapmak için 
keycapAlt+F2/keycap tuş kombinasyonunu veya masaüstü menüsünden 
guilabelProgram çalıştır.../guilabel seçeneğini kullanabilirsiniz.
 
 #: ./xfce-utils.xml363(para)
 msgid The dialog will remeber the 10 last commands that were executed 
successfully.
@@ -439,16 +438,14 @@ msgid xfce4-session
 msgstr xfce4-session
 
 #: ./xfce-utils.xml531(para)
-#, fuzzy
 msgid Session manager. The session manager controls the startup and shutdown 
of the Xfce Desktop Environment. On logout it can save the state of running 
applications (if the application supports it) and restore them properly again 
the next time you log in.
-msgstr Oturum yöneticisi. Oturum yöneticisi Xfce Masaüstü Ortamının başlama 
ve kapanmasını kontrol eder. Çıkışta çalışan programların durumunu 
kaydedip(eğer destekliyorsa) bir sonraki girişte eski haline getirebilir.
+msgstr Oturum yöneticisi. Oturum yöneticisi Xfce Masaüstü Ortamının başlama 
ve kapanmasını kontrol eder. Çıkışta çalışan programların durumunu kaydedip 
(eğer destekliyorsa) bir sonraki girişte eski haline getirebilir.
 
 #: ./xfce-utils.xml540(term)
 msgid xfwm4
 msgstr xfwm4
 
 #: ./xfce-utils.xml542(para)
-#, fuzzy
 msgid The Xfce window mananger. Manages the placement of application windows 
on the screen, provides window decorations and manages workspaces.
 msgstr Xfce pencere yöneticisi. Uygulama pencerelerinin ekrandaki konumunu 
düzenler, pencere süslemeleri barındırır ve çalışma alanlarını yönetir.
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 69%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to b41417143436c447ad4c6741b059a4e10260db38 (commit)
   from ee6c5f3175b0b034a2461c09242474553a5a296e (commit)

commit b41417143436c447ad4c6741b059a4e10260db38
Author: necdetyucel necdetyu...@gmail.com
Date:   Fri Mar 25 23:57:48 2011 +0100

l10n: Updated Turkish (tr) translation to 69%

New status: 123 messages complete with 4 fuzzies and 51 untranslated.

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

 doc/manual/po/tr.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 6e08708..d83266c 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -487,7 +487,7 @@ msgstr xfprint
 
 #: ./xfce-utils.xml589(para)
 msgid Printing support. Provides a graphical frontend for printing. Includes 
applicationxfprint4/application and 
applicationxfprint-manager/application.
-msgstr 
+msgstr Yazdırma desteği. Yazıcılar için bir grafik arabirim sunar. 
applicationxfprint4/application ve 
applicationxfprint-manager/application uygulamalarını içerir.
 
 #: ./xfce-utils.xml597(term)
 msgid xfce4-appfinder
@@ -495,7 +495,7 @@ msgstr xfce4-appfinder
 
 #: ./xfce-utils.xml599(para)
 msgid An application finder that allows you to search, launch and find 
information about applications installed on your system.
-msgstr 
+msgstr Sisteminize kurduğunuz programlar arasından arama yapabileceğiniz, 
onları çalıştırabileceğiniz ve haklarında bilgi alabileceğiniz bir uygulama.
 
 #: ./xfce-utils.xml606(term)
 msgid orage
@@ -511,7 +511,7 @@ msgstr gtk-xfce-engine-2
 
 #: ./xfce-utils.xml615(para)
 msgid Theme engine for GTK2. Not required for the desktop, but it's a nice 
theme engine so you might just as well give it a try.
-msgstr 
+msgstr GTK2 için bir tema motoru. Masaüstü için bir zorunluluk olmamasına 
rağmen çok iyi bir tema motoru olduğundan denemek isteyebilirsiniz.
 
 #: ./xfce-utils.xml622(term)
 msgid xfce4-icon-theme
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 70%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 1bc413f3b61569b6c96ae9d79daa6eb6d57aa84b (commit)
   from b41417143436c447ad4c6741b059a4e10260db38 (commit)

commit 1bc413f3b61569b6c96ae9d79daa6eb6d57aa84b
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:02:58 2011 +0100

l10n: Updated Turkish (tr) translation to 70%

New status: 126 messages complete with 4 fuzzies and 48 untranslated.

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

 doc/manual/po/tr.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index d83266c..77b4482 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -519,7 +519,7 @@ msgstr xfce4-icon-theme
 
 #: ./xfce-utils.xml624(para)
 msgid Default icon theme for Xfce, called emphasisRodent/emphasis.
-msgstr 
+msgstr Xfce için öntanımlı ikon teması emphasisRodent/emphasistir.
 
 #: ./xfce-utils.xml632(title)
 msgid Installing Xfce4
@@ -531,11 +531,11 @@ msgstr İkili paketler
 
 #: ./xfce-utils.xml637(para)
 msgid The Xfce project officially only releases source code for the desktop 
environment. However, binary packages may have been contributed by other people 
for your OS or distribution.
-msgstr 
+msgstr Xfce resmi olarak sadece masaüstü ortamı için kaynak kodları yayınlar. 
Kullanıdığınız işletim sistemine ve sürüme bağlı olarak ikilik paketletler de 
dağıtılıypr olabilir.
 
 #: ./xfce-utils.xml642(para)
 msgid Look at the Xfce site for ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\download 
locations/ulink and additional information about available binary packages. 
If you could not find binary packages for your OS, they may be available from 
your OS vendor or distributor, or you can install Xfce from source.
-msgstr 
+msgstr Mevcut ikilik paketler hakkında daha fazla bilgiyi ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\indirme 
adresleri/ulinknden edinebilirsiniz. İşletim sisteminiz için ikilik paketleri 
bulamıyorsanız ya ayrıca dağıtılıyorlardır ya da kaynak koddan kurmanız 
gerekiyordur.
 
 #: ./xfce-utils.xml652(title)
 #, fuzzy
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 72%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to fcc170824374d7e7a01511fc9432d566b624855d (commit)
   from 1bc413f3b61569b6c96ae9d79daa6eb6d57aa84b (commit)

commit fcc170824374d7e7a01511fc9432d566b624855d
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:06:08 2011 +0100

l10n: Updated Turkish (tr) translation to 72%

New status: 129 messages complete with 3 fuzzies and 46 untranslated.

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

 doc/manual/po/tr.po |5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 77b4482..c3c48ac 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -538,17 +538,16 @@ msgid Look at the Xfce site for ulink 
url=\http://xfce.org/index.php?page=dow
 msgstr Mevcut ikilik paketler hakkında daha fazla bilgiyi ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\indirme 
adresleri/ulinknden edinebilirsiniz. İşletim sisteminiz için ikilik paketleri 
bulamıyorsanız ya ayrıca dağıtılıyorlardır ya da kaynak koddan kurmanız 
gerekiyordur.
 
 #: ./xfce-utils.xml652(title)
-#, fuzzy
 msgid Graphical installers
 msgstr Grafik yükleyiciler
 
 #: ./xfce-utils.xml654(para)
 msgid The easiest way to install Xfce from source is by using the ulink 
url=\http://www.xfce.org/archive/xfce-4.4.0/installers/\; 
type=\html\graphical installers/ulink. Documentation and instructions are 
available.
-msgstr 
+msgstr Xfce'nin kaynak koddan kurulumu için en kolay yöntem ulink 
url=\http://www.xfce.org/archive/xfce-4.4.0/installers/\; type=\html\grafik 
yükleyicileri/ulink kullanmaktır. Belgelendirme ve yönergeler bulunmaktadır.
 
 #: ./xfce-utils.xml662(title)
 msgid Building from source
-msgstr 
+msgstr Kaynak koddan kurulum
 
 #: ./xfce-utils.xml664(para)
 msgid To compile Xfce manually, look at the Xfce site for ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\download 
locations/ulink.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 73%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 743cefe1b6d24884abadd91a60c23f1e07573700 (commit)
   from fcc170824374d7e7a01511fc9432d566b624855d (commit)

commit 743cefe1b6d24884abadd91a60c23f1e07573700
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:07:49 2011 +0100

l10n: Updated Turkish (tr) translation to 73%

New status: 130 messages complete with 3 fuzzies and 45 untranslated.

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

 doc/manual/po/tr.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index c3c48ac..f60e637 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -551,7 +551,7 @@ msgstr Kaynak koddan kurulum
 
 #: ./xfce-utils.xml664(para)
 msgid To compile Xfce manually, look at the Xfce site for ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\download 
locations/ulink.
-msgstr 
+msgstr Xfce'yi kendiniz derlemek için ulink 
url=\http://xfce.org/index.php?page=download\; type=\html\indirme 
adresleri/ulink bağlantısını takip edebilirsiniz.
 
 #: ./xfce-utils.xml672(programlisting)
 #, no-wrap
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 76%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to fe0cb781138cee203abe58fced2c5aad3f46589e (commit)
   from 743cefe1b6d24884abadd91a60c23f1e07573700 (commit)

commit fe0cb781138cee203abe58fced2c5aad3f46589e
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:26:12 2011 +0100

l10n: Updated Turkish (tr) translation to 76%

New status: 136 messages complete with 2 fuzzies and 40 untranslated.

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

 doc/manual/po/tr.po |   13 ++---
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index f60e637..d275ec4 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -585,16 +585,15 @@ msgstr SVN'yi kullanmak
 
 #: ./xfce-utils.xml702(para)
 msgid The latest development sources for Xfce 4 are available from subversion 
(SVN).
-msgstr 
+msgstr Xfce 'ün son geliştirme sürümlerine subversion (SVN) ile 
ulaşabilirsiniz.
 
 #: ./xfce-utils.xml706(para)
 msgid Look ulink 
url=\http://xfce.org/index.php?page=documentationamp;lang=en#install\; 
type=\html\here/ulink for information on how to obtain the latest 
development updates from SVN. You can also browse the SVN tree through a web 
interface.
 msgstr 
 
 #: ./xfce-utils.xml716(title)
-#, fuzzy
 msgid Additional software
-msgstr Ek yazılım
+msgstr İlave yazılımlar
 
 #: ./xfce-utils.xml718(para)
 msgid The ulink url=\http://goodies.xfce.org\; type=\html\Xfce 
Goodies/ulink project collects third-party contributions for Xfce. There are 
some excellent panel plugins available that greatly enhance the functionality 
of Xfce.
@@ -602,11 +601,11 @@ msgstr 
 
 #: ./xfce-utils.xml724(para)
 msgid ulink url=\http://spuriousinterrupt.org/projects/xfmedia/\; 
type=\html\Xfmedia/ulink is a lightweight media player for Xfce, based on 
the xine engine.
-msgstr 
+msgstr ulink url=\http://spuriousinterrupt.org/projects/xfmedia/\; 
type=\html\Xfmedia/ulink, xine motoru kullanan Xfce için hazırlanmış bir 
medya oynatıcısıdır.
 
 #: ./xfce-utils.xml730(para)
 msgid ulink url=\http://terminal.os-cillation.com/\; 
type=\html\Terminal/ulink is an easy to use terminal emulator for the Xfce 
Desktop Environment. It contains all feature you would expect from a modern 
terminal emulator.
-msgstr 
+msgstr ulink url=\http://terminal.os-cillation.com/\; 
type=\html\Terminal/ulink, Xfce masaüstü ortamı için kullanımı kolay bir 
teminal öykünücüsüdür.
 
 #: ./xfce-utils.xml741(title)
 msgid Copyright and Licences
@@ -618,7 +617,7 @@ msgstr 
 
 #: ./xfce-utils.xml748(para)
 msgid Three different licenses are used in the Xfce 4 project: link 
linkend=\BSD\BSD/link, link linkend=\LGPL\LGPL/link and link 
linkend=\GPL\GPL/link.
-msgstr 
+msgstr Xfce projesi için 3 farklı lisans kullanılmaktadır: link 
linkend=\BSD\BSD/link, link linkend=\LGPL\LGPL/link ve link 
linkend=\GPL\GPL/link.
 
 #: ./xfce-utils.xml752(para)
 msgid Please, refer to the COPYING files included in the packages for the 
licensing terms of the separate Xfce 4 components.
@@ -638,7 +637,7 @@ msgstr benedikt.meu...@unix-ag.uni-siegen.de
 
 #: ./xfce-utils.xml798(releaseinfo)
 msgid This manual describes the @PACKAGE_NAME@ package, version 
@PACKAGE_VERSION@.
-msgstr 
+msgstr Bu kılavuz dosyası @PACKAGE_NAME@ paketinin @PACKAGE_VERSION@ sürümü 
hakkındadır.
 
 #: ./xfce-utils.xml800(title)
 msgid Xfce Utilities and Scripts
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 76%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 7d70514490f9a9a846e0c65712468dd3375825ce (commit)
   from fe0cb781138cee203abe58fced2c5aad3f46589e (commit)

commit 7d70514490f9a9a846e0c65712468dd3375825ce
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:29:37 2011 +0100

l10n: Updated Turkish (tr) translation to 76%

New status: 137 messages complete with 2 fuzzies and 39 untranslated.

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

 doc/manual/po/tr.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index d275ec4..af1a37b 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -564,7 +564,7 @@ msgstr 
 
 #: ./xfce-utils.xml678(para)
 msgid Xfce @PACKAGE_VERSION@ depends on pkg-config and GTK+ gt;= 2.6. If you 
installed these from a binary package, make sure you have the corresponding 
filename-dev/filename packages installed as well.
-msgstr 
+msgstr Xfce @PACKAGE_VERSION@ pkg-config ve GTK+ gt;= 2.6 sürümlerine 
ihtiyaç duyar. Eğer bbunların ikilik paketlerini yüklemişseniz 
filename-dev/filename  paketlerini de kurduğunuzdan emin olun.
 
 #: ./xfce-utils.xml683(para)
 msgid Optionally you can install librsvg gt;= 2.2, for SVG icon support, 
libstartup-notification, to have a busy cursor when loading applications that 
support this standard and dbus for enhanced functionality, mainly in Thunar and 
xfdesktop.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 80%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to dbae03aa85a8a20c5ace68f6c27c80bff98f3a7a (commit)
   from 7d70514490f9a9a846e0c65712468dd3375825ce (commit)

commit dbae03aa85a8a20c5ace68f6c27c80bff98f3a7a
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:44:23 2011 +0100

l10n: Updated Turkish (tr) translation to 80%

New status: 143 messages complete with 2 fuzzies and 33 untranslated.

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

 doc/manual/po/tr.po |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index af1a37b..c1003d1 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -589,7 +589,7 @@ msgstr Xfce 'ün son geliştirme sürümlerine subversion 
(SVN) ile ulaşabilir
 
 #: ./xfce-utils.xml706(para)
 msgid Look ulink 
url=\http://xfce.org/index.php?page=documentationamp;lang=en#install\; 
type=\html\here/ulink for information on how to obtain the latest 
development updates from SVN. You can also browse the SVN tree through a web 
interface.
-msgstr 
+msgstr SVN'den son geliştirme güncellemelerini nasıl edineceğinizi öğrenmek 
için ulink 
url=\http://xfce.org/index.php?page=documentationamp;lang=en#install\; 
type=\html\bu adrese/ulink başvurabilirsiniz. SVN ağacını web arayüzünden 
de gezebilirsiniz.
 
 #: ./xfce-utils.xml716(title)
 msgid Additional software
@@ -597,7 +597,7 @@ msgstr İlave yazılımlar
 
 #: ./xfce-utils.xml718(para)
 msgid The ulink url=\http://goodies.xfce.org\; type=\html\Xfce 
Goodies/ulink project collects third-party contributions for Xfce. There are 
some excellent panel plugins available that greatly enhance the functionality 
of Xfce.
-msgstr 
+msgstr ulink url=\http://goodies.xfce.org\; type=\html\Xfce 
Goodies/ulink projesi Xfce için üçüncü parti katkıları bir araya getirir. 
Xfce'nin fonksiyonelliğini arttıran bazı harika panel eklentilerini burada 
bulabilirsiniz.
 
 #: ./xfce-utils.xml724(para)
 msgid ulink url=\http://spuriousinterrupt.org/projects/xfmedia/\; 
type=\html\Xfmedia/ulink is a lightweight media player for Xfce, based on 
the xine engine.
@@ -621,7 +621,7 @@ msgstr Xfce projesi için 3 farklı lisans kullanılmaktadır: 
link linkend=\
 
 #: ./xfce-utils.xml752(para)
 msgid Please, refer to the COPYING files included in the packages for the 
licensing terms of the separate Xfce 4 components.
-msgstr 
+msgstr Her Xfce 4 bileşeninin lisans bilgilerini paketindeki COPYING 
dosyasında bulabilirsiniz.
 
 #: ./xfce-utils.xml767(year)
 msgid 2004
@@ -689,7 +689,7 @@ msgstr 
 
 #: ./xfce-utils.xml879(para)
 msgid To customize the behaviour of applicationstartxfce4/application, 
copy the file filename${sysconfdir}/xdg/xfce4/xinitrc/filename to your 
personal filename~/.config/xfce4//filename directory and edit that file. If 
you install from source, filename${sysconfdir}/filename defaults to 
filename/usr/local/etc/filename; for binary packages it is usually set to 
filename/etc/filename.
-msgstr 
+msgstr applicationstartxfce4/application'ün davranışını özelleştirmek 
için filename${sysconfdir}/xdg/xfce4/xinitrc/filename dosyasını 
filename~/.config/xfce4//filename dizinine kopyalayın ve isteğinize göre 
düzenleyin. Eğer kurulumu kaynak koddan yapmışsanız 
filename${sysconfdir}/filename değişkeni 
filename/usr/local/etc/filename dizinini, ikilik paketten kurulum 
yapmışsanız filename/etc/filename dizinini gösterecektir.
 
 #: ./xfce-utils.xml889(para)
 msgid With the inclusion of a session manager in Xfce 4.2, the preferred way 
to change startup behaviour is by using the \Save session\ option in the 
logout dialog.
@@ -721,11 +721,11 @@ msgstr xfce-utils hakkında
 
 #: ./xfce-utils.xml935(para)
 msgid application@PACKAGE_NAME@/application was written by Jasper 
Huijsmans (emailjas...@xfce.org/email), Olivier Fourdan 
(emailfour...@xfce.org/email) and Benedikt Meurer 
(emailbe...@xfce.org/email). To find more information, visit the ulink 
url=\http://www.xfce.org\; type=\http\Xfce web site/ulink.
-msgstr 
+msgstr application@PACKAGE_NAME@/application uygulaması Jasper Huijsmans 
(emailjas...@xfce.org/email), Olivier Fourdan 
(emailfour...@xfce.org/email) ve Benedikt Meurer 
(emailbe...@xfce.org/email) tarafından yazılmıştır. Daha fazla bilgi ulink 
url=\http://www.xfce.org\; type=\http\Xfce internet adresinde/ulink 
bulunabilir.
 
 #: ./xfce-utils.xml944(para)
 msgid To report a bug or make a suggestion regarding this application or this 
manual, please use the bug tracking system at ulink 
url=\http://bugzilla.xfce.org/\; 
type=\http\http://bugzilla.xfce.org//ulink.
-msgstr 
+msgstr Bu uygulama veya belgelendirme için bir hata raporlamak ya da öneride 
bulunmak için lütfen ulink url=\http://bugzilla.xfce.org/\; 
type=\http\http://bugzilla.xfce.org//ulink adresindeki hata takip 
sistemini kullanın.
 
 #: ./xfce-utils.xml951(para)
 msgid If you have questions about the use or installation of this package, 
ask on the ulink 

[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 80%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 482f9b06760cf88bc2f1efa40af8dd60a3eb7535 (commit)
   from dbae03aa85a8a20c5ace68f6c27c80bff98f3a7a (commit)

commit 482f9b06760cf88bc2f1efa40af8dd60a3eb7535
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:48:24 2011 +0100

l10n: Updated Turkish (tr) translation to 80%

New status: 144 messages complete with 2 fuzzies and 32 untranslated.

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

 doc/manual/po/tr.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index c1003d1..0b20223 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -729,7 +729,7 @@ msgstr Bu uygulama veya belgelendirme için bir hata 
raporlamak ya da öneride
 
 #: ./xfce-utils.xml951(para)
 msgid If you have questions about the use or installation of this package, 
ask on the ulink url=\http://lunar-linux.org/mailman/listinfo/xfce\; 
type=\http\xfce/ulink mailing list. Development discussion takes place on 
the ulink url=\http://lunar-linux.org/mailman/listinfo/xfce4-dev\; 
type=\http\xfce4-dev/ulink mailing list.
-msgstr 
+msgstr Bu paketin kurulumu veya kullanımı hakkında sorularınız olursa ulink 
url=\http://lunar-linux.org/mailman/listinfo/xfce\; type=\http\xfce/ulink 
 listesine yazabilirsiniz. Geliştirme hakkındaki tartışmalar ulink 
url=\http://lunar-linux.org/mailman/listinfo/xfce4-dev\; 
type=\http\xfce4-dev/ulink listesi üzerinden sürdürülmektedir.
 
 #. Put one translator per line, in the form of NAME EMAIL, YEAR1, YEAR2
 #: ./xfce-utils.xml0(None)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 82%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 7facec97b0c7162c5e5a32bc28dd74ef096bdfec (commit)
   from 482f9b06760cf88bc2f1efa40af8dd60a3eb7535 (commit)

commit 7facec97b0c7162c5e5a32bc28dd74ef096bdfec
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 00:58:27 2011 +0100

l10n: Updated Turkish (tr) translation to 82%

New status: 147 messages complete with 2 fuzzies and 29 untranslated.

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

 doc/manual/po/tr.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 0b20223..aa702f5 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -685,7 +685,7 @@ msgstr startxfce4
 
 #: ./xfce-utils.xml872(para)
 msgid The applicationstartxfce4/application is a convenient script to 
start an Xfce 4 session from the console. It will give you a session with two 
panels and with the desktop manager and window manager running.
-msgstr 
+msgstr applicationstartxfce4/application Xfce 4 oturumunu konsoldan 
başlatmak için uygun bir betiktir. Size iki paneli olan, masaüstü yöneticisi ve 
pancere yöneticisi çalışan bir oturum sunar.
 
 #: ./xfce-utils.xml879(para)
 msgid To customize the behaviour of applicationstartxfce4/application, 
copy the file filename${sysconfdir}/xdg/xfce4/xinitrc/filename to your 
personal filename~/.config/xfce4//filename directory and edit that file. If 
you install from source, filename${sysconfdir}/filename defaults to 
filename/usr/local/etc/filename; for binary packages it is usually set to 
filename/etc/filename.
@@ -701,11 +701,11 @@ msgstr xfhelp4
 
 #: ./xfce-utils.xml900(para)
 msgid This script is used to open the local Xfce 4 documentation in a 
browser. By default it will try to use applicationexo-open/application from 
the libexo library. You can change the preferred browser from the Xfce Settings 
Manager dialog. If applicationexo-open/application is not available, the 
script will try a number of well-known browsers, like firefox, galeon or 
konqueror, but you can change that by setting the $BROWSER environment 
variable.
-msgstr 
+msgstr Bu betik yerel bir Xfce 4 belgelendirmesini tarayıcınızla açmanıza 
imkan verir. Öntanımlı olarak applicationexo-open/application kullanmayı 
deneyecektir. Tercih ettiğiniz başka bir tarayıcı varsa bunu Xfce Yapılandırma 
Yöneticisinden değiştirebilirsiniz. Betik eğer 
applicationexo-open/application'u bulamazsa çok bilinen  firefox, galeon 
veya konqueror gibi tarayıcıları deneyecektir. Hangicisi kullanmasını 
istiyorsanız onu $BROWSER çevre değişkenine atayabilirsiniz.
 
 #: ./xfce-utils.xml911(para)
 msgid If there is documentation installed in the language of your current 
locale, xfhelp4 will open that instead of the default English documentation.
-msgstr 
+msgstr Eğer sistem yerelinize uygun bir belgelendirme yüklemişseniz, xfhelp4 
öntanımlı İngilizce belgelendirme yerine onu açacaktır.
 
 #: ./xfce-utils.xml920(term)
 msgid xflock4
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 85%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 4d62c24caf4f84eccbc62cffb21beddc59bb53e1 (commit)
   from 7facec97b0c7162c5e5a32bc28dd74ef096bdfec (commit)

commit 4d62c24caf4f84eccbc62cffb21beddc59bb53e1
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 01:15:30 2011 +0100

l10n: Updated Turkish (tr) translation to 85%

New status: 153 messages complete with 1 fuzzy and 24 untranslated.

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

 doc/manual/po/tr.po |   15 +++
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index aa702f5..942764e 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -245,9 +245,8 @@ msgid For more information, have a look at the ulink 
url=\xfce4-panel.html\
 msgstr Daha fazla bilgi için ulink url=\xfce4-panel.html\ 
type=\html\panel klavuzu/ulinkna bakabilirsiniz.
 
 #: ./xfce-utils.xml269(para)
-#, fuzzy
 msgid The desktop manager provides the desktop background image and two menus 
when you click on the desktop background. Optionally, it can show icons on the 
desktop, either for minimized applications or for files in the 
filename~/Desktop/filename folder.
-msgstr Masaüstü arkaplanına tıkladığınızda masaüstü yöneticisi arkaplan resmi 
ve iki menü bulundurmaktadır. İsteğe bağlı olarak küçültülmüş uygulamalar ya da 
filename~/Desktop/filename'taki dosyalar için ikonlar gösterebilir.
+msgstr 
 
 #: ./xfce-utils.xml275(para)
 msgid The right mouse button opens a menu that allows you to start 
applications. Look at the ulink url=\xfdesktop.html\ 
type=\html\manual/ulink to find out how to change the menu contents.
@@ -275,7 +274,7 @@ msgstr Ortak Görevler
 
 #: ./xfce-utils.xml324(para)
 msgid This section will explain how to perform several common tasks to 
quickly get you started working with Xfce 4. Because that is what Xfce 4 is 
designed for, to allow you to get work done.
-msgstr 
+msgstr Bu bölüm Xfce 4 ile çalışmaya başladığınızda bazı işlemleri nasıl 
yapacağınızı anlatır. Xfce 4 sizin işinizi yapabilmeniz için tasarlanmıştır.
 
 #: ./xfce-utils.xml330(title)
 msgid Running programs
@@ -331,7 +330,7 @@ msgstr 
 
 #: ./xfce-utils.xml394(para)
 msgid If you want maximized windows to not cover the entire screen you can 
set workspace margins from the settings manager dialog (see below).
-msgstr 
+msgstr Eğer pencerenizi tüm ekranı kaplamayacak şekilde en büyük genişlikte 
kullanmak isterseniz çalışma alanı sınırlarınızı yapılandırma yöneticisinden 
ayarlayabilirsiniz (aşağıda anlatılmaktadır).
 
 #: ./xfce-utils.xml402(term)
 msgid Application management
@@ -339,11 +338,11 @@ msgstr Uygulama yönetimi
 
 #: ./xfce-utils.xml404(para)
 msgid To find out what applications are currently running you can look at the 
task list on the top panel. Clicking on a button in the task list will focus 
the associated application. Clicking again will hide it.
-msgstr 
+msgstr Hangi süreçlerin çalıştığını üst paneldeki görev listesinde 
görebilirsiniz. Görev listesinde bir düğme üzerine tıklamak ona odaklanmanızı 
sağlayacaktır. Yeniden tıkladığjnızda ise uygulamayı gizlemiş olursunuz.
 
 #: ./xfce-utils.xml409(para)
 msgid When you click with the middle mouse button on the desktop background a 
list of windows is shown, ordered by workspace. You can activate the 
application or change workspaces by choosing the appropriate menu entry.
-msgstr 
+msgstr Masaüstü arkaplanında farenin orta tuşuna tıklamak çalışma alanına 
göre sıralanmış pencerelerin gösterilmesini sağlayacaktır. Bir uygulamayı aktif 
etmek ya da çalışma alanını değiştirmek için uygun menü girdisini 
seçebilirsiniz.
 
 #: ./xfce-utils.xml418(term)
 msgid Workspaces
@@ -355,7 +354,7 @@ msgstr 
 
 #: ./xfce-utils.xml427(para)
 msgid To add or remove workspaces you can use the middle click desktop menu 
or the settings dialog (see below).
-msgstr 
+msgstr Çalışma alanı eklemek veya çıkarmak için masaüstü menüsünde orta tuşa 
tıklamak ya da yapılandırma penceresini kullanmak mümkündür (aşağıda 
anlatılmaktadır).
 
 #: ./xfce-utils.xml437(title)
 msgid Using the settings manager dialog
@@ -363,7 +362,7 @@ msgstr Ayar yöneticisini kullan
 
 #: ./xfce-utils.xml439(para)
 msgid The settings manager dialog provides access to the global preferences 
of many Xfce applications. You can run it by pressing its launcher on the 
panel, from the desktop mouse menu or by running 
applicationxfce-setting-show/application.
-msgstr 
+msgstr Yapılandırma yöneticisi bir çok Xfce uygulamasının genel ayarlarına 
erişim sunar. Paneldeki yerinden veya masaüstünde farenin orta tuşuna 
tıklayarak çalıştırabileceğiniz gibi 
applicationxfce-setting-show/application uygulaması ile de 
çalıştırabilirsiniz.
 
 #: ./xfce-utils.xml445(para)
 msgid Dialogs to change many aspects of the Xfce Desktop Environment are 
available. See the separate manuals of the Xfce components for more 
information. It may be interesting to have a quick look at all the 

[Xfce4-commits] thunar:jannis/desktop-extensions Creating branch jannis/desktop-extensions

2011-03-25 Thread Jannis Pohlmann
Updating branch refs/heads/jannis/desktop-extensions
 as new branch
 to 206468dd3c4844b706d2afbc3cf167528e419831 (commit)

Branches are created implicitly by pushing. This mail only exists to 
let you know that there was code pushed to 

  refs/heads/jannis/desktop-extensions

for the first time. Mails for the commits that lead to the creation 
of the branch will follow after this mail.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:jannis/desktop-extensions Add skeletons for ThunarxDesktopView and ThunarxDesktopViewProvider.

2011-03-25 Thread Jannis Pohlmann
Updating branch refs/heads/jannis/desktop-extensions
 to 206468dd3c4844b706d2afbc3cf167528e419831 (commit)
   from b2462b86611db859714bfda516e4e4b617acba14 (commit)

commit 206468dd3c4844b706d2afbc3cf167528e419831
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sat Mar 26 01:28:05 2011 +0100

Add skeletons for ThunarxDesktopView and ThunarxDesktopViewProvider.

 thunarx/Makefile.am |4 +
 thunarx/thunarx-desktop-view-provider.c |  150 +++
 thunarx/thunarx-desktop-view-provider.h |   71 +
 thunarx/thunarx-desktop-view.c  |  171 +++
 thunarx/thunarx-desktop-view.h  |   82 +++
 5 files changed, 478 insertions(+), 0 deletions(-)

diff --git a/thunarx/Makefile.am b/thunarx/Makefile.am
index e6d052c..820f802 100644
--- a/thunarx/Makefile.am
+++ b/thunarx/Makefile.am
@@ -10,6 +10,8 @@ INCLUDES =
\
 libthunarx_headers =   \
thunarx.h   \
thunarx-config.h\
+   thunarx-desktop-view-provider.h \
+   thunarx-desktop-view.h  \
thunarx-file-info.h \
thunarx-menu-provider.h \
thunarx-preferences-provider.h  \
@@ -32,6 +34,8 @@ lib_LTLIBRARIES = 
\
 libthunarx_2_la_SOURCES =  \
$(libthunarx_headers)   \
thunarx-config.c\
+   thunarx-desktop-view-provider.c \
+   thunarx-desktop-view.c  \
thunarx-file-info.c \
thunarx-menu-provider.c \
thunarx-preferences-provider.c  \
diff --git a/thunarx/thunarx-desktop-view-provider.c 
b/thunarx/thunarx-desktop-view-provider.c
new file mode 100644
index 000..e9ab453
--- /dev/null
+++ b/thunarx/thunarx-desktop-view-provider.c
@@ -0,0 +1,150 @@
+/* vi:set et ai sw=2 sts=2 ts=2: */
+/*-
+ * Copyright (c) 2011 Jannis Pohlmann jan...@xfce.org
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
+ * GNU Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General 
+ * Public License along with this library; if not, write to the 
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include thunarx/thunarx-desktop-view-provider.h
+#include thunarx/thunarx-desktop-view.h
+#include thunarx/thunarx-private.h
+
+
+
+GType
+thunarx_desktop_view_provider_get_type (void)
+{
+  static volatile gsize type__volatile = 0;
+  GType type;
+  
+  if (g_once_init_enter (type__volatile))
+{
+  type = g_type_register_static_simple (G_TYPE_INTERFACE,
+I_(ThunarxDesktopViewProvider),
+sizeof 
(ThunarxDesktopViewProviderIface),
+NULL,
+0,
+NULL,
+0);
+
+  g_type_interface_add_prerequisite (type, G_TYPE_OBJECT);
+
+  g_once_init_leave (type__volatile, type);
+}
+
+  return type__volatile;
+}
+
+
+
+/**
+ * thunarx_desktop_view_provider_get_view_infos:
+ * @provider : a #ThunarxDesktopViewProvider.
+ * 
+ * Returns a list of #ThunarxDesktopViewInfo!s for the desktop views 
+ * @provider is offering.
+ *
+ * The caller is responsible to free the returned list of infos
+ * using something like this when no longer needed:
+ * informalexampleprogramlisting
+ * g_list_foreach (list, (GFunc) g_object_unref, NULL);
+ * g_list_free (list);
+ * /programlisting/informalexample
+ *
+ * Return value: a list of #ThunarxDesktopViewInfo!s for the desktop
+ *   views that @provider is offering.
+ **/
+GList *
+thunarx_desktop_view_provider_get_view_infos 

[Xfce4-commits] thunar:jannis/port-to-udev Deleting branch jannis/port-to-udev

2011-03-25 Thread well, not really
Deleting branch refs/heads/jannis/port-to-udev

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


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 88%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to deb2dda2aba2bc5f1fa915a4467a01749fe2558c (commit)
   from 4d62c24caf4f84eccbc62cffb21beddc59bb53e1 (commit)

commit deb2dda2aba2bc5f1fa915a4467a01749fe2558c
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 01:46:46 2011 +0100

l10n: Updated Turkish (tr) translation to 88%

New status: 158 messages complete with 0 fuzzies and 20 untranslated.

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

 doc/manual/po/tr.po |   13 ++---
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 942764e..859d78a 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -236,9 +236,8 @@ msgid The top panel shows a graphical pager with a 
miniature view of all worksp
 msgstr 
 
 #: ./xfce-utils.xml253(para)
-#, fuzzy
 msgid The bottom panel contains several application launchers and a clock. 
You can right-click on any panel item to get a menu that allows you to change 
its properties, add or remove new items or to change the properties of the 
panel itself.
-msgstr Alt panel çeşitli uygulama başlatıcılar ve bir saat içerir. Herhangi 
bir panel elemenına sağ tıklayarak özelliklerini değiştirebilir, yeni öğe 
ekleyip kalırabilir ya da ya da panelin kendi özelliklerini 
değiştirebilirsiniz.
+msgstr 
 
 #: ./xfce-utils.xml259(para)
 msgid For more information, have a look at the ulink 
url=\xfce4-panel.html\ type=\html\panel manual/ulink.
@@ -246,7 +245,7 @@ msgstr Daha fazla bilgi için ulink 
url=\xfce4-panel.html\ type=\html\pan
 
 #: ./xfce-utils.xml269(para)
 msgid The desktop manager provides the desktop background image and two menus 
when you click on the desktop background. Optionally, it can show icons on the 
desktop, either for minimized applications or for files in the 
filename~/Desktop/filename folder.
-msgstr 
+msgstr Masaüstü yöneticisi, arkaplana tıkladığınızda size masaüstü arkaplan 
resmi ve iki menü sunar. Seçimlik olarak masaüstünde simgeler de gösterebilir. 
Bunlar küçültülmüş uygulamalar olabileceği gibi filename~/Desktop/filename  
dizinindeki dosyalar da olabilirler.
 
 #: ./xfce-utils.xml275(para)
 msgid The right mouse button opens a menu that allows you to start 
applications. Look at the ulink url=\xfdesktop.html\ 
type=\html\manual/ulink to find out how to change the menu contents.
@@ -258,7 +257,7 @@ msgstr Farenin orta tuşu (veya Shift + sol tıklama) halen 
çalışan bütün
 
 #: ./xfce-utils.xml292(para)
 msgid The window manager is responsible for placing the windows on the screen 
and provides the window borders and decorations. It allows you to move windows 
around by draggin the titlebar and provides title bar buttons, for example to 
close, minimize or maximize a window. Look at the ulink url=\xfwm4.html\ 
type=\html\manual/ulink for a full explanation of the window manager 
settings.
-msgstr 
+msgstr Pencere yöneticisi pencerelerin ekranda yeralmasından, pencere 
sınırlarından ve yerleşimlerinden sorumludur. Onun sayesinde pencereleri başlık 
çubuğundan tutarak kaydırabilirsiniz. Pencereleri kapatmak, aşağı küçültmek ve 
büyütmek işlemlerini yapmak için üç düğmeyi de pencere yöneticisi sağlar. 
Ayrıntılı bilgiyi ulink url=\xfwm4.html\ type=\html\kılavuz/ulink 
dosyasında bulabilirsiniz.
 
 #: ./xfce-utils.xml304(term)
 msgid Settings Manager
@@ -350,7 +349,7 @@ msgstr Çalışma alanları
 
 #: ./xfce-utils.xml420(para)
 msgid You can change workspaces by clicking on them in the graphical pager, 
either on the taskbar or on the panel. Pressing 
keycapCtrl+Alt+LeftArrow/keycap or keycapCtrl+Alt+RightArrow/keycap 
will cycle through the workspaces. Using the mousewheel over the pager or the 
desktop background has the same effect.
-msgstr 
+msgstr Çalışma alanını grafik sayfalayıcıya tıklayarak, görev çubuğundan veya 
panelden değiştirebilirsiniz. keycapCtrl+Alt+SolTuş/keycap or 
keycapCtrl+Alt+SağTuş/keycap kısa yolları çalışma alanları arasıda 
gezinmenize imkan verir. Sayfalayıcı üzerinde veya masaüstü arkaplanında 
farenin tekerleğini kullanmakda aynı etkiyi yapacaktır.
 
 #: ./xfce-utils.xml427(para)
 msgid To add or remove workspaces you can use the middle click desktop menu 
or the settings dialog (see below).
@@ -398,7 +397,7 @@ msgstr libxfcegui4
 
 #: ./xfce-utils.xml485(para)
 msgid Widget library and X Window System interaction.
-msgstr 
+msgstr Widget kitaplığı ve X Pencere Sistemi etkileşimi.
 
 #: ./xfce-utils.xml490(term)
 msgid libexo
@@ -462,7 +461,7 @@ msgstr xfdesktop
 
 #: ./xfce-utils.xml561(para)
 msgid Desktop background manager. This program sets the background image 
and/or color, and provides a root window menu, a menu panel plugin and a menu 
editor. Optionally, it can show icons on the desktop as well.
-msgstr 
+msgstr Masaüstü arkaplan yöneticisi. Bu program arkaplan resmini ve/veya 
rengini ayarlar, bir kök pencere menüsü, bir panel eklentisi ve bir menü 
düzenleyici sunar. İsterseniz masaüstünde simgeler de 

[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Turkish (tr) translation to 91%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 5510c40a51a66f91c3c5fe22fef25a72482c7c23 (commit)
   from deb2dda2aba2bc5f1fa915a4467a01749fe2558c (commit)

commit 5510c40a51a66f91c3c5fe22fef25a72482c7c23
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 01:54:52 2011 +0100

l10n: Updated Turkish (tr) translation to 91%

New status: 162 messages complete with 0 fuzzies and 16 untranslated.

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

 doc/manual/po/tr.po |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 859d78a..f74c08b 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -558,7 +558,7 @@ msgstr ./configure amp;amp; make amp;amp; make install
 
 #: ./xfce-utils.xml669(para)
 msgid Building the packages should be a simple matter of unpacking the 
tarballs and, from the top source directory, typing: placeholder-1/ Some 
package will have extra configure options available. You can find them by 
typing command./configure option--help/option/command.
-msgstr 
+msgstr Paketleri derlemek basitçe sıkıştırılmış dosyaları açarak  
placeholder-1/ yazmaktan ibarettir. Bazı paketlerin ilave yapılandırma 
parametrelerine de ihtiyaçları olabilir. Bunu command./configure 
option--help/option/command komutunu çalıştırarak öğrenebilrisiniz.
 
 #: ./xfce-utils.xml678(para)
 msgid Xfce @PACKAGE_VERSION@ depends on pkg-config and GTK+ gt;= 2.6. If you 
installed these from a binary package, make sure you have the corresponding 
filename-dev/filename packages installed as well.
@@ -611,7 +611,7 @@ msgstr Telif Hakları ve Lisanslar
 
 #: ./xfce-utils.xml743(para)
 msgid Xfce 4 is copyright copy; Olivier Fourdan 
(emailfour...@xfce.org/email). The different components are copyrighted by 
their respective authors.
-msgstr 
+msgstr Xfce 4'ün telif hakları Olivier Fourdan 
(emailfour...@xfce.org/email)'a aittir. Farklı bileşenlerin hakları kendi 
yazarlarına aittir.
 
 #: ./xfce-utils.xml748(para)
 msgid Three different licenses are used in the Xfce 4 project: link 
linkend=\BSD\BSD/link, link linkend=\LGPL\LGPL/link and link 
linkend=\GPL\GPL/link.
@@ -655,7 +655,7 @@ msgstr Çalıştır penceresini göster
 
 #: ./xfce-utils.xml830(para)
 msgid The run dialog allows the user to launch applications. Applications can 
be run in a Terminal emulator (Terminal by default, see xfterm4 script below). 
In a default Xfce environment, the Alt+F2 key combination will open the run 
dialog.
-msgstr 
+msgstr Çalıştırma kutusu kullanıcıların uygulama başlatmalarına olanak 
sağlar. Uygulamalar Terminal öykünücüsünden başlatılabilirler. Öntanımlı Xfce 
ortamında Alt+F2 tuş kombinasyonu çalıştırma kutusunu çalıştırır.
 
 #: ./xfce-utils.xml840(title)
 msgid About Dialog
@@ -671,7 +671,7 @@ msgstr Hazırlayanlar sayfasını için hakkında penceresini 
göster
 
 #: ./xfce-utils.xml857(para)
 msgid The About Dialog is used to display information about Xfce 4, including 
a list of components, a credits page for all people who helped to create Xfce 4 
and license information.
-msgstr 
+msgstr Hakkında penceresi Xfce 4 ve bileşenlerinin geliştiricileri ve lisans 
bilgileri hakkında bilgi vermek için kullanılır. 
 
 #: ./xfce-utils.xml866(title)
 msgid Scripts
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:xfce-4.8 l10n: Updated Turkish (tr) translation to 68%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 21dede3a98f68c9a2f76645e3b3a7233d36e648e (commit)
   from ada8c68977daec65c2cf8aa90e3a75b387222162 (commit)

commit 21dede3a98f68c9a2f76645e3b3a7233d36e648e
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 02:02:05 2011 +0100

l10n: Updated Turkish (tr) translation to 68%

New status: 136 messages complete with 1 fuzzy and 62 untranslated.

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

 doc/manual/po/tr.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 45f5728..e7d106f 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -173,7 +173,7 @@ msgstr 
 
 #: ./xfwm4.xml172(para)
 msgid A keyboard shortcut allows to switch the focus from a window to others 
: Hold Alt and then you can press Tab repeatedly untill you get to the window 
you want to focus. If you use it, you will see a small popup showing the 
application name, its icon and the window title. Also 
application@PACKAGE_NAME@/application will highlight the outline of the 
window that will receive the focus.
-msgstr 
+msgstr Alt ve Tab tuşlarını birlikte ard arda kullanarak odaklanmak 
istediğiniz pencereye ulaşabilirsiniz. Bu tuş kombinasyonunu kullandığınızda 
küçük bir pencerede uygulamanın adını, simgesini ve pencere başlığını 
görürsünüz. application@PACKAGE_NAME@/application uygulaması da 
odaklanacağınız pencereyi vurgulayacaktır.
 
 #. para
 #. If you want the panel, and apps that do not appear in the taskbar,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:xfce-4.8 l10n: Updated Turkish (tr) translation to 60%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to e656e25d93d3d4426d72fcad71ce14a5ad366e9e (commit)
   from 1302143310a3620c30d3dd42df9f7eefb0010c36 (commit)

commit e656e25d93d3d4426d72fcad71ce14a5ad366e9e
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 02:13:32 2011 +0100

l10n: Updated Turkish (tr) translation to 60%

New status: 67 messages complete with 1 fuzzy and 43 untranslated.

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

 doc/manual/po/tr.po |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 2f85cb4..33ae13b 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -202,7 +202,7 @@ msgstr Menünün yapılandırma dosyası olan 
filenamexfce-applications.menu
 
 #: ./xfdesktop.xml185(para)
 msgid The previous menu editor is not available anymore. However you can 
customize your menu by copying filenamexfce-applications.menu/filename to 
filename$XDG_CONFIG_HOME/menus/filename and by modifying it with a text 
editor such as applicationmousepad/application or 
applicationgedit/application. Please remember that the file should be UTF-8 
encoded. For more information on menu editing, please see ulink 
url=\http://wiki.xfce.org/howto/customize-menu\; type=\http\the Xfce 
Wiki/ulink.
-msgstr 
+msgstr Eski menü düzenleyici artık bulunmasa da 
filenamexfce-applications.menu/filename dosyasını 
filename$XDG_CONFIG_HOME/menus/filename dizinine kopyalayarak 
applicationmousepad/application ya da applicationgedit/application gibi 
bir editörle düzenleyerek menüzünü özelleştirebilirsiniz. Dosyanın UTF-8 ile 
kodlanması gerektiğini unutmayın. Menü düzenlemek hakkında detaylı bilgi ulink 
url=\http://wiki.xfce.org/howto/customize-menu\; type=\http\Xfce 
Wiki/ulinksinde bulunmaktadır.
 
 #: ./xfdesktop.xml197(para)
 msgid Further customisation can be achived by creating ulink 
url=\http://standards.freedesktop.org/desktop-entry-spec/latest/\; 
type=\http\desktop entries/ulink in 
filename$XDG_DATA_HOME/applications/filename to hide, modify or add entries 
in the menu.
@@ -291,7 +291,7 @@ msgstr 
 #. To be confirmed as I don't have multiscreen
 #: ./xfdesktop.xml334(para)
 msgid application@PACKAGE_NAME@/application supports xinerama and 
multiscreen modes. In multiscreen mode, the Background tab shows one tab per 
screen.
-msgstr 
+msgstr application@PACKAGE_NAME@/application uygulaması xinerama ve çoklu 
ekran modlarını destekler. Çoklu ekran modunda Background sekmesi her ekran 
için bir sekme gösterir.
 
 #: ./xfdesktop.xml342(term)
 msgid Colors
@@ -299,11 +299,11 @@ msgstr Renkler
 
 #: ./xfdesktop.xml344(para)
 msgid The color style is one of four options in dropping list: a solid color, 
horizontal gradient, vertical gradient, or transparent.
-msgstr 
+msgstr Renk sitili dört farklı seçenekten biri olabilir: düz renk, yatay 
değişim, dikey değişim ve şeffaf.
 
 #: ./xfdesktop.xml350(para)
 msgid The emphasis\Transparent\/emphasis option, when you use a colored 
background without backdrop image, allows you to see the windows that are under 
the transparent desktop window. This requires an activated compositor.
-msgstr 
+msgstr Şeffaf seçeneğinde, eğer bir duvar kağıdı olmadan renkli bir masaüstü 
kullanıyorsanız şeffaf pencerenin altındaki pencereleri görebilrisiniz.
 
 #: ./xfdesktop.xml357(para)
 msgid Two colored buttons allow you to choose the colors for your desktop. 
When the solid color option is selected, only the first color is available. 
When either of the gradient options are selected, both the first and second 
colors are available. Both of the color buttons open a color chooser dialog:
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:xfce-4.8 l10n: Updated Turkish (tr) translation to 62%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 421cb6738b8e13541f8be7372049dbd932e5f1d9 (commit)
   from e656e25d93d3d4426d72fcad71ce14a5ad366e9e (commit)

commit 421cb6738b8e13541f8be7372049dbd932e5f1d9
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 02:19:04 2011 +0100

l10n: Updated Turkish (tr) translation to 62%

New status: 69 messages complete with 0 fuzzies and 42 untranslated.

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

 doc/manual/po/tr.po |7 +++
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 33ae13b..6b1e575 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -327,7 +327,7 @@ msgstr 
 
 #: ./xfdesktop.xml403(para)
 msgid You can enter an HTML-style hexadecimal color value, or simply a color 
name, in the emphasis\Color Name\/emphasis entry.
-msgstr 
+msgstr HTML sitili bir hexadesimal renk kodu girebileceğiniz gibi basitçe 
emphasis\Renk Adı\/emphasis da yazabilirsiniz.
 
 #: ./xfdesktop.xml411(para)
 msgid The selected colors will fill the entire root window, and will remain 
visible through a transparent backdrop image.
@@ -392,7 +392,7 @@ msgstr Masaüstü Ayarları, Simgeler Sekmesi
 
 #: ./xfdesktop.xml539(phrase)
 msgid Shows the Icons tab of the Desktop Settings dialog
-msgstr 
+msgstr Masaüstü Ayarları penceresinin Simge sekmesini gösterir
 
 #: ./xfdesktop.xml549(term)
 msgid Appearance
@@ -447,9 +447,8 @@ msgid Miscellaneous
 msgstr Çeşitli
 
 #: ./xfdesktop.xml657(para)
-#, fuzzy
 msgid You can open the menu or window list from the commandline as well. This 
can be useful for keyboard shortcuts. To open the menu run the command 
application@PACKAGE_NAME@/applicationapplication--menu/application, and 
for the windowlist use 
application@PACKAGE_NAME@/applicationapplication--windowlist/application.
 To cause the current running instance to quit, run 
application@PACKAGE_NAME@/applicationapplication--quit/application.
-msgstr Menüyü ve pencere listesini komut satırından da açabilirsiniz. Bu 
kısayol tuşları için de faydalı olabilir. Komut satırından menüyü açmak için 
application@PACKAGE_NAME@/applicationapplication--menu/application, 
pencere listesi için 
application@PACKAGE_NAME@/applicationapplication--windowlist/application'i
 kullanın. Çalışan örneği kapatmak için ise 
application@PACKAGE_NAME@/applicationapplication--quit/application'i 
kullanabilirsiniz.
+msgstr 
 
 #: ./xfdesktop.xml668(title)
 msgid About application@PACKAGE_NAME@/application
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:xfce-4.8 l10n: Updated Turkish (tr) translation to 68%

2011-03-25 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to b62344c9fba48ea27542aa82340eecd64e95d6c7 (commit)
   from 4f3309b3f5bf0fae88e84857e6c531c30582e8ad (commit)

commit b62344c9fba48ea27542aa82340eecd64e95d6c7
Author: necdetyucel necdetyu...@gmail.com
Date:   Sat Mar 26 02:35:42 2011 +0100

l10n: Updated Turkish (tr) translation to 68%

New status: 67 messages complete with 4 fuzzies and 27 untranslated.

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

 doc/manual/po/tr.po |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/manual/po/tr.po b/doc/manual/po/tr.po
index 993959d..25a2f79 100644
--- a/doc/manual/po/tr.po
+++ b/doc/manual/po/tr.po
@@ -133,7 +133,7 @@ msgstr Çıkışta sor
 
 #: ./xfce4-session.xml139(para)
 msgid This option disables the logout confirmation dialog. Whether the 
session will be saved or not depends on whether you enabled the automatic 
saving of sessions on logout or not.
-msgstr 
+msgstr Bu seçenek çıkıştaki onaylama penceresini pasif hale getirir. Çıkışta 
oturumu kaydedip kaydetmeyeceği otomatik kayıt seçeneğinin durumuna bağlıdır.
 
 #: ./xfce4-session.xml148(title)
 msgid Advanced preferences
@@ -169,7 +169,7 @@ msgstr Uzaktaki uygulamaları yönet
 
 #: ./xfce4-session.xml189(para)
 msgid Allow the session manager to manage applications running on remote 
hosts. Since this option may constitute a security risk, by listening to a TCP 
port on your system, do not enable it unless you know what you are doing.
-msgstr 
+msgstr Oturum yöneticisinin uzak bilgisayarlardaki uygulamaları yönetmesine 
izin ver. Bu seçenek bilgisayarınızdaki bir TCP portunu dinleyeceğinden bazı 
güzenlik riskleri taşıyabilir. Ne yaptığınızı bilmiyorsanız aktif etmeyin.
 
 #: ./xfce4-session.xml193(para)
 msgid System administrators may want to disable this option globally using 
the session managers ulink url=\#xfsm-kiosk-mode\ type=\html\KIOSK 
capabilities/ulink.
@@ -197,7 +197,7 @@ msgstr application@PACKAGE_NAME@/application  
uygulamasının karşılama e
 
 #: ./xfce4-session.xml228(para)
 msgid On the left, the dialog shows a list of all installed engines. Select 
an engine, and you will see, if available, a preview and information about it. 
You can click on the guibuttonTest/guibutton button to see a demonstration 
of the selected splash screen engine.
-msgstr 
+msgstr Sol tarafta yüklenmiş bütün motorları göreceksiniz. Bir motoru 
seçtiğinizde, eğer mevcutsa, bir ön izleme ve hakkında kısa bilgi 
gösterilecektir. guibuttonTest/guibutton düğmesine tıkladığınızda bir ön 
izleme yapılacaktır.
 
 #: ./xfce4-session.xml234(para)
 msgid application@PACKAGE_NAME@/application provides three Splash themes 
engines by default. Their respective configuration options - if any - are 
available from the guibuttonConfigure/guibutton button.
@@ -213,7 +213,7 @@ msgstr 
 
 #: ./xfce4-session.xml253(para)
 msgid For example, lets say, you installed 
application@PACKAGE_NAME@/application into filename 
role=\directory\/usr/local/filename, your hostname is 
emphasismyhost/emphasis and your user account is named 
emphasismyuser/emphasis, then you would have to add the following line to 
your filenamesudoers/filename file (remember to use 
applicationvisudo/application to edit that file):
-msgstr 
+msgstr Örneğin, application@PACKAGE_NAME@/application uygulamasını 
filename role=\directory\/usr/local/filename dizinine yüklemişseniz ve 
kullanıcı adınız emphasismyuser/emphasis ise filenamesudoers/filename 
dosyasında (bu dosyayı düzenlemek için applicationvisudo/application 
kullanabilirsiniz) aşağıdaki gibi bir satır olacaktır:
 
 #: ./xfce4-session.xml260(programlisting)
 #, no-wrap
@@ -221,6 +221,8 @@ msgid 
 \n
 myuser myhost=/usr/local/lib/xfce4/session/xfsm-shutdown-helper\n
 msgstr 
+\n
+myuser myhost=/usr/local/lib/xfce4/session/xfsm-shutdown-helper\n
 
 #: ./xfce4-session.xml268(title)
 msgid Advanced
@@ -299,7 +301,6 @@ msgid ${sysconfdir}/xdg/xfce4/kiosk/kioskrc
 msgstr ${sysconfdir}/xdg/xfce4/kiosk/kioskrc
 
 #: ./xfce4-session.xml359(para)
-#, fuzzy
 msgid Kiosk mode configuration file. See ulink url=\#xfsm-kiosk-mode\next 
section/ulink for an explanation.
 msgstr Kiosk kipi yapılandırma dosyası. Açıklama için ulink 
url=\#xfsm-kiosk-mode\sonraki bölüm/ulinke bakınız.
 
@@ -328,7 +329,6 @@ msgid 
 msgstr 
 
 #: ./xfce4-session.xml392(title)
-#, fuzzy
 msgid Kiosk Mode
 msgstr Kiosk Kipi
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits