diff --git a/desktop/xfce/addon/component.xml b/desktop/xfce/addon/component.xml deleted file mode 100644 index 25d82a1437..0000000000 --- a/desktop/xfce/addon/component.xml +++ /dev/null @@ -1,3 +0,0 @@ - - desktop.xfce.addon - diff --git a/desktop/xfce/addon/icon-theme-xfce4/actions.py b/desktop/xfce/addon/icon-theme-xfce4/actions.py deleted file mode 100644 index 4c40a7f19b..0000000000 --- a/desktop/xfce/addon/icon-theme-xfce4/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -WorkDir = 'xfce4-icon-theme-%s' % get.srcVERSION() - -def setup(): - autotools.configure() - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.dodoc("Rodent/README", "NEWS", "ChangeLog", "AUTHORS") diff --git a/desktop/xfce/addon/icon-theme-xfce4/pspec.xml b/desktop/xfce/addon/icon-theme-xfce4/pspec.xml deleted file mode 100644 index 4288dbe325..0000000000 --- a/desktop/xfce/addon/icon-theme-xfce4/pspec.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - icon-theme-xfce4 - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - data - Xfce icon theme - Icon theme Rodent for the Xfce Desktop Environment. - http://archive.xfce.org/src/art/xfce4-icon-theme/4.4/xfce4-icon-theme-4.4.3.tar.bz2 - - icon-theme-hicolor - intltool - - - - - icon-theme-xfce4 - - icon-theme-hicolor - - - /usr/lib - /usr/lib/pkgconfig - /usr/share - /usr/share/doc - - - - - - 2015-03-04 - 4.4.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/icon-theme-xfce4/translations.xml b/desktop/xfce/addon/icon-theme-xfce4/translations.xml deleted file mode 100644 index dc15f50a56..0000000000 --- a/desktop/xfce/addon/icon-theme-xfce4/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - icon-theme-xfce4 - Xfce simge teması - Bu paket, Xfce masaüstü ortamı için Rodent simge temasını içerir. - - diff --git a/desktop/xfce/addon/ristretto/actions.py b/desktop/xfce/addon/ristretto/actions.py deleted file mode 100644 index 73bdd811dc..0000000000 --- a/desktop/xfce/addon/ristretto/actions.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - #shelltools.system("./autogen.sh") - autotools.configure("--prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "TODO") - diff --git a/desktop/xfce/addon/ristretto/files/update-2013-09-19.patch b/desktop/xfce/addon/ristretto/files/update-2013-09-19.patch deleted file mode 100644 index 688cfe9124..0000000000 --- a/desktop/xfce/addon/ristretto/files/update-2013-09-19.patch +++ /dev/null @@ -1,21652 +0,0 @@ -diff -Nuar a/configure.ac.in b/configure.ac.in ---- a/configure.ac.in 1970-01-01 02:00:00.000000000 +0200 -+++ b/configure.ac.in 2013-10-12 23:17:22.135987344 +0300 -@@ -0,0 +1,92 @@ -+dnl -+dnl Copyright (c) 2006-2012 -+dnl The Xfce development team. All rights reserved. -+dnl -+dnl Originally written for Xfce by Benedikt Meurer -+dnl Modified by Stephan Arts -+dnl -+ -+dnl *************************** -+dnl *** Version information *** -+dnl *************************** -+m4_define([ristretto_version_major], [0]) -+m4_define([ristretto_version_minor], [7]) -+m4_define([ristretto_version_micro], [0]) -+m4_define([ristretto_version_build], [r@REVISION@]) -+m4_define([ristretto_version_tag], [git]) # Leave empty for releases -+m4_define([ristretto_version], [ristretto_version_major().ristretto_version_minor().ristretto_version_micro()ifelse(ristretto_version_tag(), [], [], [ristretto_version_tag()-ristretto_version_build()])]) -+ -+dnl ******************************************* -+dnl *** Debugging support for SVN snapshots *** -+dnl ******************************************* -+m4_define([ristretto_debug_default], [ifelse(ristretto_version_tag(), [git], [full], [minimum])]) -+ -+AC_COPYRIGHT([Copyright (c) 2006-2012 -+ The Xfce development team. All rights reserved. -+ -+Written for Xfce by Stephan Arts .]) -+ -+AC_INIT([ristretto], [ristretto_version], []) -+AC_PREREQ([2.50]) -+ -+RISTRETTO_VERSION=ristretto_version -+AM_INIT_AUTOMAKE([ristretto], [$RISTRETTO_VERSION]) -+AM_CONFIG_HEADER([config.h]) -+AM_MAINTAINER_MODE -+ -+dnl check for UNIX variants -+AC_AIX -+AC_ISC_POSIX -+AC_MINIX -+AM_CONDITIONAL([HAVE_CYGWIN], [test "`uname | grep \"CYGWIN\"`" != ""]) -+ -+ -+dnl check for standard header files -+AC_PROG_CC -+AC_PROG_INTLTOOL([0.31], [no-xml]) -+ -+ -+AC_HEADER_STDC -+ -+dnl Check for i18n support -+XDT_I18N([@LINGUAS@]) -+ -+XDT_CHECK_PACKAGE([LIBEXIF], [libexif], [0.6.0]) -+XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.20.0]) -+XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.24.0]) -+XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.24.0]) -+XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.24.0]) -+XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.18.0]) -+XDT_CHECK_PACKAGE([GIO_UNIX], [gio-unix-2.0], [2.18.0]) -+XDT_CHECK_PACKAGE([DBUS_GLIB], [dbus-glib-1], [0.34]) -+XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.10.0]) -+XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.10.0]) -+ -+XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.10.0]) -+ -+XDT_CHECK_PACKAGE([CAIRO], [cairo], [1.8.0]) -+ -+XDT_CHECK_LIBX11() -+ -+AC_CHECK_LIBM -+AC_SUBST(LIBM) -+ -+dnl check for debugging support -+XDT_FEATURE_DEBUG -+ -+AC_OUTPUT([ -+Makefile -+po/Makefile.in -+src/Makefile -+icons/Makefile -+icons/16x16/Makefile -+icons/48x48/Makefile -+icons/128x128/Makefile -+icons/scalable/Makefile -+]) -+ -+echo "----------------------------------------" -+echo "$PACKAGE $VERSION" -+echo "" -+echo "The binary will be installed in $prefix/bin" -+echo "----------------------------------------" -diff -Nuar a/configure.in.in b/configure.in.in ---- a/configure.in.in 2012-08-05 23:42:36.000000000 +0300 -+++ b/configure.in.in 1970-01-01 02:00:00.000000000 +0200 -@@ -1,92 +0,0 @@ --dnl --dnl Copyright (c) 2006-2012 --dnl The Xfce development team. All rights reserved. --dnl --dnl Originally written for Xfce by Benedikt Meurer --dnl Modified by Stephan Arts --dnl -- --dnl *************************** --dnl *** Version information *** --dnl *************************** --m4_define([ristretto_version_major], [0]) --m4_define([ristretto_version_minor], [6]) --m4_define([ristretto_version_micro], [3]) --m4_define([ristretto_version_build], [r@REVISION@]) --m4_define([ristretto_version_tag], []) # Leave empty for releases --m4_define([ristretto_version], [ristretto_version_major().ristretto_version_minor().ristretto_version_micro()ifelse(ristretto_version_tag(), [], [], [ristretto_version_tag()-ristretto_version_build()])]) -- --dnl ******************************************* --dnl *** Debugging support for SVN snapshots *** --dnl ******************************************* --m4_define([ristretto_debug_default], [ifelse(ristretto_version_tag(), [git], [full], [minimum])]) -- --AC_COPYRIGHT([Copyright (c) 2006-2012 -- The Xfce development team. All rights reserved. -- --Written for Xfce by Stephan Arts .]) -- --AC_INIT([ristretto], [ristretto_version], []) --AC_PREREQ([2.50]) -- --RISTRETTO_VERSION=ristretto_version --AM_INIT_AUTOMAKE([ristretto], [$RISTRETTO_VERSION]) --AM_CONFIG_HEADER([config.h]) --AM_MAINTAINER_MODE -- --dnl check for UNIX variants --AC_AIX --AC_ISC_POSIX --AC_MINIX --AM_CONDITIONAL([HAVE_CYGWIN], [test "`uname | grep \"CYGWIN\"`" != ""]) -- -- --dnl check for standard header files --AC_PROG_CC --AC_PROG_INTLTOOL([0.31], [no-xml]) -- -- --AC_HEADER_STDC -- --dnl Check for i18n support --XDT_I18N([@LINGUAS@]) -- --XDT_CHECK_PACKAGE([LIBEXIF], [libexif], [0.6.0]) --XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.20.0]) --XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.24.0]) --XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.24.0]) --XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.24.0]) --XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.18.0]) --XDT_CHECK_PACKAGE([GIO_UNIX], [gio-unix-2.0], [2.18.0]) --XDT_CHECK_PACKAGE([DBUS_GLIB], [dbus-glib-1], [0.34]) --XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.10.0]) --XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.10.0]) -- --XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.10.0]) -- --XDT_CHECK_PACKAGE([CAIRO], [cairo], [1.8.0]) -- --XDT_CHECK_LIBX11() -- --AC_CHECK_LIBM --AC_SUBST(LIBM) -- --dnl check for debugging support --XDT_FEATURE_DEBUG -- --AC_OUTPUT([ --Makefile --po/Makefile.in --src/Makefile --icons/Makefile --icons/16x16/Makefile --icons/48x48/Makefile --icons/128x128/Makefile --icons/scalable/Makefile --]) -- --echo "----------------------------------------" --echo "$PACKAGE $VERSION" --echo "" --echo "The binary will be installed in $prefix/bin" --echo "----------------------------------------" -diff -Nuar a/.gitignore b/.gitignore ---- a/.gitignore 2012-08-05 23:42:36.000000000 +0300 -+++ b/.gitignore 1970-01-01 02:00:00.000000000 +0200 -@@ -1,37 +0,0 @@ -- --*.o --Makefile --Makefile.in --src/.deps --src/ristretto --src/marshal.[ch] --src/main_window_ui.h --src/stamp-marshal.h --autom4te.cache --INSTALL --aclocal.m4 --config.guess --config.h --config.h.in --config.log --config.status --config.sub --configure --configure.in --depcomp --docs/manual/C/ristretto.xml --install-sh --intltool-extract.in --intltool-merge.in --intltool-update.in --missing --mkinstalldirs --po/.intltool-merge-cache --po/Makefile.in.in --po/POTFILES --po/stamp-it --po/*.gmo --po/ristretto.pot --ristretto.desktop --stamp-h1 --ChangeLog -diff -Nuar a/module.xml b/module.xml ---- a/module.xml 2012-08-05 23:42:36.000000000 +0300 -+++ b/module.xml 1970-01-01 02:00:00.000000000 +0200 -@@ -1,20 +0,0 @@ -- -- -- -- ristretto -- Image viewer -- -- -- -- -- -- Stephan Arts -- mailto:stephan@xfce.org -- stephan -- -- -- -diff -Nuar a/NEWS b/NEWS ---- a/NEWS 2012-08-05 23:42:36.000000000 +0300 -+++ b/NEWS 2013-10-12 23:17:22.134987344 +0300 -@@ -1,16 +1,8 @@ --0.6.3 -+x.x.x - ===== - - Fix bug #8837 (Use thumbnail as appicon) - - Update the first image in the image-list when receiving a ready-signal. - --0.6.2 --===== --- Fix backport of translations, (I should build before tagging) -- --0.6.1 --===== --- Fix segfault when changing the 'limit-quality' options. -- - 0.6.0 - ===== - - Fix bug #8723 (Remove duplicate accelerators) -diff -Nuar a/po/ar.po b/po/ar.po ---- a/po/ar.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ar.po 2013-10-12 23:17:22.136987344 +0300 -@@ -1,11 +1,12 @@ - # mohammad , 2012. -+# محمد الحرقان , 2012. - msgid "" - msgstr "" - "Project-Id-Version: Ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" --"PO-Revision-Date: 2012-07-06 20:20+0300\n" --"Last-Translator: mohammad \n" -+"POT-Creation-Date: 2012-11-10 15:57+0000\n" -+"PO-Revision-Date: 2012-11-10 21:52+0300\n" -+"Last-Translator: محمد الحرقان \n" - "Language-Team: http://www.vertaal.com.ar/files/factory/ar/list/\n" - "Language: ar\n" - "MIME-Version: 1.0\n" -@@ -44,483 +45,477 @@ - "جرب %s --help لتشاهد قائمة كاملة \n" - "من خيارات سطر الأوامر المتوفرة.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "عارض الصور" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_ملف" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_افتح..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "فتح الصورة" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "_حفظ نسخة..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "حفظ نسخة من الصورة" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_خصائص..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "عرض خصائص الملف" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_تحرير" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "تحرير هذه الصورة" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_أغلق" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "أغلق هذه الصورة" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_خروج" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "الخروج من Ristretto" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_فتح باستخدام" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_تصنيف" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_حذف" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "حذف هذه الصورة من القرص" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "_حذف البيانات الخاصة..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "_تفضيلات..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_عرض" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_ملء الشاشة" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "التبديل إلى وضع ملء الشاشة" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_غادر نمط ملء الشاشة" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "غادر نمط ملء الشاشة" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." - msgstr "تعيين كخلفية..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_تكبير" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "قرّب" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "تكبير" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "صغّر_" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "تصغير" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "تكبير للداخل" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 --#, fuzzy -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "التكبير والتصغي" -+msgstr "التكبير والتصغير" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_الحجم العادي" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 --#, fuzzy -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "تصغير" -+msgstr "كبّر إلى 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_دوران" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "تدوير إلى اليمين" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "تدوير إلى اليسار" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_إذهب" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_للأمام" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "الصّورة التّالية" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_للخلف" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "الصّورة السّابقة" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "ألأول" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "الصورة الأولى" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_الأخير" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "الصّورة الأخيرة" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_مساعدة" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_المحتويات" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "أظهر دليل مستخدم ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" --msgstr "_عنْ" -+msgstr "_حوْل" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "أظهر معلومات حول ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" --msgstr "_موضع" -+msgstr "_الموقع" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_حجم" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "موضع _شريط المصغرات" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "قياس المصغرة" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "غادر نمط مل_ء الشاشة" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "_عرض شريط الأدوات" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "عرض شريط الم_صغرات" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "عرض شريط الحالة" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "رتب حسب الإسم" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "رتب حسب التاريخ" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "يسار" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "يمين" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "أعلى" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "أسفل" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "صغير جدا" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "أصغر" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "صغير" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "عادي" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "كبير" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "أكبر" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "كبير جدا" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_شَغِّل" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "تشغيل عرض الشرائح" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_إيقاف مؤقت" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" --msgstr "إيقاف مؤقت لعرض الشرائح" -+msgstr "إيقاف عرض الشرائح مؤقتاً" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_مستخدمة مؤخراً" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "مستخدمة مؤخراً" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" --msgstr "إضغط على فتح لإختيار صورة" -+msgstr "إضغط فتح لإختيار صورة" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 --#, fuzzy -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "التطبيقات الأخرى" -+msgstr "افتح باستخدام برنامج آ_خر..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "فارغ" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." --msgstr "" -+msgstr "يجري التحميل..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "حدد طريقة 'تحديد الخلفية'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - msgstr "" --"إعداد إي النظام الذي يقوم حاليا بإدارة سطح المكتب.\n" --"هذا الإعداد يحدد أسلوب Ristretto سيستخدم \n" --"لإعداد خلفية سطح المكتب." -+"إعداد إي نظام يقوم حاليا بإدارة سطح المكتب.\n" -+"هذا الإعداد يحدد طريقة ايتخدام Ristretto لإعداد\n" -+"خلفية سطح المكتب." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "بدون" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "إكسفسي" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "جنوم" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "مطوّر:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto هو عارض صور لسطح مكتب إكسفسي." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" --msgstr "" --"Karim Oulad Chalha \n" --"محمد الحرقان \n" --"Xfce Transifex Arabic Team" -+msgstr "Karim Oulad Chalha محمد الحرقان" - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" --msgstr "فتح صورة" -+msgstr "فتح الصورة" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "صور" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" --msgstr "لا يمكن فتح ملف" -+msgstr "لا يمكن فتح الملف" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "حفظ نسخة" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "لا يمكن حفظ الملف" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" --msgstr "متأكد من انك تود حذف الصورة '%s' من القرص؟" -+msgstr "متأكد انك تود حذف الصورة '%s' من القرص؟" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -531,12 +526,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" --msgstr "متأكد من أنك تريد حذف الصورة '%s' من القرص؟" -+msgstr "متأكد أنك تريد حذف الصورة '%s' من القرص؟" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -547,24 +542,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "عدّل باستخدام" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "افتح %s والملفات الأخرى من النوع %s باستخدام:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "استخدام كافتراضي لهذا النوع من الملفات" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "تطبيقات المنصوح بها" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "التطبيقات الأخرى" - -@@ -680,7 +675,7 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "مع تمكين هذا الخيار، ستقتصر جودة الصورة على الحد الأقصى لحجم الشاشة." -+msgstr "بتمكين هذا الخيار، ستقتصر جودة الصورة على الحد الأقصى لحجم الشاشة." - - #: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" -@@ -730,8 +725,8 @@ - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" - msgstr "" --"فترة العرض يتم عرض صورة فردية خلال العرض\n" --" (بالثانية)" -+"فترة العرض يتم عرض صورة فردية خلال عرض الشرائح\n" -+"(بالثانية)" - - #: ../src/preferences_dialog.c:400 - msgid "Control" -@@ -823,8 +818,8 @@ - "to resolve this issue." - msgstr "" - "لم يتسن الوصول إلى خدمة-thumbnailer،\n" --"ولهذا السبب، لا يمكن إنشاء الصور \n" --"المصغرة.\n" -+"ولهذا السبب، لا يمكن إنشاء صور\n" -+"مصغرة.\n" - "\n" - "ثبت Tumbler أو thumbnailing daemon\n" - "لحل هذه المشكلة." -@@ -873,20 +868,23 @@ - msgid "Zoomed" - msgstr "أسرع" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "عارض الصور Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "استعرض صورك بسهول" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "عارض الصور Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "عرض متص_فح شريط الأدوات" - - #~ msgid "Toolbars" - #~ msgstr "شريط الأدوات" - -+#~ msgid "Merge toolbars" -+#~ msgstr "دمج أشرطة الأدوات" -+ - #~ msgid "Spacing" - #~ msgstr "مباعدة" - -@@ -941,9 +939,6 @@ - #~ msgid "No action" - #~ msgstr "بدون إخراء" - --#~ msgid "Switch images" --#~ msgstr "تبديل الصور" -- - #~ msgid "Memory" - #~ msgstr "الذاكرة" - -@@ -970,6 +965,3 @@ - - #~ msgid "_Print" - #~ msgstr "_طباعة" -- --#~ msgid "Print the image" --#~ msgstr "طباعة الصورة" -diff -Nuar a/po/ast.po b/po/ast.po ---- a/po/ast.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ast.po 2013-10-12 23:17:22.136987344 +0300 -@@ -2,7 +2,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-02-20 19:45+0100\n" - "PO-Revision-Date: 2009-10-05 18:16+0100\n" - "Last-Translator: astur \n" - "Language-Team: Asturian \n" -@@ -12,23 +12,23 @@ - "Content-Transfer-Encoding: 8bit\n" - "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,11,-1,-1,-1\n" - --#: ../src/main.c:62 -+#: ../src/main.c:61 - msgid "Version information" - msgstr "Información de versión" - --#: ../src/main.c:66 -+#: ../src/main.c:65 - msgid "Start in fullscreen mode" - msgstr "Entamar en mou pantalla completa" - --#: ../src/main.c:70 -+#: ../src/main.c:69 - msgid "Start a slideshow" - msgstr "Entamar diapositives" - --#: ../src/main.c:78 -+#: ../src/main.c:77 - msgid "Show settings dialog" - msgstr "" - --#: ../src/main.c:106 -+#: ../src/main.c:105 - #, fuzzy, c-format - msgid "" - "%s: %s\n" -@@ -40,715 +40,464 @@ - "Preba %s --help pa ver una llista completa d'opciones de llinia de comandu " - "disponibles.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:53 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Visor d'imáxenes" - --#: ../src/main_window.c:358 -+#. File Menu -+#: ../src/main_window.c:332 - msgid "_File" - msgstr "_Ficheru" - --#. Icon-name --#: ../src/main_window.c:362 --#, fuzzy --msgid "_Open..." -+#: ../src/main_window.c:333 -+msgid "_Open" - msgstr "_Abrir" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:333 - msgid "Open an image" - msgstr "Abrir imaxe" - --#. Icon-name --#: ../src/main_window.c:368 --#, fuzzy --msgid "_Save copy..." -+#: ../src/main_window.c:334 -+msgid "_Save copy" - msgstr "_Guardar copia" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:334 - msgid "Save a copy of the image" - msgstr "Guardar una copia de la imaxe" - --#. Icon-name --#: ../src/main_window.c:374 --msgid "_Properties..." -+#: ../src/main_window.c:335 -+msgid "_Properties" - msgstr "" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:335 - msgid "Show file properties" - msgstr "" - --#. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 --msgid "_Edit" --msgstr "_Editar" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:382 --#, fuzzy --msgid "Edit this image" --msgstr "_Imprentar les imáxenes" -- --#. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:336 - msgid "_Close" - msgstr "Z_arrar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:336 - msgid "Close this image" - msgstr "Zarrar esta imaxe" - --#. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:337 - msgid "_Quit" - msgstr "_Colar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:337 - msgid "Quit Ristretto" - msgstr "Quitar Ristretto" - --#: ../src/main_window.c:403 --#, fuzzy --msgid "_Open with" -+#. Edit Menu -+#: ../src/main_window.c:339 -+msgid "_Edit" -+msgstr "_Editar" -+ -+#: ../src/main_window.c:340 -+msgid "_Open with..." - msgstr "Abrir _con..." - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:341 - msgid "_Sorting" - msgstr "_Axeitar" - --#. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:342 - msgid "_Delete" - msgstr "_Desaniciar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:342 - #, fuzzy - msgid "Delete this image from disk" - msgstr "Zarrar esta imaxe" - --#. Icon-name --#: ../src/main_window.c:417 --msgid "_Clear private data..." -+#: ../src/main_window.c:343 -+msgid "_Clear private data" - msgstr "" - --#. Icon-name --#: ../src/main_window.c:423 --#, fuzzy --msgid "_Preferences..." -+#: ../src/main_window.c:344 -+msgid "_Preferences" - msgstr "_Preferencies" - --#: ../src/main_window.c:430 -+#. View Menu -+#: ../src/main_window.c:346 - msgid "_View" - msgstr "_Ver" - --#. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:347 - msgid "_Fullscreen" - msgstr "_Pantalla completa" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:436 --#, fuzzy --msgid "Switch to fullscreen" --msgstr "Entamar en mou pantalla completa" -- --#. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:348 - msgid "_Leave Fullscreen" - msgstr "_Colar de pantalla completa" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:442 --#, fuzzy --msgid "Leave Fullscreen" --msgstr "_Colar de pantalla completa" -- --#. Icon-name --#: ../src/main_window.c:446 --#, fuzzy --msgid "Set as _Wallpaper..." -+#: ../src/main_window.c:349 -+msgid "_Set as Wallpaper" - msgstr "_Afitar como fondu d'escritoriu" - --#: ../src/main_window.c:453 -+#. Zoom submenu -+#: ../src/main_window.c:351 - #, fuzzy - msgid "_Zoom" - msgstr "_Ampliar" - --#. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:352 - msgid "Zoom _In" - msgstr "_Ampliar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:459 --#, fuzzy --msgid "Zoom in" --msgstr "_Ampliar" -- --#. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:353 - msgid "Zoom _Out" - msgstr "_Amenorgar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:465 --#, fuzzy --msgid "Zoom out" --msgstr "_Amenorgar" -- --#. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:354 - msgid "Zoom _Fit" - msgstr "_Axustar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:471 --#, fuzzy --msgid "Zoom to fit window" --msgstr "Acercar y allonxar" -- --#. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:355 - msgid "_Normal Size" - msgstr "_Tamañu normal" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:477 --msgid "Zoom to 100%" --msgstr "" -- --#: ../src/main_window.c:482 -+#. Rotation submenu -+#: ../src/main_window.c:357 - msgid "_Rotation" - msgstr "_Voltiar" - --#. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:358 - msgid "Rotate _Right" - msgstr "Voltiar a man_drecha" - --#. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:359 - msgid "Rotate _Left" - msgstr "Voltiar a man_zorga" - --#: ../src/main_window.c:499 -+#. Go Menu -+#: ../src/main_window.c:361 - msgid "_Go" - msgstr "_Dir" - --#. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:362 - msgid "_Forward" - msgstr "_Avanzar" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:505 --#, fuzzy --msgid "Next image" --msgstr "Abrir imaxe" -- --#. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:363 - msgid "_Back" - msgstr "_Retroceder" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:511 --#, fuzzy --msgid "Previous image" --msgstr "Precargar les imáxenes" -- --#. Icon-name --#: ../src/main_window.c:515 --#, fuzzy --msgid "F_irst" -+#: ../src/main_window.c:364 -+msgid "_First" - msgstr "_Primera" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:517 --#, fuzzy --msgid "First image" --msgstr "Cambiar imáxenes" -- --#. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:365 - msgid "_Last" - msgstr "_Cabera" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:523 --#, fuzzy --msgid "Last image" --msgstr "Zarrar esta imaxe" -- --#: ../src/main_window.c:528 -+#. Help Menu -+#: ../src/main_window.c:367 - msgid "_Help" - msgstr "A_ida" - --#. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:369 - msgid "_Contents" - msgstr "_Conteníos" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:371 - msgid "Display ristretto user manual" - msgstr "Amosar el manual d'usuariu de ristretto" - --#. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:374 - msgid "_About" - msgstr "_Tocante a" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:376 - msgid "Display information about ristretto" - msgstr "Amosar información tocante a ristretto" - --#: ../src/main_window.c:545 -+#. Position Menu -+#: ../src/main_window.c:379 - msgid "_Position" - msgstr "_Posición" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:380 - msgid "_Size" - msgstr "" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:381 - #, fuzzy - msgid "Thumbnail Bar _Position" - msgstr "Miniatures" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:382 - #, fuzzy --msgid "Thumb_nail Size" -+msgid "Thumbnail _Size" - msgstr "_Visor de miniatures" - --#. Icon-name --#: ../src/main_window.c:562 -+#. Misc -+#: ../src/main_window.c:384 - msgid "Leave _Fullscreen" - msgstr "Colar de _pantalla completa" - --#. Icon-name --#: ../src/main_window.c:578 --#, fuzzy --msgid "_Show Toolbar" -+#. Toggle visibility of the main file toolbar -+#: ../src/main_window.c:392 -+msgid "Show _File Toolbar" - msgstr "Amosar _barra de ficheru" - --#. Icon-name --#: ../src/main_window.c:586 -+#. Toggle visibility of the main navigation toolbar -+#: ../src/main_window.c:394 -+msgid "Show _Navigation Toolbar" -+msgstr "Amosar _barra de navegación" -+ -+#. Toggle visibility of the thumbnailbar -+#: ../src/main_window.c:396 - #, fuzzy - msgid "Show _Thumbnail Bar" - msgstr "Amosar _barra de miniatures" - --#. Icon-name --#: ../src/main_window.c:594 -+#. Toggle visibility of the statusbar -+#: ../src/main_window.c:398 - #, fuzzy --msgid "Show Status _Bar" -+msgid "Show _Status Bar" - msgstr "Amosar _barra de miniatures" - --#. Icon-name --#: ../src/main_window.c:607 -+#. Sort by Filename -+#: ../src/main_window.c:405 - msgid "sort by filename" - msgstr "axeitar por nome" - --#. Icon-name --#: ../src/main_window.c:614 -+#. Sort by Date -+#: ../src/main_window.c:407 - msgid "sort by date" - msgstr "axeitar per data" - --#. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:413 - msgid "Left" - msgstr "Esquierda" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:414 - msgid "Right" - msgstr "Drecha" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:415 - msgid "Top" - msgstr "Arriba" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:416 - msgid "Bottom" - msgstr "Abaxo" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:422 - msgid "Very Small" - msgstr "" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:423 - msgid "Smaller" - msgstr "" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:424 - msgid "Small" - msgstr "" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:425 - #, fuzzy - msgid "Normal" - msgstr "_Tamañu normal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:426 - msgid "Large" - msgstr "" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:427 - msgid "Larger" - msgstr "" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:428 - msgid "Very Large" - msgstr "" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:572 - msgid "_Play" - msgstr "" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:572 - #, fuzzy - msgid "Play slideshow" - msgstr "Entamar diapositives" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:573 - msgid "_Pause" - msgstr "" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:573 - #, fuzzy - msgid "Pause slideshow" - msgstr "Entamar diapositives" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:576 - msgid "_Recently used" - msgstr "_Usaos recientemente" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:576 - #, fuzzy - msgid "Recently used" - msgstr "_Usaos recientemente" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:672 ../src/main_window.c:1170 - msgid "Press open to select an image" - msgstr "Calca en \"abrir\" pa seleicionar una imaxe" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 --msgid "Open With Other _Application..." --msgstr "" -- --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1074 ../src/main_window.c:1080 - msgid "Empty" - msgstr "Ermu" - --#: ../src/main_window.c:1470 --msgid "Loading..." --msgstr "" -- --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:349 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - msgstr "" - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:373 - msgid "None" - msgstr "" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:377 - msgid "Xfce" - msgstr "" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:381 - msgid "GNOME" - msgstr "" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2613 - msgid "Developer:" - msgstr "Desendolcador:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2622 - #, fuzzy - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "" - "Ristretto ye un visor d'imáxenes rápidu y llixeru pal entornu d'escritoriu " - "de Xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2630 - msgid "translator-credits" - msgstr "Astur " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2920 - msgid "Open image" - msgstr "Abrir imaxe" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2939 - msgid "Images" - msgstr "Imaxes" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2944 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2971 ../src/main_window.c:3073 - msgid "Could not open file" - msgstr "Nun pudo abrise'l ficheru" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3106 - msgid "Save copy" - msgstr "Guardar copia" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3132 - #, fuzzy - msgid "Could not save file" - msgstr "Nun pudo abrise'l ficheru" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3249 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "¿De xuru que quies esborrar la imaxe '%s' del discu?" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format --msgid "" --"An error occurred when deleting image '%s' from disk.\n" --"\n" --"%s" --msgstr "¿De xuru que quies esborrar la imaxe '%s' del discu?" -- --#: ../src/main_window.c:3326 --#, fuzzy, c-format --msgid "Are you sure you want to send image '%s' to trash?" --msgstr "¿De xuru que quies esborrar la imaxe '%s' del discu?" -- --#: ../src/main_window.c:3344 --#, c-format --msgid "" --"An error occurred when sending image '%s' to trash.\n" --"\n" --"%s" --msgstr "" -- --#: ../src/main_window.c:3674 --msgid "Edit with" --msgstr "" -- --#: ../src/main_window.c:3692 --#, c-format --msgid "Open %s and other files of type %s with:" --msgstr "" -- --#: ../src/main_window.c:3697 --msgid "Use as _default for this kind of file" --msgstr "" -- --#: ../src/main_window.c:3787 --msgid "Recommended Applications" --msgstr "" -- --#: ../src/main_window.c:3867 --msgid "Other Applications" --msgstr "" -- --#: ../src/icon_bar.c:345 --#, fuzzy --msgid "Orientation" --msgstr "_Voltiar" -- --#: ../src/icon_bar.c:346 --msgid "The orientation of the iconbar" --msgstr "" -- --#: ../src/icon_bar.c:362 --msgid "File column" --msgstr "" -- --#: ../src/icon_bar.c:363 --msgid "Model column used to retrieve the file from" --msgstr "" -- --#: ../src/icon_bar.c:375 --msgid "Icon Bar Model" --msgstr "" -- --#: ../src/icon_bar.c:376 --msgid "Model for the icon bar" --msgstr "" -- --#: ../src/icon_bar.c:392 --msgid "Active" --msgstr "" -- --#: ../src/icon_bar.c:393 --msgid "Active item index" --msgstr "" -- --#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 --msgid "Show Text" --msgstr "" -- --#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 --msgid "Active item fill color" --msgstr "" -- --#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 --msgid "Active item border color" --msgstr "" -- --#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 --msgid "Active item text color" --msgstr "" -- --#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 --msgid "Cursor item fill color" --msgstr "" -- --#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 --msgid "Cursor item border color" --msgstr "" -- --#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 --msgid "Cursor item text color" --msgstr "" -- --#: ../src/privacy_dialog.c:152 -+#: ../src/privacy_dialog.c:151 - msgid "Time range to clear:" - msgstr "" - --#: ../src/privacy_dialog.c:156 -+#: ../src/privacy_dialog.c:155 - msgid "Cleanup" - msgstr "" - --#: ../src/privacy_dialog.c:158 -+#: ../src/privacy_dialog.c:157 - msgid "Last Hour" - msgstr "" - --#: ../src/privacy_dialog.c:159 -+#: ../src/privacy_dialog.c:158 - msgid "Last Two Hours" - msgstr "" - --#: ../src/privacy_dialog.c:160 -+#: ../src/privacy_dialog.c:159 - msgid "Last Four Hours" - msgstr "" - --#: ../src/privacy_dialog.c:161 -+#: ../src/privacy_dialog.c:160 - msgid "Today" - msgstr "" - --#: ../src/privacy_dialog.c:162 -+#: ../src/privacy_dialog.c:161 - msgid "Everything" - msgstr "" - --#: ../src/privacy_dialog.c:460 -+#: ../src/privacy_dialog.c:459 - msgid "Clear private data" - msgstr "" - --#: ../src/preferences_dialog.c:276 -+#: ../src/preferences_dialog.c:196 - msgid "Display" - msgstr "Visualizador" - --#: ../src/preferences_dialog.c:283 -+#: ../src/preferences_dialog.c:202 - msgid "Background color" - msgstr "Color de fondu" - --#: ../src/preferences_dialog.c:287 -+#: ../src/preferences_dialog.c:204 -+msgid "Toolbars" -+msgstr "" -+ -+#: ../src/preferences_dialog.c:209 - msgid "Override background color:" - msgstr "Inorar color de fondu:" - --#: ../src/preferences_dialog.c:314 --msgid "Quality" --msgstr "_Calidá" -- --#: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." -+#: ../src/preferences_dialog.c:220 -+msgid "Merge toolbars" - msgstr "" - --#: ../src/preferences_dialog.c:321 --#, fuzzy --msgid "Limit rendering quality" --msgstr "Máxima calidá:" -- --#: ../src/preferences_dialog.c:333 --#, fuzzy --msgid "Fullscreen" --msgstr "_Pantalla completa" -- --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:225 - msgid "Thumbnails" - msgstr "Miniatures" - --#: ../src/preferences_dialog.c:341 -+#: ../src/preferences_dialog.c:228 - #, fuzzy - msgid "" --"The thumbnail bar can be automatically hidden when the window is fullscreen." -+"The thumbnail bar can be automatically hidden \n" -+"when the window is fullscreen." - msgstr "" - "La barra de miniature puede anubrise automáticamente \n" - "cuando'l visor d'imáxenes ta a pantalla completa." - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:230 - #, fuzzy - msgid "Hide thumbnail bar when fullscreen" - msgstr "Anubrir la barra de miniatures en mou pantalla completa" - --#: ../src/preferences_dialog.c:352 --msgid "Clock" --msgstr "" -- --#: ../src/preferences_dialog.c:355 --#, fuzzy --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "" --"La barra de miniature puede anubrise automáticamente \n" --"cuando'l visor d'imáxenes ta a pantalla completa." -- --#: ../src/preferences_dialog.c:358 --#, fuzzy --msgid "Show Fullscreen Clock" --msgstr "_Pantalla completa" -- --#: ../src/preferences_dialog.c:375 -+#: ../src/preferences_dialog.c:266 - msgid "Slideshow" - msgstr "Diapositives" - --#: ../src/preferences_dialog.c:379 -+#: ../src/preferences_dialog.c:270 - msgid "Timeout" - msgstr "Tiempu d'espiración" - --#: ../src/preferences_dialog.c:382 -+#: ../src/preferences_dialog.c:273 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -757,92 +506,92 @@ - "diapositives\n" - "(en segundos)" - --#: ../src/preferences_dialog.c:400 -+#: ../src/preferences_dialog.c:289 - msgid "Control" - msgstr "Control" - --#: ../src/preferences_dialog.c:404 -+#: ../src/preferences_dialog.c:293 - #, fuzzy - msgid "Scroll wheel" - msgstr "Rueda de desplazamientu" - --#: ../src/preferences_dialog.c:407 -+#: ../src/preferences_dialog.c:296 - msgid "Invert zoom direction" - msgstr "" - --#: ../src/preferences_dialog.c:421 -+#: ../src/preferences_dialog.c:306 - msgid "Behaviour" - msgstr "Comportamientu" - --#: ../src/preferences_dialog.c:426 -+#: ../src/preferences_dialog.c:311 - msgid "Startup" - msgstr "Aniciu" - --#: ../src/preferences_dialog.c:428 -+#: ../src/preferences_dialog.c:313 - #, fuzzy - msgid "Maximize window on startup when opening an image" - msgstr "Redimensionar la ventana a la imaxe al aniciu" - --#: ../src/preferences_dialog.c:434 -+#: ../src/preferences_dialog.c:319 - #, fuzzy - msgid "Wrap around images" - msgstr "Abrir imaxe" - --#: ../src/preferences_dialog.c:453 -+#: ../src/preferences_dialog.c:338 - msgid "Desktop" - msgstr "" - --#: ../src/preferences_dialog.c:572 -+#: ../src/preferences_dialog.c:460 - #, fuzzy - msgid "Image Viewer Preferences" - msgstr "Preferencies del visor d'imáxenes" - --#: ../src/properties_dialog.c:181 -+#: ../src/properties_dialog.c:180 - msgid "Name:" - msgstr "" - --#: ../src/properties_dialog.c:182 -+#: ../src/properties_dialog.c:181 - msgid "Kind:" - msgstr "" - --#: ../src/properties_dialog.c:183 -+#: ../src/properties_dialog.c:182 - msgid "Modified:" - msgstr "" - --#: ../src/properties_dialog.c:184 -+#: ../src/properties_dialog.c:183 - msgid "Accessed:" - msgstr "" - --#: ../src/properties_dialog.c:185 -+#: ../src/properties_dialog.c:184 - msgid "Size:" - msgstr "" - --#: ../src/properties_dialog.c:309 -+#: ../src/properties_dialog.c:308 - msgid "General" - msgstr "" - --#: ../src/properties_dialog.c:313 -+#: ../src/properties_dialog.c:312 - #, fuzzy - msgid "Image" - msgstr "Imaxes" - --#: ../src/properties_dialog.c:526 -+#: ../src/properties_dialog.c:525 - #, c-format - msgid "Date taken:" - msgstr "" - --#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 --#: ../src/properties_dialog.c:562 -+#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549 -+#: ../src/properties_dialog.c:561 - #, c-format - msgid "%s" - msgstr "" - --#: ../src/properties_dialog.c:624 -+#: ../src/properties_dialog.c:623 - #, c-format - msgid "%s - Properties" - msgstr "" - --#: ../src/thumbnailer.c:460 -+#: ../src/thumbnailer.c:430 - msgid "" - "The thumbnailer-service can not be reached,\n" - "for this reason, the thumbnails can not be\n" -@@ -852,67 +601,64 @@ - "to resolve this issue." - msgstr "" - --#: ../src/thumbnailer.c:470 -+#: ../src/thumbnailer.c:440 - msgid "Do _not show this message again" - msgstr "" - --#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+#: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234 - msgid "Style:" - msgstr "" - --#: ../src/xfce_wallpaper_manager.c:337 -+#: ../src/xfce_wallpaper_manager.c:336 - msgid "Brightness:" - msgstr "" - --#: ../src/xfce_wallpaper_manager.c:338 -+#: ../src/xfce_wallpaper_manager.c:337 - #, fuzzy - msgid "Saturation:" - msgstr "_Voltiar" - --#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+#: ../src/xfce_wallpaper_manager.c:354 ../src/gnome_wallpaper_manager.c:245 - #, fuzzy - msgid "Set as wallpaper" - msgstr "_Afitar como fondu d'escritoriu" - --#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+#: ../src/xfce_wallpaper_manager.c:512 ../src/gnome_wallpaper_manager.c:312 - #, fuzzy - msgid "Auto" - msgstr "_Tocante a" - --#: ../src/xfce_wallpaper_manager.c:511 -+#: ../src/xfce_wallpaper_manager.c:515 - msgid "Centered" - msgstr "" - --#: ../src/xfce_wallpaper_manager.c:514 -+#: ../src/xfce_wallpaper_manager.c:518 - #, fuzzy - msgid "Tiled" - msgstr "_Ficheru" - --#: ../src/xfce_wallpaper_manager.c:517 -+#: ../src/xfce_wallpaper_manager.c:521 - msgid "Stretched" - msgstr "" - --#: ../src/xfce_wallpaper_manager.c:520 -+#: ../src/xfce_wallpaper_manager.c:524 - #, fuzzy - msgid "Scaled" - msgstr "Escala" - --#: ../src/xfce_wallpaper_manager.c:523 -+#: ../src/xfce_wallpaper_manager.c:527 - msgid "Zoomed" - msgstr "" - --#: ../ristretto.desktop.in.h:1 --#, fuzzy --msgid "Ristretto Image Viewer" --msgstr "Visualizador d'imáxenes" -- - #: ../ristretto.desktop.in.h:2 - #, fuzzy - msgid "Look at your images easily" - msgstr "Ver semeyes cenciellamente" - --#~ msgid "Show _Navigation Toolbar" --#~ msgstr "Amosar _barra de navegación" -+#: ../ristretto.desktop.in.h:3 -+#, fuzzy -+msgid "Ristretto Image Viewer" -+msgstr "Visualizador d'imáxenes" - - #~ msgid "Spacing" - #~ msgstr "Espaciáu" -@@ -969,6 +715,12 @@ - #~ msgid "No action" - #~ msgstr "Denguna aición" - -+#~ msgid "Zoom in and out" -+#~ msgstr "Acercar y allonxar" -+ -+#~ msgid "Switch images" -+#~ msgstr "Cambiar imáxenes" -+ - #~ msgid "Memory" - #~ msgstr "Memoria" - -@@ -991,6 +743,15 @@ - #~ msgid "_Print" - #~ msgstr "_Imprentar" - -+#~ msgid "Print the image" -+#~ msgstr "_Imprentar les imáxenes" -+ -+#~ msgid "Quality" -+#~ msgstr "_Calidá" -+ -+#~ msgid "Maximum render quality:" -+#~ msgstr "Máxima calidá:" -+ - #~ msgid "Best" - #~ msgstr "La meyor" - -@@ -1003,6 +764,9 @@ - #~ msgid "Low" - #~ msgstr "Baxa" - -+#~ msgid "Preload images" -+#~ msgstr "Precargar les imáxenes" -+ - #~ msgid "Ristretto" - #~ msgstr "Ristretto" - -diff -Nuar a/po/bg.po b/po/bg.po ---- a/po/bg.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/bg.po 2013-10-12 23:17:22.137987344 +0300 -@@ -7,9 +7,9 @@ - msgstr "" - "Project-Id-Version: ristretto 0.0.15\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" --"PO-Revision-Date: 2012-01-13 21:43+0200\n" --"Last-Translator: Milen Milev \n" -+"POT-Creation-Date: 2013-01-14 18:09+0000\n" -+"PO-Revision-Date: 2013-01-14 21:15+0200\n" -+"Last-Translator: Kiril Kirilov (Cybercop) \n" - "Language-Team: Bulgarian\n" - "Language: Bulgarian\n" - "MIME-Version: 1.0\n" -@@ -25,15 +25,15 @@ - - #: ../src/main.c:66 - msgid "Start in fullscreen mode" --msgstr "Стартирай на цял екран" -+msgstr "Стартиране в режим на цял екран" - - #: ../src/main.c:70 - msgid "Start a slideshow" --msgstr "Прожекция" -+msgstr "Стартиране на прожекция (слайдшоу)" - - #: ../src/main.c:78 - msgid "Show settings dialog" --msgstr "Покажи настройките" -+msgstr "Показване на диалог за настройки" - - #: ../src/main.c:106 - #, c-format -@@ -45,614 +45,614 @@ - msgstr "" - "%s: %s\n" - "\n" --"Опитайте %s --help за да видите пълен списък\n" --"с наличните опции на командния ред.\n" -+"Опитайте %s --help за да видите пълният списък\n" -+"с наличните команди.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 -+#: ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Програма за преглед на изображения" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Файл" - - #. Icon-name --#: ../src/main_window.c:362 --#, fuzzy -+#: ../src/main_window.c:369 - msgid "_Open..." --msgstr "_Отвори" -+msgstr "_Отваряне..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Отваряне на изображение" - - #. Icon-name --#: ../src/main_window.c:368 --#, fuzzy -+#: ../src/main_window.c:375 - msgid "_Save copy..." --msgstr "Запази копие" -+msgstr "Запазване на копие..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" --msgstr "Запази копие на изображението" -+msgstr "Запазване на копие на изображението" - - #. Icon-name --#: ../src/main_window.c:374 --#, fuzzy -+#: ../src/main_window.c:381 - msgid "_Properties..." --msgstr "Свойства" -+msgstr "Свойства..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" --msgstr "Покажи свойствата на файла" -+msgstr "Показване на свойствата на файла" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 -+#: ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Редактиране" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 --#, fuzzy -+#: ../src/main_window.c:389 - msgid "Edit this image" --msgstr "Принтирай изображението" -+msgstr "Редактиране на това изображение" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" --msgstr "Затвори" -+msgstr "Затваряне" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" --msgstr "Затвори изображението" -+msgstr "Затваряне на това изображение" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "Изход" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Изход от Ristretto" - --#: ../src/main_window.c:403 --#, fuzzy -+#: ../src/main_window.c:410 - msgid "_Open with" --msgstr "Отваряне с..." -+msgstr "Отваряне с" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" --msgstr "Подреди" -+msgstr "Подреждане" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" --msgstr "Изтрий" -+msgstr "Изтриване" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" --msgstr "Изтрий изображението от диска" -+msgstr "Изтриване на изображението от диска" - - #. Icon-name --#: ../src/main_window.c:417 --#, fuzzy -+#: ../src/main_window.c:424 - msgid "_Clear private data..." --msgstr "Изчисти личните данни" -+msgstr "Изчистване на личните данни..." - - #. Icon-name --#: ../src/main_window.c:423 --#, fuzzy -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "Предпочитания" -+msgstr "Предпочитания..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "Преглед" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" --msgstr "На цял екран" -+msgstr "Режим на цял екран" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 --#, fuzzy -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" --msgstr "Стартирай на цял екран" -+msgstr "Превключване в режим на цял екран" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" --msgstr "Излез от цял екран" -+msgstr "Изход от режим на цял екран" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 --#, fuzzy -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" --msgstr "Излез от цял екран" -+msgstr "Изход от режим на цял екран" - - #. Icon-name --#: ../src/main_window.c:446 --#, fuzzy -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "Задай като тапет" -+msgstr "Задаване като фон на работният плот..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "Мащабиране" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Увеличаване" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 --#, fuzzy -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Увеличаване" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Намаляване" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 --#, fuzzy -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Намаляване" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" --msgstr "Запълни" -+msgstr "Запълване" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "" -+msgstr "Оразмеряване до запълване на прозореца" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "Нормален размер" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "" -+msgstr "Оразмеряване на 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "Завъртане" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Завъртане надясно" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Завъртане наляво" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" --msgstr "Отиди" -+msgstr "Отиване" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "Напред" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 --#, fuzzy -+#: ../src/main_window.c:512 - msgid "Next image" --msgstr "Отваряне на изображение" -+msgstr "Следващо изображение" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "Назад" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 --#, fuzzy -+#: ../src/main_window.c:518 - msgid "Previous image" --msgstr "Предварително зареждане на изображението" -+msgstr "Предишно изображение" - - #. Icon-name --#: ../src/main_window.c:515 --#, fuzzy -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "Първо" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 --#, fuzzy -+#: ../src/main_window.c:524 - msgid "First image" --msgstr "Принтирай изображението" -+msgstr "Първо изображение" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "Последно" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 --#, fuzzy -+#: ../src/main_window.c:530 - msgid "Last image" --msgstr "Затвори изображението" -+msgstr "Последно изображение" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "Помощ" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "Съдържание" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" --msgstr "Покажи Ръководството за употреба" -+msgstr "Покажи потребителското ръководство на Ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "Относно" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" --msgstr "Покажи инфо за ristretto" -+msgstr "Покажи информация за ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "Позиция" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" --msgstr "" -+msgstr "Размер" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" --msgstr "Позиция на лентата за умалени изображения" -+msgstr "Позиция на лентата с миниатюри" - --#: ../src/main_window.c:557 --#, fuzzy -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" --msgstr "Визуализатор на умалени изображения" -+msgstr "Размер на миниатюрите" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" --msgstr "Излез от цял екран" -+msgstr "Изход от цял екран" - - #. Icon-name --#: ../src/main_window.c:578 --#, fuzzy -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" --msgstr "Показване на лентата на менюто" -+msgstr "Показване на лентата с инструменти" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" --msgstr "Показване на лентата с умалени изображения" -+msgstr "Показване на лентата с миниатюри" - - #. Icon-name --#: ../src/main_window.c:594 --#, fuzzy -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" --msgstr "Показване на лентата с умалени изображения" -+msgstr "Показване на лентата на състоянието" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" --msgstr "подреди по ИМЕ" -+msgstr "подреждане по име" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" --msgstr "подреди по ДАТА" -+msgstr "подреждане по дата" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Ляво" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Дясно" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Горе" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Долу" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" --msgstr "" -+msgstr "Много малки" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" --msgstr "" -+msgstr "По- малки" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" --msgstr "" -+msgstr "Малки" - --#: ../src/main_window.c:672 --#, fuzzy -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Нормален размер" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" --msgstr "" -+msgstr "Големи" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" --msgstr "" -+msgstr "По- големи" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" --msgstr "" -+msgstr "Много големи" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" --msgstr "Изпълни" -+msgstr "Изпълнение" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Изпълни прожекция" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "Пауза" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Пауза на прожекцията" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "Отваряни наскоро" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Отваряни наскоро" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 -+#: ../src/main_window.c:1495 - msgid "Press open to select an image" --msgstr "Натисни отвори за да изберете изображение" -+msgstr "Натиснете Отваряне за да изберете изображение" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 -+#: ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "" -+msgstr "Отваряне с друга програма..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 -+#: ../src/main_window.c:1385 - msgid "Empty" - msgstr "Опразни" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." --msgstr "" -+msgstr "Зареждане..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" --msgstr "Избери метод за задаване на тапета" -+msgstr "Избиране на метод за задаване на фон на работният плот" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 -+#: ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - msgstr "" --"Определя коя система управлява Вашият плот.\n" --"Тази настройка определя метода,по който\n" --"Ristretto ще зададе тапета." -+"Определя коя система управлява вашият плот.\n" -+"Тази настройка определя метода, по който\n" -+"Ristretto ще зададе фона на работният плот." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 -+#: ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Без" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 -+#: ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 -+#: ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Разработчик:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." --msgstr "" --"Ristretto е бърза и лека програма за преглед на изображения за работната " --"среда XFCE" -+msgstr "Ristretto е бърза и лека програма за преглед на изображения за работната среда XFCE" - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "" - "Пламен Стоев \n" --"Милен Милев " -+"Милен Милев \n" -+"Кирил Кирилов " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Отваряне на изображение" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Изображения" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 -+#: ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Файлът не може да бъде отворен" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" --msgstr "Запази копие" -+msgstr "Запазване на копие" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Файлът не може да бъде запазен" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" --msgstr "Сигурни ли сте, че искате да изтриете изображението '%s' от диска?" -+msgstr "Сигурни ли сте, че искате да изтриете изображение '%s' от диска?" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format -+#: ../src/main_window.c:3345 -+#, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "Сигурни ли сте, че искате да изтриете изображението '%s' от диска?" -+msgstr "" -+"Възникна грешка при изтриване на изображение '%s' от диска.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3326 --#, fuzzy, c-format -+#: ../src/main_window.c:3361 -+#, c-format - msgid "Are you sure you want to send image '%s' to trash?" --msgstr "Сигурни ли сте, че искате да изтриете изображението '%s' от диска?" -+msgstr "Сигурен ли сте, че искате да изпратите изображение '%s' в кошчето?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" - msgstr "" -+"Възникна грешка при преместване на изображение '%s' в кошчето.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" --msgstr "" -+msgstr "Редактиране с" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "" -+msgstr "Отваряне на %s и други файлове от типа %s с:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" --msgstr "" -+msgstr "Използване по подразбиране за този вид файлове" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" --msgstr "" -+msgstr "Препоръчителни програми" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" --msgstr "" -+msgstr "Други програми" - - #: ../src/icon_bar.c:345 --#, fuzzy - msgid "Orientation" --msgstr "Завъртане" -+msgstr "Ориентация" - - #: ../src/icon_bar.c:346 - msgid "The orientation of the iconbar" --msgstr "" -+msgstr "Ориентация на лентата с икони" - - #: ../src/icon_bar.c:362 - msgid "File column" --msgstr "" -+msgstr "Колона на файл" - - #: ../src/icon_bar.c:363 - msgid "Model column used to retrieve the file from" --msgstr "" -+msgstr "Модел колона, използвана за извличане на файла от" - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "" -+msgstr "Модел на лентата с икони" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "" -+msgstr "Модел за лентата с икони" - - #: ../src/icon_bar.c:392 - msgid "Active" --msgstr "" -+msgstr "Активен" - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "" -+msgstr "Индекс на активният елемент" - --#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+#: ../src/icon_bar.c:409 -+#: ../src/icon_bar.c:410 - msgid "Show Text" --msgstr "" -+msgstr "Показване на текст" - --#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+#: ../src/icon_bar.c:416 -+#: ../src/icon_bar.c:417 - msgid "Active item fill color" --msgstr "" -+msgstr "Цвят на активният елемент" - --#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+#: ../src/icon_bar.c:423 -+#: ../src/icon_bar.c:424 - msgid "Active item border color" --msgstr "" -+msgstr "Цвят на рамката на активният елемент" - --#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+#: ../src/icon_bar.c:430 -+#: ../src/icon_bar.c:431 - msgid "Active item text color" --msgstr "" -+msgstr "Цвят на текста на активният елемент" - --#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+#: ../src/icon_bar.c:437 -+#: ../src/icon_bar.c:438 - msgid "Cursor item fill color" --msgstr "" -+msgstr "Цвят на показваният елемент" - --#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+#: ../src/icon_bar.c:444 -+#: ../src/icon_bar.c:445 - msgid "Cursor item border color" --msgstr "" -+msgstr "Цвят на рамката на показваният елемент" - --#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+#: ../src/icon_bar.c:451 -+#: ../src/icon_bar.c:452 - msgid "Cursor item text color" --msgstr "" -+msgstr "Цвят на текста на показваният елемент" - - #: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" --msgstr "Откъс за изчистване:" -+msgstr "Период за почистване:" - - #: ../src/privacy_dialog.c:156 - msgid "Cleanup" --msgstr "Изчисти" -+msgstr "Изчистване" - - #: ../src/privacy_dialog.c:158 - msgid "Last Hour" -@@ -664,7 +664,7 @@ - - #: ../src/privacy_dialog.c:160 - msgid "Last Four Hours" --msgstr "Послените четири часа" -+msgstr "Последните четири часа" - - #: ../src/privacy_dialog.c:161 - msgid "Today" -@@ -676,7 +676,7 @@ - - #: ../src/privacy_dialog.c:460 - msgid "Clear private data" --msgstr "Изчисти личните данни" -+msgstr "Изчистване на личните данни" - - #: ../src/preferences_dialog.c:276 - msgid "Display" -@@ -692,56 +692,43 @@ - - #: ../src/preferences_dialog.c:314 - msgid "Quality" --msgstr "" -+msgstr "Качество" - - #: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." --msgstr "" -+msgid "With this option enabled, the maximum image-quality will be limited to the screen-size." -+msgstr "Ако тази опция е разрешена, максимално качество на изображението ще бъде ограничено до размера на екрана." - - #: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" --msgstr "" -+msgstr "Ограничаване качеството на показваното изображение" - - #: ../src/preferences_dialog.c:333 --#, fuzzy - msgid "Fullscreen" --msgstr "На цял екран" -+msgstr "Режим на цял екран" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" --msgstr "Умалени изображения" -+msgstr "Умалени изображения (миниатюри)" - - #: ../src/preferences_dialog.c:341 --#, fuzzy --msgid "" --"The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"Лентата на умалените изображения може да се\n" --"скрива автоматично при режим на цял екран." -+msgid "The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "Лентата с миниатюрите може да се скрива автоматично при режим на цял екран." - - #: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" --msgstr "Скрий лентата за умалени изображения при цял екран" -+msgstr "Скриване на лентата с миниатюрите при режим на цял екран" - - #: ../src/preferences_dialog.c:352 - msgid "Clock" --msgstr "" -+msgstr "Часовник" - - #: ../src/preferences_dialog.c:355 --#, fuzzy --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "" --"Лентата на умалените изображения може да се\n" --"скрива автоматично при режим на цял екран." -+msgid "Show an analog clock that displays the current time when the window is fullscreen" -+msgstr "Показване на аналогов часовник, който показва текущото време при режим на цял екран" - - #: ../src/preferences_dialog.c:358 --#, fuzzy - msgid "Show Fullscreen Clock" --msgstr "На цял екран" -+msgstr "Показване на часовник при режим на цял екран" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" -@@ -765,7 +752,7 @@ - - #: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" --msgstr "Колелце на мишката" -+msgstr "Колело на мишката" - - #: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" -@@ -781,11 +768,11 @@ - - #: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" --msgstr "Увеличи прозореца при отварянето на изображение" -+msgstr "Максимизиране на прозорец при стартиране, когато отваряме изображение" - - #: ../src/preferences_dialog.c:434 - msgid "Wrap around images" --msgstr "Опаковай изображенията" -+msgstr "Опаковка около изображенията" - - #: ../src/preferences_dialog.c:453 - msgid "Desktop" -@@ -826,9 +813,10 @@ - #: ../src/properties_dialog.c:526 - #, c-format - msgid "Date taken:" --msgstr "Дата на снимане:" -+msgstr "Дата на заснемане:" - --#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:538 -+#: ../src/properties_dialog.c:550 - #: ../src/properties_dialog.c:562 - #, c-format - msgid "%s" -@@ -849,7 +837,7 @@ - "to resolve this issue." - msgstr "" - "Услугата за умалени изображения не е налична,\n" --"по тази причина, умалени изображения не могат\n" -+"по тази причина, миниатюрите не могат\n" - "да бъдат създадени.\n" - "\n" - "Инсталирайте Tumbler или друг услуга,\n" -@@ -859,7 +847,8 @@ - msgid "Do _not show this message again" - msgstr "Не показвай това съобщение отново" - --#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" - msgstr "Стил:" - -@@ -871,13 +860,15 @@ - msgid "Saturation:" - msgstr "Цветност:" - --#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+#: ../src/xfce_wallpaper_manager.c:355 -+#: ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" --msgstr "Задай като тапет" -+msgstr "Задаване като тапет" - --#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+#: ../src/xfce_wallpaper_manager.c:508 -+#: ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" --msgstr "Авто" -+msgstr "Автоматично" - - #: ../src/xfce_wallpaper_manager.c:511 - msgid "Centered" -@@ -899,34 +890,31 @@ - msgid "Zoomed" - msgstr "Увеличено" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Програма за преглед на изображения Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Разглеждайте снимките си лесно" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Програма за преглед на изображения Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Показване на лентата за навигация" - - #~ msgid "Toolbars" --#~ msgstr "Ленти" -+#~ msgstr "Ленти с инструменти" - - #~ msgid "Merge toolbars" --#~ msgstr "Сливане на ленти" -- --#~ msgid "Spacing" --#~ msgstr "Отместване" -+#~ msgstr "Сливане на ленти с инструменти" - - #~ msgid "The amount of space between the thumbnails" --#~ msgstr "Разстояние между умалените изображения" -+#~ msgstr "Разстояние между миниатюрите" - - #~ msgid "border width" - #~ msgstr "дебелина на рамката" - - #~ msgid "the border width of the thumbnail bar" --#~ msgstr "дебелина на рамката на лентата на умалените изображения" -+#~ msgstr "дебелина на рамката на лентата с миниатюри" - - #~ msgid "Preferences" - #~ msgstr "Предпочитания" -@@ -947,13 +935,13 @@ - #~ msgstr "Отваряне на папка" - - #~ msgid "Enable cache" --#~ msgstr "Разреши кеш" -+#~ msgstr "Разреши кеширане" - - #~ msgid "_Thumbnail Bar" --#~ msgstr "Лента за умалени изображения" -+#~ msgstr "Лента с миниатюри" - - #~ msgid "Opening file(s)..." --#~ msgstr "Отваряне на файл(овете)..." -+#~ msgstr "Отваряне на файл(ове)..." - - #~ msgid "No applications available" - #~ msgstr "Няма налични приложения" -@@ -965,7 +953,7 @@ - #~ msgstr "Покажи вертикално" - - #~ msgid "H_ide" --#~ msgstr "Скрий" -+#~ msgstr "Скриване" - - #~ msgid "Xfce Image viewer" - #~ msgstr "Програма за преглед на изображения за XFCE" -@@ -978,4 +966,7 @@ - #~ "(uses more memory)" - #~ msgstr "" - #~ "Предварително зареждане на изображенията при прожекция\n" --#~ "(използва се повече памет)" -+#~ "(използва повече памет)" -+ -+#~ msgid "Spacing" -+#~ msgstr "Отместване" -diff -Nuar a/po/ca.po b/po/ca.po ---- a/po/ca.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ca.po 2013-10-12 23:17:22.137987344 +0300 -@@ -6,39 +6,39 @@ - # Carles Muñoz Gorriz , 2008-2012. - # Harald Servat , 2009. - # Pol Ruzafa , 2011. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-04-12 07:24+0000\n" - "PO-Revision-Date: 2012-03-31 19:21+0100\n" - "Last-Translator: Carles Muñoz Gorriz \n" - "Language-Team: Catalan \n" --"Language: ca\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: ca\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Poedit-Language: Catalan\n" - --#: ../src/main.c:62 -+#: ../src/main.c:61 - msgid "Version information" - msgstr "Informació de la versió" - --#: ../src/main.c:66 -+#: ../src/main.c:65 - msgid "Start in fullscreen mode" - msgstr "Inicia en mode de pantalla completa" - --#: ../src/main.c:70 -+#: ../src/main.c:69 - msgid "Start a slideshow" - msgstr "Inicia una seqüència d'imatges" - --#: ../src/main.c:78 -+#: ../src/main.c:77 - msgid "Show settings dialog" - msgstr "Mostra el diàleg d'ajustaments" - --#: ../src/main.c:106 -+#: ../src/main.c:105 - #, c-format - msgid "" - "%s: %s\n" -@@ -51,425 +51,355 @@ - "Feu %s --help per veure la llista completa \n" - "d'opcions disponibles de la línia d'ordres.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Visor d'imatges" - --#: ../src/main_window.c:358 -+#. File Menu -+#: ../src/main_window.c:350 - msgid "_File" - msgstr "_Fitxer" - --#. Icon-name --#: ../src/main_window.c:362 --#, fuzzy --msgid "_Open..." -+#: ../src/main_window.c:351 -+msgid "_Open" - msgstr "_Obre" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:351 - msgid "Open an image" - msgstr "Obre una imatge" - --#. Icon-name --#: ../src/main_window.c:368 --#, fuzzy --msgid "_Save copy..." -+#: ../src/main_window.c:352 -+msgid "_Save copy" - msgstr "_Desa una còpia" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:352 - msgid "Save a copy of the image" - msgstr "Desa una còpia de la imatge" - --#. Icon-name --#: ../src/main_window.c:374 --#, fuzzy --msgid "_Properties..." -+#: ../src/main_window.c:353 -+msgid "_Properties" - msgstr "_Propietats" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:353 - msgid "Show file properties" - msgstr "Mostra les propietats del fitxer" - --#. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#. Edit Menu -+#: ../src/main_window.c:354 ../src/main_window.c:358 - msgid "_Edit" - msgstr "_Edita" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:354 - msgid "Edit this image" - msgstr "Edita aquesta imatge" - --#. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:355 - msgid "_Close" - msgstr "_Tanca" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:355 - msgid "Close this image" - msgstr "Tanca aquesta finestra" - --#. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:356 - msgid "_Quit" - msgstr "_Surt" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:356 - msgid "Quit Ristretto" - msgstr "Surt de Ristretto" - --#: ../src/main_window.c:403 --#, fuzzy --msgid "_Open with" -+#: ../src/main_window.c:359 -+msgid "_Open with..." - msgstr "_Obre amb…" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:360 - msgid "_Sorting" - msgstr "_Ordenació" - --#. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:361 - msgid "_Delete" - msgstr "_Esborra" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:361 - msgid "Delete this image from disk" - msgstr "Esborra aquesta imatge del disc" - --#. Icon-name --#: ../src/main_window.c:417 --#, fuzzy --msgid "_Clear private data..." -+#: ../src/main_window.c:362 -+msgid "_Clear private data" - msgstr "_Neteja l'informació privada" - --#. Icon-name --#: ../src/main_window.c:423 --#, fuzzy --msgid "_Preferences..." -+#: ../src/main_window.c:363 -+msgid "_Preferences" - msgstr "_Preferències" - --#: ../src/main_window.c:430 -+#. View Menu -+#: ../src/main_window.c:365 - msgid "_View" - msgstr "_Mostra" - --#. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:366 - msgid "_Fullscreen" - msgstr "_Pantalla completa" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:366 - msgid "Switch to fullscreen" - msgstr "Canvia al mode de pantalla completa" - --#. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:367 - msgid "_Leave Fullscreen" - msgstr "_Surt de la pantalla completa" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:367 - msgid "Leave Fullscreen" - msgstr "Surt del mode de pantalla completa" - --#. Icon-name --#: ../src/main_window.c:446 --#, fuzzy --msgid "Set as _Wallpaper..." -+#: ../src/main_window.c:368 -+msgid "_Set as Wallpaper" - msgstr "Posa com _fons d'escriptori" - --#: ../src/main_window.c:453 -+#. Zoom submenu -+#: ../src/main_window.c:370 - msgid "_Zoom" - msgstr "_Zoom" - --#. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:371 - msgid "Zoom _In" - msgstr "Ampl_ia" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:371 - msgid "Zoom in" - msgstr "Amplia" - --#. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:372 - msgid "Zoom _Out" - msgstr "Red_ueix" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:372 - msgid "Zoom out" - msgstr "Redueix" - --#. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:373 - msgid "Zoom _Fit" - msgstr "_Ajusta" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:373 - msgid "Zoom to fit window" - msgstr "Encaixa a la finestra" - --#. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:374 - msgid "_Normal Size" - msgstr "Mida _normal" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:374 - msgid "Zoom to 100%" - msgstr "Mostra a mida real" - --#: ../src/main_window.c:482 -+#. Rotation submenu -+#: ../src/main_window.c:376 - msgid "_Rotation" - msgstr "_Rotació" - --#. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:377 - msgid "Rotate _Right" - msgstr "Gira a la _dreta" - --#. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:378 - msgid "Rotate _Left" - msgstr "Gira a l'_esquerra" - --#: ../src/main_window.c:499 -+#. Go Menu -+#: ../src/main_window.c:380 - msgid "_Go" - msgstr "_Vés" - --#. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:381 - msgid "_Forward" - msgstr "_Endavant" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:381 - msgid "Next image" - msgstr "Imatge següent" - --#. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:382 - msgid "_Back" - msgstr "_Endarrere" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:382 - msgid "Previous image" - msgstr "Imatge anterior" - --#. Icon-name --#: ../src/main_window.c:515 --#, fuzzy --msgid "F_irst" -+#: ../src/main_window.c:383 -+msgid "_First" - msgstr "_Primer" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:383 - msgid "First image" - msgstr "Primera imatge" - --#. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:384 - msgid "_Last" - msgstr "_Últim" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:384 - msgid "Last image" - msgstr "Última imatge" - --#: ../src/main_window.c:528 -+#. Help Menu -+#: ../src/main_window.c:386 - msgid "_Help" - msgstr "A_juda" - --#. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:388 - msgid "_Contents" - msgstr "_Continguts" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:390 - msgid "Display ristretto user manual" - msgstr "Mostra el manual d'usuari de ristretto" - --#. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:393 - msgid "_About" - msgstr "_Quant a" - --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:395 - msgid "Display information about ristretto" - msgstr "Mostra informació referent a ristretto" - --#: ../src/main_window.c:545 -+#. Position Menu -+#: ../src/main_window.c:398 - msgid "_Position" - msgstr "_Posició" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:399 - msgid "_Size" - msgstr "_Mida" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:400 - msgid "Thumbnail Bar _Position" - msgstr "_Posició de la barra de miniatures" - --#: ../src/main_window.c:557 --#, fuzzy --msgid "Thumb_nail Size" -+#: ../src/main_window.c:401 -+msgid "Thumbnail _Size" - msgstr "_Mida de miniatures" - --#. Icon-name --#: ../src/main_window.c:562 -+#. Misc -+#: ../src/main_window.c:403 - msgid "Leave _Fullscreen" - msgstr "Surt de la _pantalla completa" - --#. Icon-name --#: ../src/main_window.c:578 -+#. Toggle visibility of the main file toolbar -+#: ../src/main_window.c:411 - msgid "_Show Toolbar" - msgstr "Mostra la barra d'_eines " - --#. Icon-name --#: ../src/main_window.c:586 -+#. Toggle visibility of the main navigation toolbar -+#: ../src/main_window.c:413 - msgid "Show _Thumbnail Bar" - msgstr "Mostra la _barra de miniatures" - --#. Icon-name --#: ../src/main_window.c:594 --#, fuzzy --msgid "Show Status _Bar" -+#. Toggle visibility of the statusbar -+#: ../src/main_window.c:415 -+msgid "Show _Status Bar" - msgstr "Mostra la barra d'e_stat" - --#. Icon-name --#: ../src/main_window.c:607 -+#. Sort by Filename -+#: ../src/main_window.c:422 - msgid "sort by filename" - msgstr "Ordena per nom de fitxer" - --#. Icon-name --#: ../src/main_window.c:614 -+#. Sort by Date -+#: ../src/main_window.c:424 - msgid "sort by date" - msgstr "Ordena per data" - --#. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:430 - msgid "Left" - msgstr "Esquerra" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:431 - msgid "Right" - msgstr "Dreta" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:432 - msgid "Top" - msgstr "Superior" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:433 - msgid "Bottom" - msgstr "Inferior" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:439 - msgid "Very Small" - msgstr "Molt petita" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:440 - msgid "Smaller" - msgstr "Força petita" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:441 - msgid "Small" - msgstr "Petita" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:442 - msgid "Normal" - msgstr "Normal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:443 - msgid "Large" - msgstr "Gran" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:444 - msgid "Larger" - msgstr "Força gran" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:445 - msgid "Very Large" - msgstr "Molt gran" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:602 - msgid "_Play" - msgstr "_Reproduir" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:602 - msgid "Play slideshow" - msgstr "Reprodueix la seqüència d'imatges" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:603 - msgid "_Pause" - msgstr "_Pausa" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:603 - msgid "Pause slideshow" - msgstr "Pausa la seqüència d'imatges" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:606 - msgid "_Recently used" - msgstr "Emprats _recentment" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:606 - msgid "Recently used" - msgstr "Emprats recentment" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:710 ../src/main_window.c:1217 - msgid "Press open to select an image" - msgstr "Feu clic a Obrir per seleccionar una imatge" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 --#, fuzzy --msgid "Open With Other _Application..." -+#: ../src/main_window.c:1079 ../src/main_window.c:1083 -+msgid "Open With Other _Application" - msgstr "Obre amb una altra _aplicació" - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1104 ../src/main_window.c:1110 - msgid "Empty" - msgstr "Buit" - --#: ../src/main_window.c:1470 --msgid "Loading..." --msgstr "" -- --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:1821 - msgid "Choose 'set wallpaper' method" - msgstr "Trieu el mètode «Posa com fons d'escriptori»" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:1836 ../src/preferences_dialog.c:329 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -479,100 +409,84 @@ - "Aquest paràmetre determina quin mètode emprarà Ristretto\n" - "per configurar el fons de l'escriptori." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:1861 ../src/preferences_dialog.c:353 - msgid "None" - msgstr "Cap" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:1865 ../src/preferences_dialog.c:357 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:1869 ../src/preferences_dialog.c:361 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2309 - msgid "Developer:" - msgstr "Autor:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2318 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto és un visor d'imatges per l'entorn d'escriptori Xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2326 - msgid "translator-credits" - msgstr "" - "Carles Muñoz Gorriz , 2008-2010.\n" - "Harald Servat , 2009." - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2628 - msgid "Open image" - msgstr "Obre una imatge" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2647 - msgid "Images" - msgstr "Imatges" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2652 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2679 ../src/main_window.c:2781 - msgid "Could not open file" - msgstr "No s'ha pogut obrir el fitxer" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:2814 - msgid "Save copy" - msgstr "Desa una còpia" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:2840 - msgid "Could not save file" - msgstr "No s'ha pogut desar el fitxer" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3006 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Voleu suprimir la imatge «%s» del disc?" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format --msgid "" --"An error occurred when deleting image '%s' from disk.\n" --"\n" --"%s" --msgstr "Voleu suprimir la imatge «%s» del disc?" -- --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3030 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Voleu enviar la imatge «%s» a la paperera?" - --#: ../src/main_window.c:3344 --#, fuzzy, c-format --msgid "" --"An error occurred when sending image '%s' to trash.\n" --"\n" --"%s" --msgstr "Voleu enviar la imatge «%s» a la paperera?" -- --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3338 - msgid "Edit with" - msgstr "Edita amb" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3355 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Obra %s i altres fitxers del tipus %s amb:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3357 - msgid "Use as _default for this kind of file" - msgstr "Per aquest tipus de fitxers empra'l per _defecte" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3431 - msgid "Recommended Applications" - msgstr "Aplicacions recomanades" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3503 - msgid "Other Applications" - msgstr "Altres aplicacions" - -@@ -637,113 +551,75 @@ - msgid "Cursor item text color" - msgstr "" - --#: ../src/privacy_dialog.c:152 -+#: ../src/privacy_dialog.c:151 - msgid "Time range to clear:" - msgstr "Interval per netejar:" - --#: ../src/privacy_dialog.c:156 -+#: ../src/privacy_dialog.c:155 - msgid "Cleanup" - msgstr "Neteja" - --#: ../src/privacy_dialog.c:158 -+#: ../src/privacy_dialog.c:157 - msgid "Last Hour" - msgstr "Darrera hora" - --#: ../src/privacy_dialog.c:159 -+#: ../src/privacy_dialog.c:158 - msgid "Last Two Hours" - msgstr "Darreres dues hores" - --#: ../src/privacy_dialog.c:160 -+#: ../src/privacy_dialog.c:159 - msgid "Last Four Hours" - msgstr "Darreres quatre hores" - --#: ../src/privacy_dialog.c:161 -+#: ../src/privacy_dialog.c:160 - msgid "Today" - msgstr "Avui" - --#: ../src/privacy_dialog.c:162 -+#: ../src/privacy_dialog.c:161 - msgid "Everything" - msgstr "Tot" - --#: ../src/privacy_dialog.c:460 -+#: ../src/privacy_dialog.c:459 - msgid "Clear private data" - msgstr "Esborrar les dades privades" - --#: ../src/preferences_dialog.c:276 -+#: ../src/preferences_dialog.c:189 - msgid "Display" - msgstr "Visualització" - --#: ../src/preferences_dialog.c:283 -+#: ../src/preferences_dialog.c:194 - msgid "Background color" - msgstr "Color de fons" - --#: ../src/preferences_dialog.c:287 -+#: ../src/preferences_dialog.c:198 - msgid "Override background color:" - msgstr "Força el color de fons:" - --#: ../src/preferences_dialog.c:314 --msgid "Quality" --msgstr "Qualitat" -- --#: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." --msgstr "" -- --#: ../src/preferences_dialog.c:321 --#, fuzzy --msgid "Limit rendering quality" --msgstr "Qualitat màxima de renderització:" -- --#: ../src/preferences_dialog.c:333 --#, fuzzy --msgid "Fullscreen" --msgstr "_Pantalla completa" -- --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:210 - msgid "Thumbnails" - msgstr "Miniatures" - --#: ../src/preferences_dialog.c:341 --#, fuzzy -+#: ../src/preferences_dialog.c:213 - msgid "" --"The thumbnail bar can be automatically hidden when the window is fullscreen." -+"The thumbnail bar can be automatically hidden \n" -+"when the window is fullscreen." - msgstr "" - "La barra de miniatures es pot amagar automàticament \n" - "quan la finestra es mostra a pantalla completa." - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:215 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Amaga la barra de miniatures en pantalla completa" - --#: ../src/preferences_dialog.c:352 --msgid "Clock" --msgstr "" -- --#: ../src/preferences_dialog.c:355 --#, fuzzy --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "" --"La barra de miniatures es pot amagar automàticament \n" --"quan la finestra es mostra a pantalla completa." -- --#: ../src/preferences_dialog.c:358 --#, fuzzy --msgid "Show Fullscreen Clock" --msgstr "Canvia al mode de pantalla completa" -- --#: ../src/preferences_dialog.c:375 -+#: ../src/preferences_dialog.c:246 - msgid "Slideshow" - msgstr "Seqüència d'imatges" - --#: ../src/preferences_dialog.c:379 -+#: ../src/preferences_dialog.c:250 - msgid "Timeout" - msgstr "Temps esgotat" - --#: ../src/preferences_dialog.c:382 -+#: ../src/preferences_dialog.c:253 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -751,87 +627,87 @@ - "El temps que una imatge en concret es mostra durant la seqüència d'imatges\n" - "(en segons)" - --#: ../src/preferences_dialog.c:400 -+#: ../src/preferences_dialog.c:269 - msgid "Control" - msgstr "Control" - --#: ../src/preferences_dialog.c:404 -+#: ../src/preferences_dialog.c:273 - msgid "Scroll wheel" - msgstr "Roda de desplaçament" - --#: ../src/preferences_dialog.c:407 -+#: ../src/preferences_dialog.c:276 - msgid "Invert zoom direction" - msgstr "Inverteix la direcció del zoom" - --#: ../src/preferences_dialog.c:421 -+#: ../src/preferences_dialog.c:286 - msgid "Behaviour" - msgstr "Comportament" - --#: ../src/preferences_dialog.c:426 -+#: ../src/preferences_dialog.c:291 - msgid "Startup" - msgstr "Inici" - --#: ../src/preferences_dialog.c:428 -+#: ../src/preferences_dialog.c:293 - msgid "Maximize window on startup when opening an image" - msgstr "Maximitza la finestra a l'inici quan obriu una imatge" - --#: ../src/preferences_dialog.c:434 -+#: ../src/preferences_dialog.c:299 - msgid "Wrap around images" - msgstr "Ajusta al voltant de les imatges" - --#: ../src/preferences_dialog.c:453 -+#: ../src/preferences_dialog.c:318 - msgid "Desktop" - msgstr "Escriptori" - --#: ../src/preferences_dialog.c:572 -+#: ../src/preferences_dialog.c:440 - msgid "Image Viewer Preferences" - msgstr "Preferències del visor d'imatges" - --#: ../src/properties_dialog.c:181 -+#: ../src/properties_dialog.c:180 - msgid "Name:" - msgstr "Nom:" - --#: ../src/properties_dialog.c:182 -+#: ../src/properties_dialog.c:181 - msgid "Kind:" - msgstr "Tipus:" - --#: ../src/properties_dialog.c:183 -+#: ../src/properties_dialog.c:182 - msgid "Modified:" - msgstr "Modificada:" - --#: ../src/properties_dialog.c:184 -+#: ../src/properties_dialog.c:183 - msgid "Accessed:" - msgstr "Accedida:" - --#: ../src/properties_dialog.c:185 -+#: ../src/properties_dialog.c:184 - msgid "Size:" - msgstr "Mida:" - --#: ../src/properties_dialog.c:309 -+#: ../src/properties_dialog.c:308 - msgid "General" - msgstr "General" - --#: ../src/properties_dialog.c:313 -+#: ../src/properties_dialog.c:312 - msgid "Image" - msgstr "Imatge" - --#: ../src/properties_dialog.c:526 -+#: ../src/properties_dialog.c:525 - #, c-format - msgid "Date taken:" - msgstr "Data de captura:" - --#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 --#: ../src/properties_dialog.c:562 -+#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549 -+#: ../src/properties_dialog.c:561 - #, c-format - msgid "%s" - msgstr "%s" - --#: ../src/properties_dialog.c:624 -+#: ../src/properties_dialog.c:623 - #, c-format - msgid "%s - Properties" - msgstr "%s - Propietats" - --#: ../src/thumbnailer.c:460 -+#: ../src/thumbnailer.c:459 - msgid "" - "The thumbnailer-service can not be reached,\n" - "for this reason, the thumbnails can not be\n" -@@ -846,58 +722,58 @@ - "Instaŀleu Tumbler o algun altre dimoni de\n" - "miniatures per resoldre el problema." - --#: ../src/thumbnailer.c:470 -+#: ../src/thumbnailer.c:469 - msgid "Do _not show this message again" - msgstr "_No tornis a mostrar aquest missatge" - --#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+#: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234 - msgid "Style:" - msgstr "Estil:" - --#: ../src/xfce_wallpaper_manager.c:337 -+#: ../src/xfce_wallpaper_manager.c:336 - msgid "Brightness:" - msgstr "Brillantor:" - --#: ../src/xfce_wallpaper_manager.c:338 -+#: ../src/xfce_wallpaper_manager.c:337 - msgid "Saturation:" - msgstr "Saturació:" - --#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+#: ../src/xfce_wallpaper_manager.c:354 ../src/gnome_wallpaper_manager.c:245 - msgid "Set as wallpaper" - msgstr "Posa com fons d'escriptori" - --#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+#: ../src/xfce_wallpaper_manager.c:512 ../src/gnome_wallpaper_manager.c:312 - msgid "Auto" - msgstr "Automàtic" - --#: ../src/xfce_wallpaper_manager.c:511 -+#: ../src/xfce_wallpaper_manager.c:515 - msgid "Centered" - msgstr "Centrat" - --#: ../src/xfce_wallpaper_manager.c:514 -+#: ../src/xfce_wallpaper_manager.c:518 - msgid "Tiled" - msgstr "Enrajolat" - --#: ../src/xfce_wallpaper_manager.c:517 -+#: ../src/xfce_wallpaper_manager.c:521 - msgid "Stretched" - msgstr "Estirat" - --#: ../src/xfce_wallpaper_manager.c:520 -+#: ../src/xfce_wallpaper_manager.c:524 - msgid "Scaled" - msgstr "Escalat" - --#: ../src/xfce_wallpaper_manager.c:523 -+#: ../src/xfce_wallpaper_manager.c:527 - msgid "Zoomed" - msgstr "Ampliat" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Visor d'imatges Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Veieu les vostres imatges fàcilment" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Visor d'imatges Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Mostra la barra de _navegació" - -@@ -988,6 +864,12 @@ - #~ msgid "_Print" - #~ msgstr "_Imprimeix" - -+#~ msgid "Quality" -+#~ msgstr "Qualitat" -+ -+#~ msgid "Maximum render quality:" -+#~ msgstr "Qualitat màxima de renderització:" -+ - #~ msgid "Best" - #~ msgstr "La millor" - -diff -Nuar a/po/ChangeLog b/po/ChangeLog ---- a/po/ChangeLog 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ChangeLog 1970-01-01 02:00:00.000000000 +0200 -@@ -1,426 +0,0 @@ --2011-03-08 Stephan Arts -- -- * nl.po: Update dutch translation -- --2009-09-19 Stephan Arts -- -- * *.po: Update .po files -- * ristretto.pot: Add .pot file -- --2009-08-09 Masato Hashimoto -- -- * ja.po: Japanese translation update (Masato Hashimoto) -- --2009-08-08 Mike Massonnet -- -- * ast.po: Asturian translation added (Marcos Alvarez Costales) -- * gl.po: Galician translation update (Leandro Regueiro) -- --2009-07-22 Gabor Kelemen -- -- * hu.po: Translation reworked. -- --2009-06-18 Mike Massonnet -- -- * el.po: Greek translation update (Evaggelos Balaskas) -- --2009-06-12 Per Kongstad -- -- * da.po: Danish translation update (Per Kongstad) -- --2009-05-29 Mike Massonnet -- -- * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki) -- * ur.po: Urdu translation update (Muhammad Ali Makki) -- --2009-05-17 Masato Hashimoto -- -- * ja.po: Japanese translation update (Masato Hashimoto) -- --2009-04-16 Mike Massonnet -- -- * gl.po: Galician translation update (Leandro Regueiro) -- --2009-03-19 Masato Hashimoto -- -- * ja.po: Japanese translation update (Masato Hashimoto) -- --2009-03-14 Maximilian Schleiss -- -- * gl.po: Galician translation update (Leandro Regueiro) -- * it.po: Italian translation update (Cristian Marchi) -- --2009-03-05 Mike Massonnet -- -- * pt.po: Renamed pt_PT.po to pt.po (bug #4574) -- --2009-03-05 Mike Massonnet -- -- * nb.po: Renamed nb_NO.po to nb.po (bug #4574) -- --2009-03-01 Maximilian Schleiss -- -- * pl.po: Polish translation update (Piotr Sokół) -- --2009-02-07 Maximilian Schleiss -- -- * nb_NO.po: Norwegian Bokmål translation update (Terje Uriansrud) -- * pl.po: Polish translation update (Piotr Sokół) -- --2009-02-07 Alexander Toresson -- -- * sv.po: Swedish translation update (Daniel Nylander) -- --2009-01-25 Maximilian Schleiss -- -- * ja.po: Japanese translation update (Masato Hashimoto) -- --2009-01-18 Maximilian Schleiss -- -- * pt_PT: European Portuguese translation update (Nuno Miguel) -- --2009-01-13 Alexander Toresson -- -- * sv.po, LINGUAS: Swedish translation added (Daniel Nylander) -- --2009-01-04 Maximilian Schleiss -- -- * pl.po: Polish translation update (Piotr Sokół) -- --2008-12-25 Maximilian Schleiss -- -- * es.po: Spanish translation update (Abel Martín) -- * gl.po: Galician translation update (Leandro Regueiro) -- * id.po: Indonesian translation update (Andhika Padmawan) -- --2008-12-17 Lars Nielsen -- -- * da.po: updated danish translation -- --2008-12-13 Maximilian Schleiss -- -- * zh_CN.po: Simplified Chinese translation update (Hunt Xu) -- --2008-12-07 Piarres Beobide -- -- * eu.po: Basque translation update -- --2008-11-30 Maximilian Schleiss -- -- * ja.po: Japanese translation update (Masato Hashimoto) -- --2008-11-29 Mike Massonnet -- -- * fr.po: Updated French translation. -- --2008-11-28 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation. -- --2008-11-24 Piarres Beobide -- -- * eu.po: Basque translation update -- --2008-11-23 Maximilian Schleiss -- -- * uk.po: Ukrainian translation udpate (Dmitry Nikitin) -- --2008-11-21 Michal Várady -- -- * cs.po: Czech translation updated -- --2008-11-21 Piarres Beobide -- -- * eu.po: Basque translation update -- --2008-11-16 Maximilian Schleiss -- -- * ca.po; LINGUAS: Catalan translation added (Carles Muñoz Gorriz) -- --2008-11-16 Eren Türkay -- -- * tr.po: Turkish translation update (Gökmen Görgen) -- --2008-11-04 Jari Rahkonen -- -- * fi.po: Update Finnish translation. -- --2008-10-19 Maximilian Schleiss -- -- * de.po: German translation update (Fabian Nowak) -- --2008-10-18 Maximilian Schleiss -- -- * es.po, LINGUAS: Spanish translation added (Abel Martin) -- --2008-10-14 Lars Nielsen -- -- * da.po, LINGUAS: Danish translation added (Per Kongstad) -- --2008-10-07 Maximilian Schleiss -- -- * ja.po, LINGUAS: Japanese translation added (Masato Hashimoto) -- --2008-09-11 Piarres Beobide -- -- * eu.po, LINGUAS: Basque translation added -- --2008-09-08 Og Maciel -- -- * pt_PT.po: Updated European Portuguese translation by Nuno Miguel. -- --2008-08-29 Maximilian Schleiss -- -- * de.po: German translation updated (Fabian Nowak) -- --2008-08-17 Jari Rahkonen -- -- * fi.po: Updated Finnish translation -- --2008-08-10 Maximilian Schleiss -- -- * pl.po, LINGUAS: Polish translation added (Piotr Maliński) -- --2008-07-15 Mohamed Magdy -- -- * ar.po: Add Arabic translation -- --2008-07-14 Maximilian Schleiss -- -- * pt_PT.po: European Protuguese translation update (Nuno Miguel) -- --2008-06-26 Maximilian Schleiss -- -- * gl.po, LINGUAS: Galician translation added (Leandro Regueiro) -- --2008-06-22 Mike Massonnet -- -- * id.po, LINGUAS: Add Indonesian translation (Andhika Padmawan) -- --2008-06-11 Jari Rahkonen -- -- * fi.po: Updated Finnish translation -- --2008-06-09 Mike Massonnet -- -- * sk.po: Update Slovak translation (Stefan Miklosovic) -- --2008-06-05 Stavros Giannouris -- -- * el.po: Greek translation update by Evaggelos Balaskas -- -- --2008-06-01 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2008-05-27 Mike Massonnet -- -- * sk.po, LINGUAS: Add Slovak translation (Stefan Miklosovic) -- --2008-05-25 Jari Rahkonen -- -- * fi.po: Updated Finnish translation -- --2008-05-24 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2008-05-24 Mike Massonnet -- -- * fr.po: Update French translation -- --2008-05-24 Stephan Arts -- -- * nl.po: Update dutch translation -- * *.po: Update .po files -- --2008-05-13 Mike Massonnet -- -- * en_GB.po: Update translation (Jeff Bailes) -- --2008-05-12 Og Maciel -- -- * pt_BR.po: Fixed minor typo in Brazilian Portuguese translation, -- patch sent by Fábio Nogueira -- --2008-05-12 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation. -- --2008-05-10 Mike Massonnet -- -- * fr.po: Update French translation -- --2008-05-05 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation. -- --2008-04-23 Stavros Giannouris -- -- * LINGUAS: Add el in the available languages -- --2008-04-12 Stavros Giannouris -- -- * el.po: Added Greek translation by Evaggelos Balaskas -- -- --2008-04-10 Og Maciel -- -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2008-03-30 Mike Massonnet -- * ru.po, LINGUAS: Add Russian translation by Andrey Fedoseev -- -- --2008-03-23 Stephan Arts -- * zh_CN.po: Add Chinese translation by WuLi -- * de.po: Update German translation by Christian Dywan -- --2008-03-18 Mike Massonnet -- * nb_NO.po: Update Norwegian translation by Terje -- --2008-03-18 Mike Massonnet -- * pt_PT.po: Update Portuguese translation by Nuno Miguel -- --2008-02-26 Jari Rahkonen -- * fi.po: Updated Finnish translation -- --2008-02-08 Jari Rahkonen -- * fi.po: Updated Finnish translation -- --2008-02-08 Mike Massonnet -- * fr.po: Update French translation -- --2008-01-27 Stephan Arts -- * tr.po: Added turkish translation by Eren Turkay and Onur Kucuk -- --2008-01-21 Og Maciel -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2008-01-04 Stephan Arts -- * bg.po: Added Bulgarian translation by Plamen Stoychev Stoev -- --2007-12-23 Stephan Arts -- * it.po: Added Italian translation by Fabio Vergnani -- --2007-12-09 Stephan Arts -- * nl.po: Dutch translation update -- --2007-12-03 Maximilian Schleiss -- -- * de.po: German translation update -- by Fabian Nowak -- --2007-12-02 Og Maciel -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2007-12-01 Stephan Arts -- * de.po: Update German translation (by Christian Dywan) -- --2007-12-01 Mike Massonnet -- * fr.po: Update translation -- --2007-12-01 Stephan Arts -- * nl.po: Update Dutch translation -- --2007-11-30 Stephan Arts -- * nl.po: Update Dutch translation -- --2007-11-29 Og Maciel -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Fábio Nogueira -- --2007-11-25 Stephan Arts -- * cs.po: Update translation (by Miro Hrončok) -- --2007-11-25 Mike Massonnet -- * fr.po: Update translation -- --2007-11-18 Maximilian Schleiss -- * lv.po: Latvian translation added -- by Rihards Priedītis -- --2007-11-15 Mike Massonnet -- * ur.po: Update translation by Muhammad Ali Makki -- * pk.po, ur.po: Rename pk.po to ur.po. -- --2007-11-12 Mike Massonnet -- * cs.po: Update translation by Miro Hrončok -- -- --2007-11-05 Mike Massonnet -- * fr.po: Update translation -- --2007-11-04 Stephan Arts -- * cs.po: Add Czech translaton by Miro Hrončok -- -- --2007-11-04 Og Maciel -- * pt_BR.po: Updated Brazilian Portuguese translation by -- Og Maciel -- --2007-11-03 Og Maciel -- * pt_BR.po: Added new Brazilian Portuguese translation by -- Og Maciel -- --2007-10-28 Mike Massonnet -- * fr.po: Update translation -- --2007-10-28 Mike Massonnet -- * pk.po: Add new translation by محمد علي المكي -- --2007-10-24 Mike Massonnet -- * fr.po: Update translation -- --15-09-2007 Mike Massonnet -- * fr.po: Update French translation. -- --15-09-2007 Jari Rahkonen -- * fi.po: Update Finnish translation. -- --12-09-2007 Stephan Arts -- * de.po: Update german translation (thanks to Christian Dywan) -- --08-09-2007 Stephan Arts -- * nl.po: Update dutch translation -- * de.po: Update german translation (thanks to Christian Dywan) -- * fr.po: Update french translation (thanks to Mike Massonnet) -- --03-09-2007 Stephan Arts -- * de.po: Update german translation (thanks to Christian Dywan) -- --01-09-2007 Mike Massonnet -- * fr.po: Update french translation. -- --29-08-2007 Mike Massonnet -- * nb_NO.po: Add Nordic translation (thanks to Terje Uriansrud) -- --27-08-2007 Stephan Arts -- * de.po: Update German translation (thanks to Christian Dywan) -- --27-08-2007 Stephan Arts -- * nl.po: Update Dutch translation -- * de.po: Update German translation -- * fr.po: Add Mike to the translator-credits of the french translation -- --26-08-2007 Mike Massonnet -- * fr.po: Update french translations -- --25-08-2007 Stephan Arts -- * de.po: Add German translation by Christian Dywan -- * LINGUAS: Add German translation to LINGUAS -- --13-07-2007 Stephan Arts -- * nl.po: Add dutch translation -- * Makevars: Fix email adress -- * LINGUAS: Add dutch translation to LINGUAS -- * ChangeLog: Add ChangeLog file -diff -Nuar a/po/cs.po b/po/cs.po ---- a/po/cs.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/cs.po 2013-10-12 23:17:22.137987344 +0300 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-04-28 15:48+0000\n" - "PO-Revision-Date: 2012-04-28 20:13+0100\n" - "Last-Translator: Michal Várady \n" - "Language-Team: Czech\n" -@@ -45,7 +45,8 @@ - "Pro zobrazení seznamu všech dostupných\n" - "parametrů použijte příkaz %s --help\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 -+#: ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Prohlížeč obrázků" - -@@ -87,7 +88,8 @@ - msgstr "Zobrazit vlastnosti souboru" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:380 -+#: ../src/main_window.c:399 - msgid "_Edit" - msgstr "_Upravit" - -@@ -432,15 +434,18 @@ - msgid "Recently used" - msgstr "Naposledy použité" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:949 -+#: ../src/main_window.c:1460 - msgid "Press open to select an image" - msgstr "Obrázek vyberete stisknutím tlačítka Otevřít" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1322 -+#: ../src/main_window.c:1326 - msgid "Open With Other _Application..." - msgstr "Otevřít v jiné _aplikaci..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1347 -+#: ../src/main_window.c:1353 - msgid "Empty" - msgstr "Prázdný" - -@@ -452,7 +457,8 @@ - msgid "Choose 'set wallpaper' method" - msgstr "Zvolit metodu 'nastavení tapety'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2089 -+#: ../src/preferences_dialog.c:398 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -462,15 +468,18 @@ - "Toto nastavení určuje metodu, kterou aplikace Ristretto\n" - "použije k nastavení tapety pracovní plochy." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2114 -+#: ../src/preferences_dialog.c:422 - msgid "None" - msgstr "Žádný" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2118 -+#: ../src/preferences_dialog.c:426 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2122 -+#: ../src/preferences_dialog.c:430 - msgid "GNOME" - msgstr "GNOME" - -@@ -500,7 +509,8 @@ - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2923 -+#: ../src/main_window.c:3065 - msgid "Could not open file" - msgstr "Nelze otevřít soubor" - -@@ -597,31 +607,38 @@ - msgid "Active item index" - msgstr "Aktivní položka indexu" - --#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+#: ../src/icon_bar.c:409 -+#: ../src/icon_bar.c:410 - msgid "Show Text" - msgstr "Zobrazit text" - --#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+#: ../src/icon_bar.c:416 -+#: ../src/icon_bar.c:417 - msgid "Active item fill color" - msgstr "Barva výplně aktivní položky" - --#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+#: ../src/icon_bar.c:423 -+#: ../src/icon_bar.c:424 - msgid "Active item border color" - msgstr "Barva okraje aktivní položky" - --#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+#: ../src/icon_bar.c:430 -+#: ../src/icon_bar.c:431 - msgid "Active item text color" - msgstr "Barva textu aktivní položky" - --#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+#: ../src/icon_bar.c:437 -+#: ../src/icon_bar.c:438 - msgid "Cursor item fill color" - msgstr "Barva výplně položky s umístěným kurzorem" - --#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+#: ../src/icon_bar.c:444 -+#: ../src/icon_bar.c:445 - msgid "Cursor item border color" - msgstr "Barva okraje položky s umístěným kurzorem" - --#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+#: ../src/icon_bar.c:451 -+#: ../src/icon_bar.c:452 - msgid "Cursor item text color" - msgstr "Barva textu položky s umístěným kurzorem" - -@@ -657,77 +674,67 @@ - msgid "Clear private data" - msgstr "Smazat soukromé údaje" - --#: ../src/preferences_dialog.c:276 -+#: ../src/preferences_dialog.c:219 - msgid "Display" - msgstr "Zobrazení" - --#: ../src/preferences_dialog.c:283 -+#: ../src/preferences_dialog.c:224 - msgid "Background color" - msgstr "Barva pozadí" - --#: ../src/preferences_dialog.c:287 -+#: ../src/preferences_dialog.c:228 - msgid "Override background color:" - msgstr "Vynutit barvu pozadí:" - --#: ../src/preferences_dialog.c:314 -+#: ../src/preferences_dialog.c:255 - msgid "Quality" - msgstr "Kvalita" - --#: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." --msgstr "" --"Zaškrtnete-li tuto volbu, bude maximální kvalita obrázku omezena velikostí " --"obrazovky." -+#: ../src/preferences_dialog.c:259 -+msgid "With this option enabled, the maximum image-quality will be limited to the screen-size." -+msgstr "Zaškrtnete-li tuto volbu, bude maximální kvalita obrázku omezena velikostí obrazovky." - --#: ../src/preferences_dialog.c:321 -+#: ../src/preferences_dialog.c:262 - msgid "Limit rendering quality" - msgstr "Omezení kvality vykreslování" - --#: ../src/preferences_dialog.c:333 -+#: ../src/preferences_dialog.c:274 - msgid "Fullscreen" - msgstr "Celá obrazovka" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:279 - msgid "Thumbnails" - msgstr "Náhledy" - --#: ../src/preferences_dialog.c:341 --msgid "" --"The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"Panel náhledů se automaticky schová, je-li okno v režimu celé obrazovky." -+#: ../src/preferences_dialog.c:282 -+msgid "The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "Panel náhledů se automaticky schová, je-li okno v režimu celé obrazovky." - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:285 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Skrýt panel náhledů v režimu celé obrazovky" - --#: ../src/preferences_dialog.c:352 -+#: ../src/preferences_dialog.c:293 - msgid "Clock" - msgstr "Hodiny" - --#: ../src/preferences_dialog.c:355 --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "" --"Zobrazí analogové hodiny zobrazující aktuální čas, když je okno v režimu " --"celé obrazovkay" -+#: ../src/preferences_dialog.c:296 -+msgid "Show an analog clock that displays the current time when the window is fullscreen" -+msgstr "Zobrazí analogové hodiny zobrazující aktuální čas, když je okno v režimu celé obrazovkay" - --#: ../src/preferences_dialog.c:358 -+#: ../src/preferences_dialog.c:299 - msgid "Show Fullscreen Clock" - msgstr "Zobrazit hodiny přes celou obrazovku" - --#: ../src/preferences_dialog.c:375 -+#: ../src/preferences_dialog.c:315 - msgid "Slideshow" - msgstr "Promítání snímků" - --#: ../src/preferences_dialog.c:379 -+#: ../src/preferences_dialog.c:319 - msgid "Timeout" - msgstr "Prodleva" - --#: ../src/preferences_dialog.c:382 -+#: ../src/preferences_dialog.c:322 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -735,39 +742,39 @@ - "Časový interval po který je zobrazen jeden snímek při promítání\n" - "(v sekundách)" - --#: ../src/preferences_dialog.c:400 -+#: ../src/preferences_dialog.c:338 - msgid "Control" - msgstr "Ovládání" - --#: ../src/preferences_dialog.c:404 -+#: ../src/preferences_dialog.c:342 - msgid "Scroll wheel" - msgstr "Kolečko myši" - --#: ../src/preferences_dialog.c:407 -+#: ../src/preferences_dialog.c:345 - msgid "Invert zoom direction" - msgstr "Zaměnit směr přiblížení" - --#: ../src/preferences_dialog.c:421 -+#: ../src/preferences_dialog.c:355 - msgid "Behaviour" - msgstr "Chování" - --#: ../src/preferences_dialog.c:426 -+#: ../src/preferences_dialog.c:360 - msgid "Startup" - msgstr "Při spuštění" - --#: ../src/preferences_dialog.c:428 -+#: ../src/preferences_dialog.c:362 - msgid "Maximize window on startup when opening an image" - msgstr "Maximalizovat okno při spuštění během otevírání obrázku" - --#: ../src/preferences_dialog.c:434 -+#: ../src/preferences_dialog.c:368 - msgid "Wrap around images" - msgstr "Orámování obrázků" - --#: ../src/preferences_dialog.c:453 -+#: ../src/preferences_dialog.c:387 - msgid "Desktop" - msgstr "Pracovní plocha" - --#: ../src/preferences_dialog.c:572 -+#: ../src/preferences_dialog.c:509 - msgid "Image Viewer Preferences" - msgstr "Předvolby Prohlížeče obrázků" - -@@ -804,7 +811,8 @@ - msgid "Date taken:" - msgstr "Datum pořízení:" - --#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:538 -+#: ../src/properties_dialog.c:550 - #: ../src/properties_dialog.c:562 - #, c-format - msgid "%s" -@@ -835,7 +843,8 @@ - msgid "Do _not show this message again" - msgstr "Tuto zprávu již příště _nezobrazovat" - --#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" - msgstr "Styl:" - -@@ -847,11 +856,13 @@ - msgid "Saturation:" - msgstr "Sytost:" - --#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+#: ../src/xfce_wallpaper_manager.c:355 -+#: ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" - msgstr "Nastavit jako tapetu" - --#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+#: ../src/xfce_wallpaper_manager.c:508 -+#: ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" - msgstr "Automaticky" - -@@ -875,14 +886,14 @@ - msgid "Zoomed" - msgstr "Přiblížený" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Prohlížeč fotografií Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Prohlížejte si obrázky jednoduše" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Prohlížeč fotografií Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Zobrazit panel _Navigace" - -diff -Nuar a/po/da.po b/po/da.po ---- a/po/da.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/da.po 2013-10-12 23:17:22.137987344 +0300 -@@ -2,19 +2,19 @@ - # Copyright (C) 2007 Stephan Arts - # This file is distributed under the same license as the Ristretto package. - # Per Kongstad , 2008, 2009. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: ristretto 0.0.90\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-05-12 07:39+0000\n" - "PO-Revision-Date: 2010-01-15 12:00+0100\n" - "Last-Translator: Per Kongstad \n" - "Language-Team: Danish \n" --"Language: da\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: da\n" - "X-Poedit-Language: Danish\n" - "X-Poedit-SourceCharset: utf-8\n" - "X-Poedit-Country: DENMARK\n" -@@ -47,7 +47,7 @@ - "Prøv %s --help for at se en fuld liste over tilgængelige " - "kommandolinjetilvalg.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Billedfremviser" - -@@ -681,9 +681,7 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" --"Med dette tilvalg slået til, vil maksimal billedkvalitet blive begrænset til " --"skærmstørrelsen." -+msgstr "Med dette tilvalg slået til, vil maksimal billedkvalitet blive begrænset til skærmstørrelsen." - - #: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" -@@ -880,14 +878,14 @@ - msgid "Zoomed" - msgstr "Forstørret" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Ristretto billedfremviser" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Se nemt dine billeder" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto billedfremviser" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Vis _værktøjslinje" - -diff -Nuar a/po/de.po b/po/de.po ---- a/po/de.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/de.po 2013-10-12 23:17:22.138987344 +0300 -@@ -1,26 +1,26 @@ --# German translations for ristretto package. --# Copyright (C) 2007 Stephan Arts --# This file is distributed under the same license as the ristretto package. --# Christian Dywan , 2007. --# Fabian Nowak , 2007, 2008. --# Thomas Schütz , 2012. --# -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# -+# Translators: -+# gem , 2013 - msgid "" - msgstr "" --"Project-Id-Version: ristretto\n" -+"Project-Id-Version: Xfce Apps\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" --"PO-Revision-Date: 2010-02-18 15:50+0100\n" --"Last-Translator: Thomas Schütz \n" --"Language-Team: German \n" --"Language: \n" -+"POT-Creation-Date: 2013-07-03 20:30+0200\n" -+"PO-Revision-Date: 2013-09-19 10:34+0000\n" -+"Last-Translator: gem \n" -+"Language-Team: German (http://www.transifex.com/projects/p/xfce/language/de/)\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: de\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" - - #: ../src/main.c:62 - msgid "Version information" --msgstr "Versionsinformation" -+msgstr "Versions-Informationen" - - #: ../src/main.c:66 - msgid "Start in fullscreen mode" -@@ -28,11 +28,11 @@ - - #: ../src/main.c:70 - msgid "Start a slideshow" --msgstr "Diavorführung starten" -+msgstr "Diaschau starten" - - #: ../src/main.c:78 - msgid "Show settings dialog" --msgstr "Einstellungsdialog anzeigen" -+msgstr "Einstellungsdialog zeigen" - - #: ../src/main.c:106 - #, c-format -@@ -41,526 +41,514 @@ - "\n" - "Try %s --help to see a full list of\n" - "available command line options.\n" --msgstr "" --"%s: %s\\Geben Sie »%s --help« ein, um eine komplette Liste verfügbarer " --"Kommandozeilenoptionen zu eralten.\n" -+msgstr "%s: %s\n\nVersuchen Sie %s --help, um eine komplette Liste\nder möglichen Befehlszeilen-Optionen zu sehen.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3 - msgid "Image Viewer" - msgstr "Bildbetrachter" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Datei" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." --msgstr "Ö_ffnen …" -+msgstr "Ö_ffnen…" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Bild öffnen" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." --msgstr "Kopie _speichern …" -+msgstr "Kopie _speichern..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Eine Kopie des Bildes speichern" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." --msgstr "_Eigenschaften …" -+msgstr "Ei_genschaften..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" --msgstr "Eigenschaften der Datei anzeigen" -+msgstr "Dateieigenschaften anzeigen" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Bearbeiten" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Dieses Bild bearbeiten" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" --msgstr "S_chließen" -+msgstr "_Schließen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" --msgstr "Dieses Bild schließen" -+msgstr "Dieses Fenster schließen" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" --msgstr "_Beenden" -+msgstr "B_eenden" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Ristretto beenden" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" --msgstr "Öffnen _mit …" -+msgstr "_Öffnen mit ..." - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" --msgstr "_Sortierung" -+msgstr "S_ortierung" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Löschen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" --msgstr "Dieses Bild von der Festplatte löschen" -+msgstr "Dieses Bild vom Datenrträger löschen" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." --msgstr "Private Daten _löschen …" -+msgstr "_Private Daten löschen ..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "_Einstellungen …" -+msgstr "_Einstellungen ..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Ansicht" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" --msgstr "_Vollbildmodus" -+msgstr "V_ollbild" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" --msgstr "In den Vollbildmodus wechseln" -+msgstr "Zum Vollbildmodus wechseln" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Vollbildmodus verlassen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Vollbildmodus verlassen" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "Al_s Hintergrundbild einstellen …" -+msgstr "Als _Hintergrundbild verwenden ..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Zoom" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Ver_größern" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Vergrößern" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Ver_kleinern" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Verkleinern" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" --msgstr "_Passende Größe" -+msgstr "Ein_passen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "Bild an Fenstergröße anpassen" -+msgstr "Größe an Fenster anpassen" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Normalgröße" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "Originalgröße des Bildes" -+msgstr "Auf 100\"%\" zoomen" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" --msgstr "_Drehen" -+msgstr "_Drehung" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" --msgstr "Nach _rechts drehen" -+msgstr "_Rechts drehen" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" --msgstr "Nach _links drehen" -+msgstr "_Links drehen" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_Gehe zu" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Vor" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Nächstes Bild" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Zurück" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Vorheriges Bild" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_Erstes" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Erstes Bild" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Letztes" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Letztes Bild" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Hilfe" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" --msgstr "I_nhalt" -+msgstr "_Inhalt" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" --msgstr "Nutzerhandbuch zu Ristretto anzeigen" -+msgstr "Handbuch zu Ristretto anzeigen" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Info" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Informationen über Ristretto anzeigen" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Position" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Größe" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" --msgstr "_Position der Miniaturvorschau" -+msgstr "_Position Vorschauleiste" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" --msgstr "_Vorschaubildgröße" -+msgstr "Größe V_orschaubilder" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "_Vollbildmodus verlassen" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" --msgstr "_Werkzeugleiste anzeigen" -+msgstr "_Werkzeugleiste zeigen" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" --msgstr "Miniaturbilderleis_te anzeigen" -+msgstr "Vorschauleiste _zeigen" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" --msgstr "_Statusleiste anzeigen" -+msgstr "_Statusleiste zeigen" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" --msgstr "Nach Dateinamen sortieren" -+msgstr "Sortiere nach Dateinamen" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" --msgstr "Nach Datum sortieren" -+msgstr "Sortiere nach Datum" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Links" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Rechts" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Oben" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Unten" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Sehr klein" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Kleiner" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Klein" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Normal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Groß" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Größer" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Sehr groß" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" --msgstr "_Starten" -+msgstr "_Abspielen" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" --msgstr "Diavorführung starten" -+msgstr "Diaschau abspielen" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" --msgstr "_Pause" -+msgstr "_Pausieren" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" --msgstr "Diavorführung pausieren" -+msgstr "Diaschau pausieren" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" --msgstr "_Zuletzt geöffnet" -+msgstr "_Zuletzt verwendet" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" --msgstr "Zuletzt geöffnet" -+msgstr "Zuletzt verwendet" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Zum Auswählen eines Bildes »Öffnen« drücken" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "Mit einer anderen _Anwendung öffnen …" -+msgstr "Mit anderer _Anwendung öffnen ..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Leer" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." --msgstr "Ladevorgang …" -+msgstr "Lädt..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" --msgstr "Wählen Sie die Methode zum Setzen des Hintergrundbildes" -+msgstr "Wähle Methode mit der Hintergrundbild gesetzt wird" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." --msgstr "" --"Bitte geben Sie Ihre verwendete Arbeitsumgebung an.\n" --"Diese Einstellung wird von Ristretto benutzt,\n" --"um das Hintergrundbild des Schreibtisches festzulegen" -+msgstr "Stellen Sie ein welches System derzeit die Arbeitsfläche verwaltet.\nDiese Einstellung bestimmt welche Methode Ristretto nutzen wird\num das Hintergrundbild zu setzen." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" --msgstr "Keine/Andere" -+msgstr "Keine" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2597 - msgid "Developer:" - msgstr "Entwickler:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2606 - msgid "Ristretto is an image viewer for the Xfce desktop environment." --msgstr "Ristretto ist ein Bildbetrachter für die Arbeitsumgebung Xfce." -+msgstr "Ristretto ist ein Bildbetrachter für die Xfce-Arbeitsumgebung." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2614 - msgid "translator-credits" - msgstr "" --"Christian Dywan \n" --"Fabian Nowak \n" --"Christoph Wickert " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2916 - msgid "Open image" - msgstr "Bild öffnen" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2935 - msgid "Images" - msgstr "Bilder" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2940 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 - msgid "Could not open file" --msgstr "Datei konnte nicht geöffnet werden" -+msgstr "Die Datei konnte nicht geöffnet werden" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3142 - msgid "Save copy" --msgstr "Kopie speichern" -+msgstr "Kopie speichern..." - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3168 - msgid "Could not save file" - msgstr "Datei konnte nicht gespeichert werden" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3336 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" --msgstr "" --"Sind Sie sicher, dass Sie das Bild »%s« von der Festplatte löschen möchten?" -+msgstr "Soll das Bild '%s' wirklich vom Datenträger gelöscht werden?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3354 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "" --"Sind Sie sicher, dass Sie das Bild »%s« von der Festplatte löschen möchten?" -+msgstr "Beim Löschen des Bildes '%s' vom Datenträger trat ein Fehler auf.\n\n%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3370 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" --msgstr "" --"Sind Sie sicher, dass Sie das Bild »%s« von der Festplatte löschen möchten?" -+msgstr "Sind Sie sicher, dass Sie das Bild '%s' in den Müll verschieben wollen?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3388 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" --msgstr "" --"Sind Sie sicher, dass Sie das Bild »%s« von der Festplatte löschen möchten?" -+msgstr "Beim Verschieben des Bildes '%s' in den Müll trat ein Fehler auf.\n\n%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3718 - msgid "Edit with" - msgstr "Bearbeiten mit" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3736 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "»%s« und andere Dateien des Typs »%s« öffnen mit:" -+msgstr "%s und weitere Dateien des Typs %s öffnen mit:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3741 - msgid "Use as _default for this kind of file" --msgstr "Für diesen Dateitypen als _Standard festlegen" -+msgstr "Stan_dardmäßig für Dateien dieses Typs benutzen" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3831 - msgid "Recommended Applications" - msgstr "Empfohlene Anwendungen" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3911 - msgid "Other Applications" - msgstr "Andere Anwendungen" - -@@ -570,23 +558,23 @@ - - #: ../src/icon_bar.c:346 - msgid "The orientation of the iconbar" --msgstr "Ausrichtung der Symbolleiste" -+msgstr "Die Ausrichtung der Symbolleiste" - - #: ../src/icon_bar.c:362 - msgid "File column" --msgstr "Dateispalte" -+msgstr "" - - #: ../src/icon_bar.c:363 - msgid "Model column used to retrieve the file from" --msgstr "" -+msgstr "Modellspalte, aus welcher die Datei entnommen wird" - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "" -+msgstr "Symbolleistenmodell" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "" -+msgstr "Modell für die Symbolleiste" - - #: ../src/icon_bar.c:392 - msgid "Active" -@@ -594,39 +582,39 @@ - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "" -+msgstr "Index des aktiven Elements" - - #: ../src/icon_bar.c:409 ../src/icon_bar.c:410 - msgid "Show Text" --msgstr "Text anzeigen" -+msgstr "Zeige Text" - - #: ../src/icon_bar.c:416 ../src/icon_bar.c:417 - msgid "Active item fill color" --msgstr "Füllfarbe des aktiven Objekts" -+msgstr "Füllfarbe des aktiven Elements" - - #: ../src/icon_bar.c:423 ../src/icon_bar.c:424 - msgid "Active item border color" --msgstr "Randfarbe des aktiven Objekts" -+msgstr "Randfarbe des aktiven Elements" - - #: ../src/icon_bar.c:430 ../src/icon_bar.c:431 - msgid "Active item text color" --msgstr "Textfarbe des aktiven Objekts" -+msgstr "Textfarbe des aktiven Elements" - - #: ../src/icon_bar.c:437 ../src/icon_bar.c:438 - msgid "Cursor item fill color" --msgstr "Füllfarbe des Zeigerobjekts" -+msgstr "Füllfarbe des Elements unter dem Zeiger" - - #: ../src/icon_bar.c:444 ../src/icon_bar.c:445 - msgid "Cursor item border color" --msgstr "Randfarbe des Zeigerobjekts" -+msgstr "Randfarbe des Elements unter dem Zeiger" - - #: ../src/icon_bar.c:451 ../src/icon_bar.c:452 - msgid "Cursor item text color" --msgstr "Textfarbe des Zeigerobjekts" -+msgstr "Textfarbe des Elements unter dem Zeiger" - - #: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" --msgstr "Zu löschender Zeitraum:" -+msgstr "Zeitraum der Bereinigung:" - - #: ../src/privacy_dialog.c:156 - msgid "Cleanup" -@@ -638,11 +626,11 @@ - - #: ../src/privacy_dialog.c:159 - msgid "Last Two Hours" --msgstr "Letzte beiden Stunden" -+msgstr "Die letzten 2 Stunden" - - #: ../src/privacy_dialog.c:160 - msgid "Last Four Hours" --msgstr "Letzte vier Stunden" -+msgstr "Die letzten 3 Stunden" - - #: ../src/privacy_dialog.c:161 - msgid "Today" -@@ -666,7 +654,7 @@ - - #: ../src/preferences_dialog.c:287 - msgid "Override background color:" --msgstr "Hintergrundfarbe ersetzen:" -+msgstr "Hintergrundfarbe überschreiben:" - - #: ../src/preferences_dialog.c:314 - msgid "Quality" -@@ -676,17 +664,15 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" --"Wenn diese Option aktiviert ist, wird die maximale Bildqualität auf die " --"Bildschirmgröße beschränkt." -+msgstr "Wenn diese Einstellung aktiviert ist, wird die maximale Bildqualität auf die Bildschirmgröße beschränkt." - - #: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" --msgstr "Darstellungsqualität einschränken" -+msgstr "Darstellungsqualität beschränken" - - #: ../src/preferences_dialog.c:333 - msgid "Fullscreen" --msgstr "Vollbildmodus" -+msgstr "Vollbild" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" -@@ -695,13 +681,11 @@ - #: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"Die Miniaturbilderleiste kann im \n" --"Vollbildmodus automatisch versteckt werden." -+msgstr "Die Miniaturbilderleiste kann im Vollbildmodus automatisch versteckt werden." - - #: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" --msgstr "Miniaturbildleiste im Vollbildmodus verbergen" -+msgstr "Miniaturbilderleiste im Vollbildmodus verstecken." - - #: ../src/preferences_dialog.c:352 - msgid "Clock" -@@ -711,29 +695,25 @@ - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" --msgstr "" --"Die Miniaturbilderleiste kann im \n" --"Vollbildmodus automatisch versteckt werden." -+msgstr "Analoge Uhr im Vollbildmodus zeigen, welche die aktuelle Uhrzeit anzeigt" - - #: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" --msgstr "Uhr im Vollbildmodus anzeigen" -+msgstr "Zeige Uhr im Vollbildmodus" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" --msgstr "Diavorführung" -+msgstr "Diaschau" - - #: ../src/preferences_dialog.c:379 - msgid "Timeout" --msgstr "Zeitspanne" -+msgstr "Zeitüberschreitung" - - #: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" --msgstr "" --"Die Zeitspanne, die ein Bild angezeigt wird\n" --"(in Sekunden)" -+msgstr "Die Zeitspanne, die ein Bild während der Diaschau angezeigt wird\n(in Sekunden)" - - #: ../src/preferences_dialog.c:400 - msgid "Control" -@@ -753,11 +733,11 @@ - - #: ../src/preferences_dialog.c:426 - msgid "Startup" --msgstr "Programmstart" -+msgstr "Anwendungsstart" - - #: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" --msgstr "Fenster beim Start maximieren, wenn ein Bild geöffnet wird" -+msgstr "Fenster beim Anwendungsstart maximieren, wenn Bild geöffnet wird" - - #: ../src/preferences_dialog.c:434 - msgid "Wrap around images" -@@ -765,7 +745,7 @@ - - #: ../src/preferences_dialog.c:453 - msgid "Desktop" --msgstr "Arbeitsumgebung" -+msgstr "Arbeitsfläche" - - #: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" -@@ -777,15 +757,15 @@ - - #: ../src/properties_dialog.c:182 - msgid "Kind:" --msgstr "Typ:" -+msgstr "Art:" - - #: ../src/properties_dialog.c:183 - msgid "Modified:" --msgstr "Geändert:" -+msgstr "Modifiziert:" - - #: ../src/properties_dialog.c:184 - msgid "Accessed:" --msgstr "Zugegriffen:" -+msgstr "Letzter Zugriff:" - - #: ../src/properties_dialog.c:185 - msgid "Size:" -@@ -813,7 +793,7 @@ - #: ../src/properties_dialog.c:624 - #, c-format - msgid "%s - Properties" --msgstr "Eigenschaften von %s" -+msgstr "%s - Eigenschaften" - - #: ../src/thumbnailer.c:460 - msgid "" -@@ -823,17 +803,11 @@ - "\n" - "Install Tumbler or another thumbnailing daemon\n" - "to resolve this issue." --msgstr "" --"Der Dienst für Vorschaubilder ist nicht erreichbar,\n" --"daher können keine Vorschaubilder erstellt werden\n" --"\n" --"Bitte installieren Sie Tumbler oder einen\n" --"anderen Dienst für Vorschaubilder, um das\n" --"Problem zu beheben." -+msgstr "Der Miniaturbilder-Service ist nicht verfügbar,\naus diesem Grund können keine Miniaturbilder\nerzeugt werden.\n\nInstallieren Sie Tumbler oder einen anderen\nMiniaturbilder Daemon um dieses Problem zu beheben." - - #: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" --msgstr "Diese Nachricht _nicht noch einmal anzeigen" -+msgstr "Diese Nachricht _nicht erneut anzeigen" - - #: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" -@@ -849,7 +823,7 @@ - - #: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" --msgstr "Als Hintergrundbild nutzen" -+msgstr "Als Hintergrundbild verwenden" - - #: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" -@@ -882,160 +856,3 @@ - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Bilder anschauen leicht gemacht" -- --#~ msgid "Show _Navigation Toolbar" --#~ msgstr "_Navigationsleiste anzeigen" -- --#~ msgid "Toolbars" --#~ msgstr "Werkzeugleisten" -- --#~ msgid "Merge toolbars" --#~ msgstr "Werkzeugleisten zusammenfassen" -- --#~ msgid "Spacing" --#~ msgstr "Abstand" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "Die Größe des Abstands zwischen den Vorschaubildern" -- --#~ msgid "border width" --#~ msgstr "Randbreite" -- --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "Randbreite der Vorschaubildleiste" -- --#~ msgid "Scaling" --#~ msgstr "Skalierung" -- --#~ msgid "Don't scale over 100% when maximizing the window." --#~ msgstr "Beim Maximieren des Fensters nicht über 100% vergrößern." -- --#~ msgid "Preferences" --#~ msgstr "Einstellungen für den Bildbetrachter" -- --#~ msgid "Image viewer" --#~ msgstr "Bildbetrachter" -- --#~ msgid "Open _Folder" --#~ msgstr "_Ordner öffnen" -- --#~ msgid "Open a folder" --#~ msgstr "Einen Ordner öffnen" -- --#~ msgid "_Close All" --#~ msgstr "_Alle schließen" -- --#~ msgid "Close all images" --#~ msgstr "Alle Bilder schließen" -- --#~ msgid "Open folder" --#~ msgstr "Ordner öffnen" -- --#~ msgid "Open entire folder on startup" --#~ msgstr "Ganzen Ordner beim Start öffnen" -- --#~ msgid "Monitor:" --#~ msgstr "Bildschirm:" -- --#~ msgid "One" --#~ msgstr "Eins" -- --#~ msgid "Two" --#~ msgstr "Zwei" -- --#~ msgid "Three" --#~ msgstr "Drei" -- --#~ msgid "Four" --#~ msgstr "Vier" -- --#~ msgid "Show preview when loading image" --#~ msgstr "Vorschau während des Ladens anzeigen" -- --#~ msgid "No action" --#~ msgstr "Keine Aktion" -- --#~ msgid "Memory" --#~ msgstr "Speicher" -- --#~ msgid "Image cache" --#~ msgstr "Bildzwischenspeicher" -- --#~ msgid "Cache size" --#~ msgstr "Zwischenspeichergröße" -- --#~ msgid "MB" --#~ msgstr "MB" -- --#~ msgid "Enable cache" --#~ msgstr "Bildzwischenspeicher aktivieren" -- --#~ msgid "Enable preloading" --#~ msgstr "Bilder im Voraus laden" -- --#~ msgid "filmstrip width" --#~ msgstr "Breite der Bildleiste" -- --#~ msgid "the width of the thumbnail-bar film-strip" --#~ msgstr "Die Breite der Miniaturbilderleiste" -- --#~ msgid "_Print" --#~ msgstr "_Drucken" -- --#~ msgid "Best" --#~ msgstr "Am Besten" -- --#~ msgid "High" --#~ msgstr "Hoch" -- --#~ msgid "Medium" --#~ msgstr "Mittel" -- --#~ msgid "Low" --#~ msgstr "Niedrig" -- --#~ msgid "Ristretto" --#~ msgstr "Ristretto" -- --#~ msgid "_Thumbnail Bar" --#~ msgstr "Miniaturbilder" -- --#~ msgid "Opening file(s)..." --#~ msgstr "Datei(en) öffnen..." -- --#~ msgid "No applications available" --#~ msgstr "Keine Programme verfügbar" -- --#~ msgid "Show _Horizontally" --#~ msgstr "_Horizontal anzeigen" -- --#~ msgid "Show _Vertically" --#~ msgstr "_Vertikal anzeigen" -- --#~ msgid "H_ide" --#~ msgstr "Ver_bergen" -- --#~ msgid "" --#~ "One or more images have been modified, do you want to save the changes?" --#~ msgstr "" --#~ "Ein oder mehrere Bilder wurden geändert. Möchten Sie die Änderungen " --#~ "speichern?" -- --#~ msgid "_Preload images (GUI more responsive but more CPU-intensive)" --#~ msgstr "_Bilder vorladen (schnellere Oberfläche, aber mehr CPU-Last)" -- --#~ msgid "Hide the thumbnails bar during slideshow" --#~ msgstr "Miniaturbilder während Diashow verbergen" -- --#~ msgid "Xfce Image viewer" --#~ msgstr "Xfce-Bildbetrachter" -- --#~ msgid "Preload" --#~ msgstr "Vorladen" -- --#~ msgid "" --#~ "Preload images during slideshow\n" --#~ "(uses more memory)" --#~ msgstr "" --#~ "Bilder während einer Diavorführung vorladen\n" --#~ "(benötigt mehr Speicher)" -diff -Nuar a/po/el.po b/po/el.po ---- a/po/el.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/el.po 2013-10-12 23:17:22.138987344 +0300 -@@ -3,24 +3,26 @@ - # This file is distributed under the same license as the PACKAGE package. - # Evaggelos Balaskas , 2008. - # Georgios Stefanakis , 2012. -+# Efstathios Iosifidis , 2012. -+# Γιώργος Στεφανάκης , 2013. - # - msgid "" - msgstr "" - "Project-Id-Version: el\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" --"PO-Revision-Date: 2012-02-13 20:59+0200\n" --"Last-Translator: Georgios Stefanakis \n" -+"POT-Creation-Date: 2013-01-18 18:27+0000\n" -+"PO-Revision-Date: 2013-01-18 22:38+0200\n" -+"Last-Translator: Γιώργος Στεφανάκης \n" - "Language-Team: Greek, Modern (1453-) <>\n" - "Language: el\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=2; plural=(n != 1)\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Poedit-Language: Greek\n" - "X-Poedit-SourceCharset: utf-8\n" - "X-Poedit-Country: GREECE\n" --"X-Generator: KBabel 1.11.4\n" -+"X-Generator: Gtranslator 2.91.5\n" - - #: ../src/main.c:62 - msgid "Version information" -@@ -50,435 +52,414 @@ - "Δοκίμαστε %s --help για να δείτε μία πλήρη λίστα με όλες τις διαθέσιμες " - "επιλογές της γραμμής εντολών.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Εφαρμογή προβολής εικόνων" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Αρχείο" - - #. Icon-name --#: ../src/main_window.c:362 --#, fuzzy -+#: ../src/main_window.c:369 - msgid "_Open..." --msgstr "Άν_οιγμα" -+msgstr "Άν_οιγμα..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Άνοιγμα μίας εικόνας" - - #. Icon-name --#: ../src/main_window.c:368 --#, fuzzy -+#: ../src/main_window.c:375 - msgid "_Save copy..." --msgstr "_Αποθήκευση αντιγράφου" -+msgstr "_Αποθήκευση αντιγράφου..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Αποθήκευση ενός αντίγραφου της εικόνας" - - #. Icon-name --#: ../src/main_window.c:374 --#, fuzzy -+#: ../src/main_window.c:381 - msgid "_Properties..." --msgstr "_Ιδιότητες" -+msgstr "_Ιδιότητες..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Προβολή ιδιοτήτων του επιλεγμένου αρχείου" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Επεξεργασία" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 --#, fuzzy -+#: ../src/main_window.c:389 - msgid "Edit this image" --msgstr "Εκτύπωση εικόνας" -+msgstr "Επεξεργασία αυτής της εικόνας" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Κλείσιμο" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Κλείσιμο της εικόνας" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Έξοδος" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Έξοδος από το ristretto" - --#: ../src/main_window.c:403 --#, fuzzy -+#: ../src/main_window.c:410 - msgid "_Open with" --msgstr "Άν_οιγμα με..." -+msgstr "Άν_οιγμα με" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Ταξινόμηση" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Διαγραφή" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Διαγραφή αυτής της εικόνας από τον δίσκο" - - #. Icon-name --#: ../src/main_window.c:417 --#, fuzzy -+#: ../src/main_window.c:424 - msgid "_Clear private data..." --msgstr "_Καθαρισμός προσωπικών δεδομένων" -+msgstr "_Εκκαθάριση προσωπικών δεδομένων..." - - #. Icon-name --#: ../src/main_window.c:423 --#, fuzzy -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "_Προτιμήσεις" -+msgstr "_Προτιμήσεις..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Εμφάνιση" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Πλήρης Οθόνη" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 --#, fuzzy -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" --msgstr "Εκκίνηση σε πλήρη οθόνη" -+msgstr "Εναλλαγή σε πλήρη οθόνη" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "Έξ_οδος από πλήρη οθόνη" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 --#, fuzzy -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" --msgstr "Έξ_οδος από πλήρη οθόνη" -+msgstr "Έξοδος από πλήρη οθόνη" - - #. Icon-name --#: ../src/main_window.c:446 --#, fuzzy -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "_Ορισμός της επιφάνεια εργασίας" -+msgstr "_Ορισμός ως επιφάνεια εργασίας..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Μεγέθυνση" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Μεγέ_θυνση" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 --#, fuzzy -+#: ../src/main_window.c:466 - msgid "Zoom in" --msgstr "Μεγέ_θυνση" -+msgstr "Μεγέθυνση" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Σ_μίκρυνση" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 --#, fuzzy -+#: ../src/main_window.c:472 - msgid "Zoom out" --msgstr "Σ_μίκρυνση" -+msgstr "Σμίκρυνση" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Βέλτιστη μεγέθυνση" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 --#, fuzzy -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "Μεγέθυνση και σμίκρυνση" -+msgstr "Εστίαση ώστε να χωράει στο παράθυρο" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "Κανο_νικό μέγεθος" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "" -+msgstr "Μεγένθυση στο 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Περιστροφή" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Δ_εξιά περιστροφή" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Αρ_ιστερή περιστροφή" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_Μετάβαση" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Επόμενη" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 --#, fuzzy -+#: ../src/main_window.c:512 - msgid "Next image" --msgstr "Άνοιγμα εικόνας" -+msgstr "Επόμενη εικόνα" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Προηγούμενη" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 --#, fuzzy -+#: ../src/main_window.c:518 - msgid "Previous image" --msgstr "Προφόρτωση εικόνων" -+msgstr "Προηγούμενη εικόνα" - - #. Icon-name --#: ../src/main_window.c:515 --#, fuzzy -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_Πρώτη" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 --#, fuzzy -+#: ../src/main_window.c:524 - msgid "First image" --msgstr "Εναλλαγή εικόνων" -+msgstr "Πρώτη εικόνα" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Τελευταία" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 --#, fuzzy -+#: ../src/main_window.c:530 - msgid "Last image" --msgstr "Κλείσιμο της εικόνας" -+msgstr "Τελευταία εικόνα" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Βοήθεια" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Περιεχόμενα" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Εμφανίζει την τεκμηρίωση του ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Περί" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Εμφάνιση πληροφοριών σχετικά με το ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Θέση" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Μέγεθος" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "_Θέση μπάρας μικρογραφιών" - --#: ../src/main_window.c:557 --#, fuzzy -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "_Μέγεθος μικρογραφιών" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Επαναφορά από πλ_ήρη οθόνη" - - #. Icon-name --#: ../src/main_window.c:578 --#, fuzzy -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" --msgstr "Εμφάνιση εργαλειοθήκης _αρχείο" -+msgstr "_Εμφάνιση Εργαλειοθήκης" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Εμφάνιση μπάρας _μικρογραφιών" - - #. Icon-name --#: ../src/main_window.c:594 --#, fuzzy -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" --msgstr "Εμφάνιση μπάρας _μικρογραφιών" -+msgstr "Εμφάνιση γραμμής _κατάστασης" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "Ταξινόμηση ανά όνομα αρχείου" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "Ταξινόμηση ανά ημερομηνία" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Αριστερά" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Δεξιά" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Πάνω" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Κάτω" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Πολύ μικρό" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Μικρότερο" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Μικρό" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Κανονικό" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Μεγάλο" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Μεγαλύτερο" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Πολύ μεγάλο" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Εκκίνηση" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Εκκίνηση προβολής διαφανειών" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Παύση" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Παύση προβολής διαφανειών" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Χρησιμοποιήθηκε πρόσφατα" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Χρησιμοποιήθηκε πρόσφατα" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Πατήστε άνοιγμα για να επιλέξετε μία εικόνα" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "" -+msgstr "Άνοιγμα Με Άλλη _Εφαρμογή..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Κενή" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." --msgstr "" -+msgstr "Φόρτωση..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Επιλέξτε την μέθοδο 'εφαρμογή ταπετσαρίας'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -489,162 +470,168 @@ - "Ristretto\n" - "για την ρύθμιση της ταπετσαρίας του περιβάλλοντος εργασίας." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Κανένα" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Δημιουργός:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "" - "Το ristretto είναι ένας διαχειριστής εικόνων για το γραφικό περιβάλλον xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "Evaggelos Balaskas 2008, 2009" - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Άνοιγμα εικόνας" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Εικόνες" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Αποτυχία ανοίγματος εικόνας" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Αποθήκευση αντίγραφου" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Αδυναμία αποθήκευσης αρχείου" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την εικόνα '%s' από το δίσκο;" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format -+#: ../src/main_window.c:3345 -+#, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την εικόνα '%s' από το δίσκο;" -+msgstr "" -+"Παρουσιάστηκε σφάλμα κατά την διαγραφή της εικόνας '%s' από το δίσκο.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3326 --#, fuzzy, c-format -+#: ../src/main_window.c:3361 -+#, c-format - msgid "Are you sure you want to send image '%s' to trash?" --msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την εικόνα '%s' από το δίσκο;" -+msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την εικόνα '%s';" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" - msgstr "" -+"Εμφανίστηκε σφάλμα κατά την αποστολή της εικόνας '%s' στον κάδο " -+"ανακύκλωσης.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" --msgstr "" -+msgstr "Επεξεργασία με" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "" -+msgstr "Άνοιγμα του %s και άλλων αρχείων του τύπου %s με:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" --msgstr "" -+msgstr "Χρήση ως _προεπιλογή για αυτό τον τύπο αρχείων" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" --msgstr "" -+msgstr "Συνιστώμενες Εφαρμογές" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" --msgstr "" -+msgstr "Άλλες Εφαρμογές" - - #: ../src/icon_bar.c:345 --#, fuzzy - msgid "Orientation" --msgstr "_Περιστροφή" -+msgstr "Προσανατολισμός" - - #: ../src/icon_bar.c:346 - msgid "The orientation of the iconbar" --msgstr "" -+msgstr "Ο προσανατολισμός της μπάρας εικονιδίων" - - #: ../src/icon_bar.c:362 - msgid "File column" --msgstr "" -+msgstr "Στήλη αρχείου" - - #: ../src/icon_bar.c:363 - msgid "Model column used to retrieve the file from" --msgstr "" -+msgstr "Το μοντέλο στήλης που χρησιμοποιείται για τη λήψη του αρχείου από" - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "" -+msgstr "Μοντέλο μπάρας εικόνων" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "" -+msgstr "Μοντέλο για την μπάρα εικόνων" - - #: ../src/icon_bar.c:392 - msgid "Active" --msgstr "" -+msgstr "Ενεργό" - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "" -+msgstr "Ενεργοποίηση ευρετηρίου αντικειμένου" - - #: ../src/icon_bar.c:409 ../src/icon_bar.c:410 - msgid "Show Text" --msgstr "" -+msgstr "Εμφάνιση Κειμένου" - - #: ../src/icon_bar.c:416 ../src/icon_bar.c:417 - msgid "Active item fill color" --msgstr "" -+msgstr "Χρώμα γεμίσματος ενεργού αντικειμένου" - - #: ../src/icon_bar.c:423 ../src/icon_bar.c:424 - msgid "Active item border color" --msgstr "" -+msgstr "Χρώμα περιγράμματος ενεργού αντικειμένου" - - #: ../src/icon_bar.c:430 ../src/icon_bar.c:431 - msgid "Active item text color" --msgstr "" -+msgstr "Χρώμα κειμένου ενεργού αντικειμένου" - - #: ../src/icon_bar.c:437 ../src/icon_bar.c:438 - msgid "Cursor item fill color" --msgstr "" -+msgstr "Απόχρωση γεμίσματος του κέρσορα" - - #: ../src/icon_bar.c:444 ../src/icon_bar.c:445 - msgid "Cursor item border color" --msgstr "" -+msgstr "Το χρώμα του περιγράμματος του κέρσορα" - - #: ../src/icon_bar.c:451 ../src/icon_bar.c:452 - msgid "Cursor item text color" --msgstr "" -+msgstr "Χρώμα κειμένου κέρσορα" - - #: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" -@@ -699,28 +686,27 @@ - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." - msgstr "" -+"Με αυτή την επιλογή ενεργοποιημένη, η μέγιστη ποιότητα εικόνας περιορίζεται " -+"στο μέγεθος της οθόνης." - - #: ../src/preferences_dialog.c:321 --#, fuzzy - msgid "Limit rendering quality" --msgstr "Μέγιστη ποιότητα ανάλυσης:" -+msgstr "Περιορισμός ποιότητας ανάλυσης" - - #: ../src/preferences_dialog.c:333 --#, fuzzy - msgid "Fullscreen" --msgstr "_Πλήρης Οθόνη" -+msgstr "Πλήρης Οθόνη" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Μικρογραφίες" - - #: ../src/preferences_dialog.c:341 --#, fuzzy - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" --"Η μπάρα μικρογραφιών μπορεί να αποκρύβεται αυτόματα\n" --"όταν η προβολή εικόνων είναι σε πλήρη οθόνη." -+"Η μπάρα μικρογραφιών μπορεί να κρύβετε αυτόματα όταν το παράθυρο είναι σε " -+"πλήρη οθόνη" - - #: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" -@@ -728,21 +714,19 @@ - - #: ../src/preferences_dialog.c:352 - msgid "Clock" --msgstr "" -+msgstr "Ρολόι" - - #: ../src/preferences_dialog.c:355 --#, fuzzy - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" - msgstr "" --"Η μπάρα μικρογραφιών μπορεί να αποκρύβεται αυτόματα\n" --"όταν η προβολή εικόνων είναι σε πλήρη οθόνη." -+"Προβολή ενός αναλογικού ρολογιού το οποίο προβάλει την τρέχουσα ώρα όταν το " -+"παράθυρο είναι σε πλήρη οθόνη" - - #: ../src/preferences_dialog.c:358 --#, fuzzy - msgid "Show Fullscreen Clock" --msgstr "_Πλήρης Οθόνη" -+msgstr "Προβολή Ρολογιού Πλήρους οθόνης" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" -@@ -901,14 +885,14 @@ - msgid "Zoomed" - msgstr "Μεγενθημένο" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Προβολέας εικόνων ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Δείτε τις εικόνες σας εύκολα" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Προβολέας εικόνων ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Εμφάνιση εργαλειοθήκης _περιήγηση" - -diff -Nuar a/po/en_AU.po b/po/en_AU.po ---- a/po/en_AU.po 1970-01-01 02:00:00.000000000 +0200 -+++ b/po/en_AU.po 2013-10-12 23:17:22.138987344 +0300 -@@ -0,0 +1,858 @@ -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# -+# Translators: -+# k3lt01 , 2013 -+msgid "" -+msgstr "" -+"Project-Id-Version: Xfce Apps\n" -+"Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" -+"POT-Creation-Date: 2013-07-03 20:30+0200\n" -+"PO-Revision-Date: 2013-07-29 08:43+0000\n" -+"Last-Translator: k3lt01 \n" -+"Language-Team: English (Australia) (http://www.transifex.com/projects/p/xfce/language/en_AU/)\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Language: en_AU\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+ -+#: ../src/main.c:62 -+msgid "Version information" -+msgstr "Version information" -+ -+#: ../src/main.c:66 -+msgid "Start in fullscreen mode" -+msgstr "Start in fullscreen mode" -+ -+#: ../src/main.c:70 -+msgid "Start a slideshow" -+msgstr "Start a slideshow" -+ -+#: ../src/main.c:78 -+msgid "Show settings dialog" -+msgstr "Show settings dialogue" -+ -+#: ../src/main.c:106 -+#, c-format -+msgid "" -+"%s: %s\n" -+"\n" -+"Try %s --help to see a full list of\n" -+"available command line options.\n" -+msgstr "%s: %s\n\nTry %s --help to see a full list of\navailable command line options.\n" -+ -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3 -+msgid "Image Viewer" -+msgstr "Image Viewer" -+ -+#: ../src/main_window.c:365 -+msgid "_File" -+msgstr "_File" -+ -+#. Icon-name -+#: ../src/main_window.c:369 -+msgid "_Open..." -+msgstr "_Open..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:371 -+msgid "Open an image" -+msgstr "Open an image" -+ -+#. Icon-name -+#: ../src/main_window.c:375 -+msgid "_Save copy..." -+msgstr "_Save copy..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:377 -+msgid "Save a copy of the image" -+msgstr "Save a copy of the image" -+ -+#. Icon-name -+#: ../src/main_window.c:381 -+msgid "_Properties..." -+msgstr "_Properties..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:383 -+msgid "Show file properties" -+msgstr "Show file properties" -+ -+#. Icon-name -+#: ../src/main_window.c:387 ../src/main_window.c:406 -+msgid "_Edit" -+msgstr "_Edit" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:389 -+msgid "Edit this image" -+msgstr "Edit this image" -+ -+#. Icon-name -+#: ../src/main_window.c:393 -+msgid "_Close" -+msgstr "_Close" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:395 -+msgid "Close this image" -+msgstr "Close this image" -+ -+#. Icon-name -+#: ../src/main_window.c:399 -+msgid "_Quit" -+msgstr "_Quit" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:401 -+msgid "Quit Ristretto" -+msgstr "Quit Ristretto" -+ -+#: ../src/main_window.c:410 -+msgid "_Open with" -+msgstr "_Open with" -+ -+#: ../src/main_window.c:414 -+msgid "_Sorting" -+msgstr "_Sorting" -+ -+#. Icon-name -+#: ../src/main_window.c:418 -+msgid "_Delete" -+msgstr "_Delete" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:420 -+msgid "Delete this image from disk" -+msgstr "Delete this image from disk" -+ -+#. Icon-name -+#: ../src/main_window.c:424 -+msgid "_Clear private data..." -+msgstr "_Clear private data..." -+ -+#. Icon-name -+#: ../src/main_window.c:430 -+msgid "_Preferences..." -+msgstr "_Preferences..." -+ -+#: ../src/main_window.c:437 -+msgid "_View" -+msgstr "_View" -+ -+#. Icon-name -+#: ../src/main_window.c:441 -+msgid "_Fullscreen" -+msgstr "_Fullscreen" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:443 -+msgid "Switch to fullscreen" -+msgstr "Switch to fullscreen" -+ -+#. Icon-name -+#: ../src/main_window.c:447 -+msgid "_Leave Fullscreen" -+msgstr "_Leave Fullscreen" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:449 -+msgid "Leave Fullscreen" -+msgstr "Leave Fullscreen" -+ -+#. Icon-name -+#: ../src/main_window.c:453 -+msgid "Set as _Wallpaper..." -+msgstr "Set as _Wallpaper..." -+ -+#: ../src/main_window.c:460 -+msgid "_Zoom" -+msgstr "_Zoom" -+ -+#. Icon-name -+#: ../src/main_window.c:464 -+msgid "Zoom _In" -+msgstr "Zoom _In" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:466 -+msgid "Zoom in" -+msgstr "Zoom in" -+ -+#. Icon-name -+#: ../src/main_window.c:470 -+msgid "Zoom _Out" -+msgstr "Zoom _Out" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:472 -+msgid "Zoom out" -+msgstr "Zoom out" -+ -+#. Icon-name -+#: ../src/main_window.c:476 -+msgid "Zoom _Fit" -+msgstr "Zoom _Fit" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:478 -+msgid "Zoom to fit window" -+msgstr "Zoom to fit window" -+ -+#. Icon-name -+#: ../src/main_window.c:482 -+msgid "_Normal Size" -+msgstr "_Normal Size" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:484 -+msgid "Zoom to 100%" -+msgstr "Zoom to 100%" -+ -+#: ../src/main_window.c:489 -+msgid "_Rotation" -+msgstr "_Rotation" -+ -+#. Icon-name -+#: ../src/main_window.c:493 -+msgid "Rotate _Right" -+msgstr "Rotate _Right" -+ -+#. Icon-name -+#: ../src/main_window.c:499 -+msgid "Rotate _Left" -+msgstr "Rotate _Left" -+ -+#: ../src/main_window.c:506 -+msgid "_Go" -+msgstr "_Go" -+ -+#. Icon-name -+#: ../src/main_window.c:510 -+msgid "_Forward" -+msgstr "_Forward" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:512 -+msgid "Next image" -+msgstr "Next image" -+ -+#. Icon-name -+#: ../src/main_window.c:516 -+msgid "_Back" -+msgstr "_Back" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:518 -+msgid "Previous image" -+msgstr "Previous image" -+ -+#. Icon-name -+#: ../src/main_window.c:522 -+msgid "F_irst" -+msgstr "F_irst" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:524 -+msgid "First image" -+msgstr "First image" -+ -+#. Icon-name -+#: ../src/main_window.c:528 -+msgid "_Last" -+msgstr "_Last" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:530 -+msgid "Last image" -+msgstr "Last image" -+ -+#: ../src/main_window.c:535 -+msgid "_Help" -+msgstr "_Help" -+ -+#. Icon-name -+#: ../src/main_window.c:539 -+msgid "_Contents" -+msgstr "_Contents" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:541 -+msgid "Display ristretto user manual" -+msgstr "Display ristretto user manual" -+ -+#. Icon-name -+#: ../src/main_window.c:545 -+msgid "_About" -+msgstr "_About" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:547 -+msgid "Display information about ristretto" -+msgstr "Display information about ristretto" -+ -+#: ../src/main_window.c:552 -+msgid "_Position" -+msgstr "_Position" -+ -+#: ../src/main_window.c:556 -+msgid "_Size" -+msgstr "_Size" -+ -+#: ../src/main_window.c:560 -+msgid "Thumbnail Bar _Position" -+msgstr "Thumbnail Bar _Position" -+ -+#: ../src/main_window.c:564 -+msgid "Thumb_nail Size" -+msgstr "Thumb_nail Size" -+ -+#. Icon-name -+#: ../src/main_window.c:569 -+msgid "Leave _Fullscreen" -+msgstr "Leave _Fullscreen" -+ -+#. Icon-name -+#: ../src/main_window.c:585 -+msgid "_Show Toolbar" -+msgstr "_Show Toolbar" -+ -+#. Icon-name -+#: ../src/main_window.c:593 -+msgid "Show _Thumbnail Bar" -+msgstr "Show _Thumbnail Bar" -+ -+#. Icon-name -+#: ../src/main_window.c:601 -+msgid "Show Status _Bar" -+msgstr "Show Status _Bar" -+ -+#. Icon-name -+#: ../src/main_window.c:614 -+msgid "sort by filename" -+msgstr "sort by filename" -+ -+#. Icon-name -+#: ../src/main_window.c:621 -+msgid "sort by date" -+msgstr "sort by date" -+ -+#. Icon-name -+#: ../src/main_window.c:632 -+msgid "Left" -+msgstr "Left" -+ -+#: ../src/main_window.c:638 -+msgid "Right" -+msgstr "Right" -+ -+#: ../src/main_window.c:644 -+msgid "Top" -+msgstr "Top" -+ -+#: ../src/main_window.c:650 -+msgid "Bottom" -+msgstr "Bottom" -+ -+#: ../src/main_window.c:661 -+msgid "Very Small" -+msgstr "Very Small" -+ -+#: ../src/main_window.c:667 -+msgid "Smaller" -+msgstr "Smaller" -+ -+#: ../src/main_window.c:673 -+msgid "Small" -+msgstr "Small" -+ -+#: ../src/main_window.c:679 -+msgid "Normal" -+msgstr "Normal" -+ -+#: ../src/main_window.c:685 -+msgid "Large" -+msgstr "Large" -+ -+#: ../src/main_window.c:691 -+msgid "Larger" -+msgstr "Larger" -+ -+#: ../src/main_window.c:697 -+msgid "Very Large" -+msgstr "Very Large" -+ -+#. Create Play/Pause Slideshow actions -+#: ../src/main_window.c:849 -+msgid "_Play" -+msgstr "_Play" -+ -+#: ../src/main_window.c:849 -+msgid "Play slideshow" -+msgstr "Play slideshow" -+ -+#: ../src/main_window.c:850 -+msgid "_Pause" -+msgstr "_Pause" -+ -+#: ../src/main_window.c:850 -+msgid "Pause slideshow" -+msgstr "Pause slideshow" -+ -+#. Create Recently used items Action -+#: ../src/main_window.c:853 -+msgid "_Recently used" -+msgstr "_Recently used" -+ -+#: ../src/main_window.c:853 -+msgid "Recently used" -+msgstr "Recently used" -+ -+#: ../src/main_window.c:957 ../src/main_window.c:1495 -+msgid "Press open to select an image" -+msgstr "Press open to select an image" -+ -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 -+msgid "Open With Other _Application..." -+msgstr "Open With Other _Application..." -+ -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 -+msgid "Empty" -+msgstr "Empty" -+ -+#: ../src/main_window.c:1505 -+msgid "Loading..." -+msgstr "Loading..." -+ -+#: ../src/main_window.c:2109 -+msgid "Choose 'set wallpaper' method" -+msgstr "Choose 'set wallpaper' method" -+ -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 -+msgid "" -+"Configure which system is currently managing your desktop.\n" -+"This setting determines the method Ristretto will use\n" -+"to configure the desktop wallpaper." -+msgstr "Configure which system is currently managing your desktop.\nThis setting determines the method Ristretto will use\nto configure the desktop wallpaper." -+ -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 -+msgid "None" -+msgstr "None" -+ -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 -+msgid "Xfce" -+msgstr "Xfce" -+ -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 -+msgid "GNOME" -+msgstr "GNOME" -+ -+#: ../src/main_window.c:2597 -+msgid "Developer:" -+msgstr "Developer:" -+ -+#: ../src/main_window.c:2606 -+msgid "Ristretto is an image viewer for the Xfce desktop environment." -+msgstr "Ristretto is an image viewer for the Xfce desktop environment." -+ -+#: ../src/main_window.c:2614 -+msgid "translator-credits" -+msgstr "translator-credits" -+ -+#: ../src/main_window.c:2916 -+msgid "Open image" -+msgstr "Open image" -+ -+#: ../src/main_window.c:2935 -+msgid "Images" -+msgstr "Images" -+ -+#: ../src/main_window.c:2940 -+msgid ".jp(e)g" -+msgstr ".jp(e)g" -+ -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 -+msgid "Could not open file" -+msgstr "Could not open file" -+ -+#: ../src/main_window.c:3142 -+msgid "Save copy" -+msgstr "Save copy" -+ -+#: ../src/main_window.c:3168 -+msgid "Could not save file" -+msgstr "Could not save file" -+ -+#: ../src/main_window.c:3336 -+#, c-format -+msgid "Are you sure you want to delete image '%s' from disk?" -+msgstr "Are you sure you want to delete image '%s' from disk?" -+ -+#: ../src/main_window.c:3354 -+#, c-format -+msgid "" -+"An error occurred when deleting image '%s' from disk.\n" -+"\n" -+"%s" -+msgstr "An error occurred when deleting image '%s' from disk.\n\n%s" -+ -+#: ../src/main_window.c:3370 -+#, c-format -+msgid "Are you sure you want to send image '%s' to trash?" -+msgstr "Are you sure you want to send image '%s' to rubbish?" -+ -+#: ../src/main_window.c:3388 -+#, c-format -+msgid "" -+"An error occurred when sending image '%s' to trash.\n" -+"\n" -+"%s" -+msgstr "An error occurred when sending image '%s' to rubbish.\n\n%s" -+ -+#: ../src/main_window.c:3718 -+msgid "Edit with" -+msgstr "Edit with" -+ -+#: ../src/main_window.c:3736 -+#, c-format -+msgid "Open %s and other files of type %s with:" -+msgstr "Open %s and other files of type %s with:" -+ -+#: ../src/main_window.c:3741 -+msgid "Use as _default for this kind of file" -+msgstr "Use as _default for this kind of file" -+ -+#: ../src/main_window.c:3831 -+msgid "Recommended Applications" -+msgstr "Recommended Applications" -+ -+#: ../src/main_window.c:3911 -+msgid "Other Applications" -+msgstr "Other Applications" -+ -+#: ../src/icon_bar.c:345 -+msgid "Orientation" -+msgstr "Orientation" -+ -+#: ../src/icon_bar.c:346 -+msgid "The orientation of the iconbar" -+msgstr "The orientation of the iconbar" -+ -+#: ../src/icon_bar.c:362 -+msgid "File column" -+msgstr "File column" -+ -+#: ../src/icon_bar.c:363 -+msgid "Model column used to retrieve the file from" -+msgstr "Model column used to retrieve the file from" -+ -+#: ../src/icon_bar.c:375 -+msgid "Icon Bar Model" -+msgstr "Icon Bar Model" -+ -+#: ../src/icon_bar.c:376 -+msgid "Model for the icon bar" -+msgstr "Model for the icon bar" -+ -+#: ../src/icon_bar.c:392 -+msgid "Active" -+msgstr "Active" -+ -+#: ../src/icon_bar.c:393 -+msgid "Active item index" -+msgstr "Active item index" -+ -+#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+msgid "Show Text" -+msgstr "Show Text" -+ -+#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+msgid "Active item fill color" -+msgstr "Active item fill colour" -+ -+#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+msgid "Active item border color" -+msgstr "Active item border colour" -+ -+#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+msgid "Active item text color" -+msgstr "Active item text colour" -+ -+#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+msgid "Cursor item fill color" -+msgstr "Cursor item fill colour" -+ -+#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+msgid "Cursor item border color" -+msgstr "Cursor item border colour" -+ -+#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+msgid "Cursor item text color" -+msgstr "Cursor item text colour" -+ -+#: ../src/privacy_dialog.c:152 -+msgid "Time range to clear:" -+msgstr "Time range to clear:" -+ -+#: ../src/privacy_dialog.c:156 -+msgid "Cleanup" -+msgstr "Cleanup" -+ -+#: ../src/privacy_dialog.c:158 -+msgid "Last Hour" -+msgstr "Last Hour" -+ -+#: ../src/privacy_dialog.c:159 -+msgid "Last Two Hours" -+msgstr "Last Two Hours" -+ -+#: ../src/privacy_dialog.c:160 -+msgid "Last Four Hours" -+msgstr "Last Four Hours" -+ -+#: ../src/privacy_dialog.c:161 -+msgid "Today" -+msgstr "Today" -+ -+#: ../src/privacy_dialog.c:162 -+msgid "Everything" -+msgstr "Everything" -+ -+#: ../src/privacy_dialog.c:460 -+msgid "Clear private data" -+msgstr "Clear private data" -+ -+#: ../src/preferences_dialog.c:276 -+msgid "Display" -+msgstr "Display" -+ -+#: ../src/preferences_dialog.c:283 -+msgid "Background color" -+msgstr "Background colour" -+ -+#: ../src/preferences_dialog.c:287 -+msgid "Override background color:" -+msgstr "Override background colour:" -+ -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Quality" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "With this option enabled, the maximum image-quality will be limited to the screen-size." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Limit rendering quality" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Fullscreen" -+ -+#: ../src/preferences_dialog.c:338 -+msgid "Thumbnails" -+msgstr "Thumbnails" -+ -+#: ../src/preferences_dialog.c:341 -+msgid "" -+"The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "The thumbnail bar can be automatically hidden when the window is fullscreen." -+ -+#: ../src/preferences_dialog.c:344 -+msgid "Hide thumbnail bar when fullscreen" -+msgstr "Hide thumbnail bar when fullscreen" -+ -+#: ../src/preferences_dialog.c:352 -+msgid "Clock" -+msgstr "Clock" -+ -+#: ../src/preferences_dialog.c:355 -+msgid "" -+"Show an analog clock that displays the current time when the window is " -+"fullscreen" -+msgstr "Show an analogue clock that displays the current time when the window is fullscreen" -+ -+#: ../src/preferences_dialog.c:358 -+msgid "Show Fullscreen Clock" -+msgstr "Show Fullscreen Clock" -+ -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "Slideshow" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "Timeout" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "The time period an individual image is displayed during a slideshow\n(in seconds)" -+ -+#: ../src/preferences_dialog.c:400 -+msgid "Control" -+msgstr "Control" -+ -+#: ../src/preferences_dialog.c:404 -+msgid "Scroll wheel" -+msgstr "Scroll wheel" -+ -+#: ../src/preferences_dialog.c:407 -+msgid "Invert zoom direction" -+msgstr "Invert zoom direction" -+ -+#: ../src/preferences_dialog.c:421 -+msgid "Behaviour" -+msgstr "Behaviour" -+ -+#: ../src/preferences_dialog.c:426 -+msgid "Startup" -+msgstr "Startup" -+ -+#: ../src/preferences_dialog.c:428 -+msgid "Maximize window on startup when opening an image" -+msgstr "Maximise window on startup when opening an image" -+ -+#: ../src/preferences_dialog.c:434 -+msgid "Wrap around images" -+msgstr "Wrap around images" -+ -+#: ../src/preferences_dialog.c:453 -+msgid "Desktop" -+msgstr "Desktop" -+ -+#: ../src/preferences_dialog.c:572 -+msgid "Image Viewer Preferences" -+msgstr "Image Viewer Preferences" -+ -+#: ../src/properties_dialog.c:181 -+msgid "Name:" -+msgstr "Name:" -+ -+#: ../src/properties_dialog.c:182 -+msgid "Kind:" -+msgstr "Kind:" -+ -+#: ../src/properties_dialog.c:183 -+msgid "Modified:" -+msgstr "Modified:" -+ -+#: ../src/properties_dialog.c:184 -+msgid "Accessed:" -+msgstr "Accessed:" -+ -+#: ../src/properties_dialog.c:185 -+msgid "Size:" -+msgstr "Size:" -+ -+#: ../src/properties_dialog.c:309 -+msgid "General" -+msgstr "General" -+ -+#: ../src/properties_dialog.c:313 -+msgid "Image" -+msgstr "Image" -+ -+#: ../src/properties_dialog.c:526 -+#, c-format -+msgid "Date taken:" -+msgstr "Date taken:" -+ -+#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 -+#, c-format -+msgid "%s" -+msgstr "%s" -+ -+#: ../src/properties_dialog.c:624 -+#, c-format -+msgid "%s - Properties" -+msgstr "%s - Properties" -+ -+#: ../src/thumbnailer.c:460 -+msgid "" -+"The thumbnailer-service can not be reached,\n" -+"for this reason, the thumbnails can not be\n" -+"created.\n" -+"\n" -+"Install Tumbler or another thumbnailing daemon\n" -+"to resolve this issue." -+msgstr "The thumbnailer-service can not be reached,\nfor this reason, the thumbnails can not be\ncreated.\n\nInstall Tumbler or another thumbnailing daemon\nto resolve this issue." -+ -+#: ../src/thumbnailer.c:470 -+msgid "Do _not show this message again" -+msgstr "Do _not show this message again" -+ -+#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+msgid "Style:" -+msgstr "Style:" -+ -+#: ../src/xfce_wallpaper_manager.c:337 -+msgid "Brightness:" -+msgstr "Brightness:" -+ -+#: ../src/xfce_wallpaper_manager.c:338 -+msgid "Saturation:" -+msgstr "Saturation:" -+ -+#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+msgid "Set as wallpaper" -+msgstr "Set as wallpaper" -+ -+#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+msgid "Auto" -+msgstr "Auto" -+ -+#: ../src/xfce_wallpaper_manager.c:511 -+msgid "Centered" -+msgstr "Centred" -+ -+#: ../src/xfce_wallpaper_manager.c:514 -+msgid "Tiled" -+msgstr "Tiled" -+ -+#: ../src/xfce_wallpaper_manager.c:517 -+msgid "Stretched" -+msgstr "Stretched" -+ -+#: ../src/xfce_wallpaper_manager.c:520 -+msgid "Scaled" -+msgstr "Scaled" -+ -+#: ../src/xfce_wallpaper_manager.c:523 -+msgid "Zoomed" -+msgstr "Zoomed" -+ -+#: ../ristretto.desktop.in.h:1 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto Image Viewer" -+ -+#: ../ristretto.desktop.in.h:2 -+msgid "Look at your images easily" -+msgstr "Look at your images easily" -diff -Nuar a/po/en_GB.po b/po/en_GB.po ---- a/po/en_GB.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/en_GB.po 2013-10-12 23:17:22.138987344 +0300 -@@ -2,19 +2,19 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the ristretto package. - # Jeff Bailes , 2009 --# -+# - msgid "" - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-04-27 22:33+0000\n" - "PO-Revision-Date: 2010-01-24 14:08+1100\n" - "Last-Translator: Jeff Bailes \n" - "Language-Team: English/GB\n" --"Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=utf-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: \n" - "X-Poedit-Language: English\n" - "X-Poedit-Country: UNITED KINGDOM\n" - -@@ -45,7 +45,7 @@ - "%s: %s\n" - "Try %s --help to see a full list of available command line options.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Image Viewer" - -@@ -452,7 +452,7 @@ - msgid "Choose 'set wallpaper' method" - msgstr "Choose 'set wallpaper' method" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2089 ../src/preferences_dialog.c:398 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -462,15 +462,15 @@ - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2114 ../src/preferences_dialog.c:422 - msgid "None" - msgstr "None" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2118 ../src/preferences_dialog.c:426 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2122 ../src/preferences_dialog.c:430 - msgid "GNOME" - msgstr "GNOME" - -@@ -655,58 +655,56 @@ - msgid "Clear private data" - msgstr "Clear private data" - --#: ../src/preferences_dialog.c:276 -+#: ../src/preferences_dialog.c:219 - msgid "Display" - msgstr "Display" - --#: ../src/preferences_dialog.c:283 -+#: ../src/preferences_dialog.c:224 - msgid "Background color" - msgstr "Background colour" - --#: ../src/preferences_dialog.c:287 -+#: ../src/preferences_dialog.c:228 - msgid "Override background color:" - msgstr "Override background colour:" - --#: ../src/preferences_dialog.c:314 -+#: ../src/preferences_dialog.c:255 - msgid "Quality" - msgstr "Quality" - --#: ../src/preferences_dialog.c:318 -+#: ../src/preferences_dialog.c:259 - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." -+msgstr "With this option enabled, the maximum image-quality will be limited to the screen-size." - --#: ../src/preferences_dialog.c:321 -+#: ../src/preferences_dialog.c:262 - msgid "Limit rendering quality" - msgstr "Limit rendering quality" - --#: ../src/preferences_dialog.c:333 -+#: ../src/preferences_dialog.c:274 - msgid "Fullscreen" - msgstr "Fullscreen" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:279 - msgid "Thumbnails" - msgstr "Thumbnails" - --#: ../src/preferences_dialog.c:341 -+#: ../src/preferences_dialog.c:282 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "The thumbnailbar can be automatically hidden \n" - "when the image-viewer is fullscreen." - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:285 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Hide thumbnail bar when fullscreen" - --#: ../src/preferences_dialog.c:352 -+#: ../src/preferences_dialog.c:293 - msgid "Clock" - msgstr "Clock" - --#: ../src/preferences_dialog.c:355 -+#: ../src/preferences_dialog.c:296 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -714,19 +712,19 @@ - "The thumbnailbar can be automatically hidden \n" - "when the image-viewer is fullscreen." - --#: ../src/preferences_dialog.c:358 -+#: ../src/preferences_dialog.c:299 - msgid "Show Fullscreen Clock" - msgstr "Show Fullscreen Clock" - --#: ../src/preferences_dialog.c:375 -+#: ../src/preferences_dialog.c:315 - msgid "Slideshow" - msgstr "Slideshow" - --#: ../src/preferences_dialog.c:379 -+#: ../src/preferences_dialog.c:319 - msgid "Timeout" - msgstr "Timeout" - --#: ../src/preferences_dialog.c:382 -+#: ../src/preferences_dialog.c:322 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -734,39 +732,39 @@ - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" - --#: ../src/preferences_dialog.c:400 -+#: ../src/preferences_dialog.c:338 - msgid "Control" - msgstr "Control" - --#: ../src/preferences_dialog.c:404 -+#: ../src/preferences_dialog.c:342 - msgid "Scroll wheel" - msgstr "Scroll wheel" - --#: ../src/preferences_dialog.c:407 -+#: ../src/preferences_dialog.c:345 - msgid "Invert zoom direction" - msgstr "Invert zoom direction" - --#: ../src/preferences_dialog.c:421 -+#: ../src/preferences_dialog.c:355 - msgid "Behaviour" - msgstr "Behaviour" - --#: ../src/preferences_dialog.c:426 -+#: ../src/preferences_dialog.c:360 - msgid "Startup" - msgstr "Startup" - --#: ../src/preferences_dialog.c:428 -+#: ../src/preferences_dialog.c:362 - msgid "Maximize window on startup when opening an image" - msgstr "Maximise window on startup when opening an image" - --#: ../src/preferences_dialog.c:434 -+#: ../src/preferences_dialog.c:368 - msgid "Wrap around images" - msgstr "Wrap around images" - --#: ../src/preferences_dialog.c:453 -+#: ../src/preferences_dialog.c:387 - msgid "Desktop" - msgstr "Desktop" - --#: ../src/preferences_dialog.c:572 -+#: ../src/preferences_dialog.c:509 - msgid "Image Viewer Preferences" - msgstr "Image Viewer Preferences" - -@@ -874,14 +872,14 @@ - msgid "Zoomed" - msgstr "Zoomed" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Ristretto Image Viewer" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Look at your images easily" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto Image Viewer" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Show _Navigation Toolbar" - -diff -Nuar a/po/es.po b/po/es.po ---- a/po/es.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/es.po 2013-10-12 23:17:22.138987344 +0300 -@@ -2,22 +2,22 @@ - # Copyright (C) 2007 THE ristretto'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. - # Abel Martín , 2008 --# -+# - msgid "" - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-10-13 13:51+0000\n" - "PO-Revision-Date: 2012-04-28 15:22-0600\n" - "Last-Translator: Sergio García \n" - "Language-Team: Spanish \n" --"Language: es\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=utf-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"X-Poedit-Country: SPAIN\n" -+"Language: es\n" - "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,84,11,-1,-1,-1\n" - "X-Poedit-Language: Spanish\n" --"X-Poedit-Country: SPAIN\n" - - #: ../src/main.c:62 - msgid "Version information" -@@ -47,414 +47,414 @@ - "Pruebe %s --help para ver una lista completa de opciones de línea de comando " - "disponibles.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Visor de imágenes" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Archivo" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Abrir..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Abrir una imagen" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "_Guardar copia..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Guardar una copia de la imagen" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_Propiedades..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Mostrar propiedades del archivo" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Editar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Editar esta imagen" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Cerrar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Cerrar esta imagen" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Salir" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Salir de Ristretto" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_Abrir con" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Ordenar" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Eliminar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Borrar esta imagen del disco" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "_Limpiar datos privados..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "_Preferencias..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Ver" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Pantalla completa" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Iniciar en modo pantalla completa" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Salir de pantalla completa" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Salir de pantalla completa" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." - msgstr "Establecer como _fondo de escritorio..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Zoom" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "_Ampliar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Ampliar" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "_Reducir" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Reducir" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Ajustar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "Ajustar a la ventana" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Tamaño normal" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "Zoom al 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Rotar" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Girar a la _derecha" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Girar a la _izquierda" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_Ir" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Avanzar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Imagen siguiente" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Retroceder" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Imagen anterior" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "Pr_imera" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Primera imagen" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" --msgstr "_Ultima" -+msgstr "Ú_ltima" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" --msgstr "Ultima imagen" -+msgstr "Última imagen" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "Ay_uda" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Contenidos" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Mostar el manual de usuario de ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" --msgstr "_Acerca de" -+msgstr "Acerca _de" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Mostrar información acerca de ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Posición" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" --msgstr "\v_Tamaño" -+msgstr "_Tamaño" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "_Posición de la barra de miniaturas" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "Tamaño de mi_niaturas" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Salir de _pantalla completa" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "_Mostrar barra de herramientas" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Mostrar barra de _miniaturas" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "Mostrar _barra de estado" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "por nombre" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "por fecha" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Izquierda" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Derecha" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Arriba" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Abajo" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Muy pequeño" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Más pequeño" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Pequeño" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Normal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Grande" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Más grande" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Muy grande" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Reproducir" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Reproducir diapositivas" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Pausar" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Pausar diapositivas" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Recientemente usados" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Usados recientemente" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Presione abrir para seleccionar una imagen" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Abrir con otra _aplicación..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Vacío" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Cargando..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Elegir método para establecer el fondo de escritorio" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -464,64 +464,64 @@ - "Este ajuste determina el método que Ristretto usará\n" - "para configurar el fondo de escritorio." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Ninguno" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Desarrollador:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "" - "Ristretto es un visor de imágenes rápido y ligero para el entorno de " - "escritorio de Xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "" - "Abel Martín \n" - "Elega " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Abrir imagen" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Imágenes" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "No se pudo abrir el archivo" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Guardar copia" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "No se pudo guardar el archivo" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "¿Está seguro de querer eliminar la imagen '%s' de su disco?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -532,12 +532,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "¿Está seguro de querer eliminar la imagen '%s' de su disco?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -548,24 +548,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "Editar con" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Abrir %s y otros archivos de tipo %s con:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "Utilizar como _predeterminado para este tipo de archivo" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "Aplicaciones recomendadas" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "Otras aplicaciones" - -@@ -587,11 +587,11 @@ - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "Modelo de icono de barra" -+msgstr "Modelo de barra de icono" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "Modelo para icono de barra" -+msgstr "Modelo para la barra de icono" - - #: ../src/icon_bar.c:392 - msgid "Active" -@@ -881,14 +881,14 @@ - msgid "Zoomed" - msgstr "Ampliado" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Visor de Imágenes Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Mire sus imágenes fácilmente" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Visor de Imágenes Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Mostrar la barra de _navegación" - -@@ -907,7 +907,6 @@ - #~ msgid "border width" - #~ msgstr "ancho del borde" - --#, fuzzy - #~ msgid "the border width of the thumbnail bar" - #~ msgstr "el ancho del borde de la barra de miniaturas" - -diff -Nuar a/po/eu.po b/po/eu.po ---- a/po/eu.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/eu.po 2013-10-12 23:17:22.139987344 +0300 -@@ -6,14 +6,14 @@ - msgstr "" - "Project-Id-Version: eu\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-04-29 20:36+0000\n" - "PO-Revision-Date: 2008-12-08 01:19+0100\n" - "Last-Translator: Piarres Beobide \n" - "Language-Team: Euskara \n" --"Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: \n" - "X-Generator: KBabel 1.11.4\n" - - #: ../src/main.c:62 -@@ -43,7 +43,7 @@ - "%s: %s\n" - "Erabili %s --help komando-lerroko komando erabilgarriak ikusteko.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Irudi ikustatzailea" - -@@ -53,9 +53,8 @@ - - #. Icon-name - #: ../src/main_window.c:362 --#, fuzzy - msgid "_Open..." --msgstr "_Ireki" -+msgstr "_Ireki..." - - #. Label-text - #. Keyboard shortcut -@@ -65,9 +64,8 @@ - - #. Icon-name - #: ../src/main_window.c:368 --#, fuzzy - msgid "_Save copy..." --msgstr "_Gorde kopia" -+msgstr "_Gorde kopia..." - - #. Label-text - #. Keyboard shortcut -@@ -77,9 +75,8 @@ - - #. Icon-name - #: ../src/main_window.c:374 --#, fuzzy - msgid "_Properties..." --msgstr "_Propietateak" -+msgstr "_Propietateak..." - - #. Label-text - #. Keyboard shortcut -@@ -121,9 +118,8 @@ - msgstr "Itxi Ristretto" - - #: ../src/main_window.c:403 --#, fuzzy - msgid "_Open with" --msgstr "Ireki _honekin..." -+msgstr "Ireki _honekin" - - #: ../src/main_window.c:407 - msgid "_Sorting" -@@ -142,15 +138,13 @@ - - #. Icon-name - #: ../src/main_window.c:417 --#, fuzzy - msgid "_Clear private data..." --msgstr "_Garbitu datu pribatuak" -+msgstr "_Garbitu datu pribatuak..." - - #. Icon-name - #: ../src/main_window.c:423 --#, fuzzy - msgid "_Preferences..." --msgstr "_Hobespenak" -+msgstr "_Hobespenak..." - - #: ../src/main_window.c:430 - msgid "_View" -@@ -180,9 +174,8 @@ - - #. Icon-name - #: ../src/main_window.c:446 --#, fuzzy - msgid "Set as _Wallpaper..." --msgstr "E_zarri idazmahai-irudi gisa" -+msgstr "E_zarri mahaigain-irudi gisa..." - - #: ../src/main_window.c:453 - msgid "_Zoom" -@@ -274,7 +267,6 @@ - - #. Icon-name - #: ../src/main_window.c:515 --#, fuzzy - msgid "F_irst" - msgstr "_Lehenengoa" - -@@ -334,7 +326,6 @@ - msgstr "Argazkitxo-barra _kokalekua" - - #: ../src/main_window.c:557 --#, fuzzy - msgid "Thumb_nail Size" - msgstr "Argazkitxo _tamaina" - -@@ -355,7 +346,6 @@ - - #. Icon-name - #: ../src/main_window.c:594 --#, fuzzy - msgid "Show Status _Bar" - msgstr "Ikusi _egoera-barra" - -@@ -445,9 +435,8 @@ - msgstr "Bat sakatu irudi bat hautatzeko" - - #: ../src/main_window.c:1322 ../src/main_window.c:1326 --#, fuzzy - msgid "Open With Other _Application..." --msgstr "Ireki beste _aplikazio batez" -+msgstr "Ireki beste _aplikazio batez..." - - #: ../src/main_window.c:1347 ../src/main_window.c:1353 - msgid "Empty" -@@ -455,7 +444,7 @@ - - #: ../src/main_window.c:1470 - msgid "Loading..." --msgstr "" -+msgstr "Kargatzen..." - - #: ../src/main_window.c:2074 - msgid "Choose 'set wallpaper' method" -@@ -525,12 +514,15 @@ - msgstr "Ziur zaude '%s' irudia diskotik ezabatu nahi duzula?" - - #: ../src/main_window.c:3310 --#, fuzzy, c-format -+#, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "Ziur zaude '%s' irudia diskotik ezabatu nahi duzula?" -+msgstr "" -+"Errore bat gertatu da '%s' irudia diskotik ezabatzerakoan.\n" -+"\n" -+"%s" - - #: ../src/main_window.c:3326 - #, c-format -@@ -538,12 +530,15 @@ - msgstr "Ziur zaude '%s' irudia zakarrontzira bidali nahi duzula?" - - #: ../src/main_window.c:3344 --#, fuzzy, c-format -+#, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" --msgstr "Ziur zaude '%s' irudia zakarrontzira bidali nahi duzula?" -+msgstr "" -+"Errore bat gertatu da '%s' irudia diskotik zaborrera botatzean.\n" -+"\n" -+"%s" - - #: ../src/main_window.c:3674 - msgid "Edit with" -@@ -678,15 +673,13 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" -+msgstr "Aukera hau gaiturik dagoela irudiaren kalitate-muga pantaila-tamainak ezartzen du." - - #: ../src/preferences_dialog.c:321 --#, fuzzy - msgid "Limit rendering quality" --msgstr "Gehinezko errenderizazio kalitatea:" -+msgstr "Mugatu errenderizazio kalitatea" - - #: ../src/preferences_dialog.c:333 --#, fuzzy - msgid "Fullscreen" - msgstr "_Pantaila-osoa" - -@@ -695,7 +688,6 @@ - msgstr "Argazkitxoak" - - #: ../src/preferences_dialog.c:341 --#, fuzzy - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" -@@ -708,10 +700,9 @@ - - #: ../src/preferences_dialog.c:352 - msgid "Clock" --msgstr "" -+msgstr "Ordularia" - - #: ../src/preferences_dialog.c:355 --#, fuzzy - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -720,9 +711,8 @@ - "osoa moduan dagoenean." - - #: ../src/preferences_dialog.c:358 --#, fuzzy - msgid "Show Fullscreen Clock" --msgstr "Aldatu pantaila-osora" -+msgstr "Ikusi Pantaila-osoko erlojua" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" -@@ -880,14 +870,14 @@ - msgid "Zoomed" - msgstr "Gerturatua" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Ristretto argazki ikustatzailea" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Ikusi zure irudiak erraz" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto argazki ikustatzailea" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Ikusi _nabigazio tresna-barra" - -diff -Nuar a/po/fi.po b/po/fi.po ---- a/po/fi.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/fi.po 2013-10-12 23:17:22.139987344 +0300 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-04-27 11:03+0000\n" - "PO-Revision-Date: 2012-04-27 14:28+0300\n" - "Last-Translator: Jari Rahkonen \n" - "Language-Team: Finnish \n" -@@ -45,7 +45,7 @@ - "Saat listan komentorivivalitsimista\n" - "kirjoittamalla %s --help.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Kuvakatselin" - -@@ -452,7 +452,7 @@ - msgid "Choose 'set wallpaper' method" - msgstr "Valitse taustakuvan asetustapa" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2089 ../src/preferences_dialog.c:356 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -462,15 +462,15 @@ - "Tämä asetus määrittää, millä tavoin Ristretto asettaa\n" - "työpöytäsi taustakuvan." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2114 ../src/preferences_dialog.c:380 - msgid "None" - msgstr "Ei mikään" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2118 ../src/preferences_dialog.c:384 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2122 ../src/preferences_dialog.c:388 - msgid "GNOME" - msgstr "GNOME" - -@@ -655,111 +655,94 @@ - msgid "Clear private data" - msgstr "Poista yksityisiä tietoja" - --#: ../src/preferences_dialog.c:276 -+#: ../src/preferences_dialog.c:201 - msgid "Display" - msgstr "Näyttö" - --#: ../src/preferences_dialog.c:283 -+#: ../src/preferences_dialog.c:206 - msgid "Background color" - msgstr "Taustaväri" - --#: ../src/preferences_dialog.c:287 -+#: ../src/preferences_dialog.c:210 - msgid "Override background color:" - msgstr "Korvaa taustaväri:" - --#: ../src/preferences_dialog.c:314 --msgid "Quality" --msgstr "" -- --#: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." --msgstr "" -- --#: ../src/preferences_dialog.c:321 --msgid "Limit rendering quality" --msgstr "" -- --#: ../src/preferences_dialog.c:333 --#, fuzzy --msgid "Fullscreen" --msgstr "Koko_ruutu" -- --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:222 - msgid "Thumbnails" - msgstr "Pienoiskuvat" - --#: ../src/preferences_dialog.c:341 -+#: ../src/preferences_dialog.c:225 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "Pienoiskuvapalkin voi piilottaa automaattisesti kokoruututilassa." -+msgstr "" -+"Pienoiskuvapalkin voi piilottaa automaattisesti kokoruututilassa." - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:228 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Piilota pienoiskuvat kokoruudussa" - --#: ../src/preferences_dialog.c:352 --msgid "Clock" --msgstr "Kello" -- --#: ../src/preferences_dialog.c:355 --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "Näytä kokoruututilassa analoginen kello, joka näyttää kuluvan ajan" -- --#: ../src/preferences_dialog.c:358 --msgid "Show Fullscreen Clock" --msgstr "Näytä kello kokoruudussa" -- --#: ../src/preferences_dialog.c:375 -+#: ../src/preferences_dialog.c:259 - msgid "Slideshow" - msgstr "Diaesitys" - --#: ../src/preferences_dialog.c:379 -+#: ../src/preferences_dialog.c:263 - msgid "Timeout" - msgstr "Esitysaika" - --#: ../src/preferences_dialog.c:382 -+#: ../src/preferences_dialog.c:266 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" - msgstr "Montako sekuntia yksittäistä kuvaa esitetään diaesityksessä?" - --#: ../src/preferences_dialog.c:400 -+#: ../src/preferences_dialog.c:275 -+msgid "Clock" -+msgstr "Kello" -+ -+#: ../src/preferences_dialog.c:278 -+msgid "" -+"Show an analog clock that displays the current time when the window is " -+"fullscreen" -+msgstr "" -+"Näytä kokoruututilassa analoginen kello, joka näyttää kuluvan ajan" -+ -+#: ../src/preferences_dialog.c:281 -+msgid "Show Fullscreen Clock" -+msgstr "Näytä kello kokoruudussa" -+ -+#: ../src/preferences_dialog.c:296 - msgid "Control" - msgstr "Ohjaus" - --#: ../src/preferences_dialog.c:404 -+#: ../src/preferences_dialog.c:300 - msgid "Scroll wheel" - msgstr "Vierityspainike" - --#: ../src/preferences_dialog.c:407 -+#: ../src/preferences_dialog.c:303 - msgid "Invert zoom direction" - msgstr "Käänteinen suurennus" - --#: ../src/preferences_dialog.c:421 -+#: ../src/preferences_dialog.c:313 - msgid "Behaviour" - msgstr "Käytös" - --#: ../src/preferences_dialog.c:426 -+#: ../src/preferences_dialog.c:318 - msgid "Startup" - msgstr "Käynnistys" - --#: ../src/preferences_dialog.c:428 -+#: ../src/preferences_dialog.c:320 - msgid "Maximize window on startup when opening an image" - msgstr "Sovita ikkuna kuvaan käynnistäessä" - --#: ../src/preferences_dialog.c:434 -+#: ../src/preferences_dialog.c:326 - msgid "Wrap around images" - msgstr "Kierrätä kuvia" - --#: ../src/preferences_dialog.c:453 -+#: ../src/preferences_dialog.c:345 - msgid "Desktop" - msgstr "Työpöytä" - --#: ../src/preferences_dialog.c:572 -+#: ../src/preferences_dialog.c:467 - msgid "Image Viewer Preferences" - msgstr "Kuvakatselimen asetukset" - -@@ -866,10 +849,10 @@ - msgid "Zoomed" - msgstr "Suurennettu" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Ristretto-kuvakatselin" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Katsele kuviasi helposti" -+ -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto-kuvakatselin" -diff -Nuar a/po/fr.po b/po/fr.po ---- a/po/fr.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/fr.po 2013-10-12 23:17:22.139987344 +0300 -@@ -1,22 +1,24 @@ --# French translation for the ristretto package. --# Copyright (C) 2008 Stephan Arts -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. --# Mike Massonnet , 2007, 2008. --# Patrick Douart , 2009, 2010. --# -+# -+# Translators: -+# jc1 , 2013 -+# Mike Massonnet , 2007-2008 -+# Patrick Douart , 2009-2010 - msgid "" - msgstr "" --"Project-Id-Version: ristretto\n" -+"Project-Id-Version: Xfce Apps\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" --"PO-Revision-Date: 2012-07-15 11:49+0200\n" --"Last-Translator: Iliyas Jorio \n" --"Language-Team: French\n" --"Language: \n" -+"POT-Creation-Date: 2013-07-03 20:30+0200\n" -+"PO-Revision-Date: 2013-07-30 15:48+0000\n" -+"Last-Translator: jc1 \n" -+"Language-Team: French (http://www.transifex.com/projects/p/xfce/language/fr/)\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,11,-1,-1,-1\n" -+"Language: fr\n" -+"Plural-Forms: nplurals=2; plural=(n > 1);\n" - - #: ../src/main.c:62 - msgid "Version information" -@@ -28,7 +30,7 @@ - - #: ../src/main.c:70 - msgid "Start a slideshow" --msgstr "Démarrer le diaporama" -+msgstr "Démarrer un diaporama" - - #: ../src/main.c:78 - msgid "Show settings dialog" -@@ -41,535 +43,514 @@ - "\n" - "Try %s --help to see a full list of\n" - "available command line options.\n" --msgstr "" --"%s : %s\n" --"\n" --"%s --help pour voir une liste complète\n" --"des options en ligne de commande.\n" -+msgstr "%s : %s\n\n%s --help pour voir une liste complète\ndes options en ligne de commande.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3 - msgid "Image Viewer" - msgstr "Visionneuse d’images" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Fichier" - - #. Icon-name --#: ../src/main_window.c:362 --#, fuzzy -+#: ../src/main_window.c:369 - msgid "_Open..." --msgstr "_Ouvrir" -+msgstr "_Ouvrir..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Ouvrir une image" - - #. Icon-name --#: ../src/main_window.c:368 --#, fuzzy -+#: ../src/main_window.c:375 - msgid "_Save copy..." --msgstr "_Enregistrer une copie" -+msgstr "_Enregistrer une copie..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Enregistrer une copie de l'image" - - #. Icon-name --#: ../src/main_window.c:374 --#, fuzzy -+#: ../src/main_window.c:381 - msgid "_Properties..." --msgstr "_Propriétés" -+msgstr "_Propriétés..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Afficher les propriétés du fichier" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Éditer" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Editer cette image" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Fermer" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Fermer cette image" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Quitter" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Quitter Ristretto" - --#: ../src/main_window.c:403 --#, fuzzy -+#: ../src/main_window.c:410 - msgid "_Open with" --msgstr "_Ouvrir avec..." -+msgstr "_Ouvrir avec" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Trier par" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Effacer" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Supprimer cette image du disque" - - #. Icon-name --#: ../src/main_window.c:417 --#, fuzzy -+#: ../src/main_window.c:424 - msgid "_Clear private data..." --msgstr "_Nettoyer les données personnelles" -+msgstr "_Nettoyer les données personnelles..." - - #. Icon-name --#: ../src/main_window.c:423 --#, fuzzy -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "_Préférences" -+msgstr "_Préférences..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Afficher" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Plein écran" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Basculer en plein écran" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Quitter le plein écran" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Quitter le plein écran" - - #. Icon-name --#: ../src/main_window.c:446 --#, fuzzy -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "_Utiliser comme fond d'écran" -+msgstr "_Utiliser comme fond d'écran..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Zoom" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Zoom _avant" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Zoom avant" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Zoom a_rrière" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Zoom arrière" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "Zoom au _mieux" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "Zoom optimal" -+msgstr "Zoomer pour ajuster à la fenêtre" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Taille normale" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "Zoom à 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Rotation" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Rotation vers la _droite" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Rotation vers la _gauche" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "A_ller à" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Suivante" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Image suivante" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Précédente" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Image précédente" - - #. Icon-name --#: ../src/main_window.c:515 --#, fuzzy -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "Pre_mière" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Première image" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Dernière" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Dernière image" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "A_ide" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Contenu" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Afficher le manuel de ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_À propos" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Afficher les informations à propos de ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Position" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Taille" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "_Position de la barre des miniatures" - --#: ../src/main_window.c:557 --#, fuzzy -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "_Taille des miniatures" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Quitter le _plein écran" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "_Afficher la barre d'outils" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Afficher la barre des _miniatures" - - #. Icon-name --#: ../src/main_window.c:594 --#, fuzzy -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "Afficher la barre d'é_tat" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" --msgstr "Trier par nom de fichier" -+msgstr "trier par nom de fichier" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" --msgstr "Trier par date" -+msgstr "trier par date" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Gauche" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Droite" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Haut" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Bas" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Très petit" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Plus petit" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Petit" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "_Taille Normale" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Large" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Plus large" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Très large" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" --msgstr "_Démarrer le diaporama" -+msgstr "_Démarrer" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Démarrer le diaporama" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" --msgstr "Mettre le diaporama en _pause" -+msgstr "_Pause" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Mettre le diaporama en pause" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Récemment utilisés" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Récemment utilisés" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" --msgstr "Cliquez sur Ouvrir pour sélectionner une image" -+msgstr "Appuyez sur Ouvrir pour sélectionner une image" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Ouvrir avec une autre _application..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Vide" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Chargement..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Choisir la méthode pour 'Utiliser en tant que fond d'écran'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." --msgstr "" --"Indiquer quel système gère votre bureau actuellement.\n" --"Ce réglage permettra à Ristretto de déterminer la méthode\n" --"adéquate pour changer le fond d'écran." -+msgstr "Indiquer quel système gère votre bureau actuellement.\nCe réglage permettra à Ristretto de déterminer la méthode\nadéquate pour changer le fond d'écran." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Aucun" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2597 - msgid "Developer:" - msgstr "Développeur :" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2606 - msgid "Ristretto is an image viewer for the Xfce desktop environment." --msgstr "" --"Ristretto est une visionneuse d’images pour l’environnement de bureau Xfce." -+msgstr "Ristretto est une visionneuse d’images pour l’environnement de bureau Xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2614 - msgid "translator-credits" --msgstr "" --"Mike Massonnet \n" --"Steve Dodier \n" --"Iliyas Jorio " -+msgstr "Mike Massonnet \nSteve Dodier \nIliyas Jorio " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2916 - msgid "Open image" - msgstr "Ouvrir une image" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2935 - msgid "Images" - msgstr "Images" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2940 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 - msgid "Could not open file" - msgstr "Impossible d’ouvrir le fichier" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3142 - msgid "Save copy" - msgstr "Sauvegarder une copie" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3168 - msgid "Could not save file" - msgstr "Impossible de sauvegarder le fichier" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3336 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Voulez-vous vraiment supprimer l'image « %s » du disque ?" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format -+#: ../src/main_window.c:3354 -+#, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "Voulez-vous vraiment supprimer l'image « %s » du disque ?" -+msgstr "Une erreur s'est produite lors de la suppression d'image « %s » du disque..\n\n%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3370 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" --msgstr "Voulez-vous vraiment mettre l'image « %s » à la corbeille ?" -+msgstr "Voulez-vous vraiment mettre l'image « %s » dans la corbeille ?" - --#: ../src/main_window.c:3344 --#, fuzzy, c-format -+#: ../src/main_window.c:3388 -+#, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" --msgstr "Voulez-vous vraiment mettre l'image « %s » à la corbeille ?" -+msgstr "Une erreur s'est produite lors de l'envoi de l'image « %s » dans la corbeille.\n\n%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3718 - msgid "Edit with" - msgstr "Éditer avec" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3736 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "Ouvrir %s et les autres fichiers de type %s avec :" -+msgstr "Ouvrir %s et les autres fichiers du type %s avec :" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3741 - msgid "Use as _default for this kind of file" - msgstr "Utiliser par _défaut pour ce type de fichier" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3831 - msgid "Recommended Applications" - msgstr "Applications recommandées" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3911 - msgid "Other Applications" - msgstr "Autres applications" - -@@ -583,59 +564,55 @@ - - #: ../src/icon_bar.c:362 - msgid "File column" --msgstr "" -+msgstr "Colonne fichier" - - #: ../src/icon_bar.c:363 - msgid "Model column used to retrieve the file from" --msgstr "" -+msgstr "Colonne du modèle utilisée pour extraire le fichier depuis" - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "" -+msgstr "Modèle de barre d'icône" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "" -+msgstr "Modèle pour la barre d'icônes" - - #: ../src/icon_bar.c:392 - msgid "Active" --msgstr "" -+msgstr "Activer" - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "" -+msgstr "Activer l'index de l'élément" - - #: ../src/icon_bar.c:409 ../src/icon_bar.c:410 --#, fuzzy - msgid "Show Text" - msgstr "Afficher le texte" - - #: ../src/icon_bar.c:416 ../src/icon_bar.c:417 --#, fuzzy - msgid "Active item fill color" --msgstr "Couleur de l'élément actif" -+msgstr "Activer la couleur de remplissage de l'élément" - - #: ../src/icon_bar.c:423 ../src/icon_bar.c:424 --#, fuzzy - msgid "Active item border color" --msgstr "Couleur de la bordure de l'élément actif" -+msgstr "Activer la couleur de la bordure de l'élément" - - #: ../src/icon_bar.c:430 ../src/icon_bar.c:431 --#, fuzzy - msgid "Active item text color" --msgstr "Couleur du texte de l'élément actif" -+msgstr "Activer la couleur du texte de l'élément" - - #: ../src/icon_bar.c:437 ../src/icon_bar.c:438 - msgid "Cursor item fill color" --msgstr "" -+msgstr "Curseur de couleur de remplissage de l'élément" - - #: ../src/icon_bar.c:444 ../src/icon_bar.c:445 - msgid "Cursor item border color" --msgstr "" -+msgstr "Curseur de couleur de bordure de l'élément" - - #: ../src/icon_bar.c:451 ../src/icon_bar.c:452 - msgid "Cursor item text color" --msgstr "" -+msgstr "Couleur du texte de l'élément du curseur" - - #: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" -@@ -667,7 +644,7 @@ - - #: ../src/privacy_dialog.c:460 - msgid "Clear private data" --msgstr "Nettoyer les données personnelles" -+msgstr "Effacer les données personnelles" - - #: ../src/preferences_dialog.c:276 - msgid "Display" -@@ -679,7 +656,7 @@ - - #: ../src/preferences_dialog.c:287 - msgid "Override background color:" --msgstr "Couleur d’arrière plan personnalisée :" -+msgstr "Remplacer la couleur d’arrière plan :" - - #: ../src/preferences_dialog.c:314 - msgid "Quality" -@@ -689,9 +666,7 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" --"Quand cette option est activée, la qualité d'image maximum va être limitée à " --"la taille de l'écran." -+msgstr "Quand cette option est activée, la qualité d'image maximum va être limitée à la taille de l'écran." - - #: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" -@@ -699,7 +674,7 @@ - - #: ../src/preferences_dialog.c:333 - msgid "Fullscreen" --msgstr "_Plein écran" -+msgstr "Plein écran" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" -@@ -708,13 +683,11 @@ - #: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"La barre des miniatures peut être masquée automatiquement en mode plein " --"écran." -+msgstr "La barre des miniatures peut être cachée automatiquement en mode plein écran." - - #: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" --msgstr "Cacher les miniatures en mode plein écran" -+msgstr "Cacher la barre des miniatures en mode plein écran" - - #: ../src/preferences_dialog.c:352 - msgid "Clock" -@@ -724,11 +697,11 @@ - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" --msgstr "" -+msgstr "Afficher une horloge analogique qui affiche l'heure courante lorsque la fenêtre est en plein écran" - - #: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" --msgstr "" -+msgstr "Afficher l'horloge en plein écran" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" -@@ -742,9 +715,7 @@ - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" --msgstr "" --"La durée d’affichage d’une image individuelle durant le diaporama\n" --"(en secondes)" -+msgstr "La durée d’affichage d’une image individuelle durant le diaporama\n(en secondes)" - - #: ../src/preferences_dialog.c:400 - msgid "Control" -@@ -771,9 +742,8 @@ - msgstr "Maximiser la fenêtre à l'ouverture d'une image" - - #: ../src/preferences_dialog.c:434 --#, fuzzy - msgid "Wrap around images" --msgstr "Adapter autour de l'image" -+msgstr "Entourer autour des images" - - #: ../src/preferences_dialog.c:453 - msgid "Desktop" -@@ -835,13 +805,7 @@ - "\n" - "Install Tumbler or another thumbnailing daemon\n" - "to resolve this issue." --msgstr "" --"Impossible de lancer le service des miniatures.\n" --"Les miniatures ne peuvent donc pas être\n" --"créées.\n" --"\n" --"Installez Tumbler ou un autre démon de création\n" --"de miniatures pour résoudre ce problème." -+msgstr "Impossible de lancer le service des miniatures.\nLes miniatures ne peuvent donc pas être\ncréées.\n\nInstallez Tumbler ou un autre démon de création\nde miniatures pour résoudre ce problème." - - #: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" -@@ -894,24 +858,3 @@ - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Visionner vos images facilement" -- --#~ msgid "Show _Navigation Toolbar" --#~ msgstr "Montrer la Barre de _Navigation" -- --#~ msgid "Toolbars" --#~ msgstr "Barres d'outils" -- --#~ msgid "Merge toolbars" --#~ msgstr "Fusionner les barres d'outils" -- --#~ msgid "Spacing" --#~ msgstr "Espacement" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "L'espacement entre les miniatures" -- --#~ msgid "border width" --#~ msgstr "Largeur des bordures" -- --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "Largeur de la barre des miniatures" -diff -Nuar a/po/gl.po b/po/gl.po ---- a/po/gl.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/gl.po 2013-10-12 23:17:22.139987344 +0300 -@@ -1,24 +1,24 @@ - # Galician translation of ristretto - # Copyright (C) 2008, 2009, 2010 Leandro Regueiro. - # This file is distributed under the same license as the Xfce package. --# -+# - # Leandro Regueiro , 2008, 2009, 2010. --# -+# - # Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas - # colaborar connosco, podes atopar máis información en --# -+# - msgid "" - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-29 22:38+0200\n" -+"POT-Creation-Date: 2012-05-04 06:45+0000\n" - "PO-Revision-Date: 2010-10-20 09:48+0100\n" - "Last-Translator: Leandro Regueiro \n" - "Language-Team: Galician \n" --"Language: gl\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: gl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - - #: ../src/main.c:62 -@@ -49,7 +49,7 @@ - "Execute %s --help para ver unha lista completa das opcións de liña de ordes " - "dispoñibles.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:3 -+#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Visor de imaxes" - -@@ -690,9 +690,8 @@ - msgstr "Calidade máxima de visualización:" - - #: ../src/preferences_dialog.c:333 --#, fuzzy - msgid "Fullscreen" --msgstr "_Pantalla completa" -+msgstr "Pantalla completa" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" -@@ -885,14 +884,14 @@ - msgid "Zoomed" - msgstr "Ampliada" - --#: ../ristretto.desktop.in.h:1 --msgid "Ristretto Image Viewer" --msgstr "Visor de imaxes Ristretto" -- - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" - msgstr "Mire as súas imaxes sen complicarse" - -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Visor de imaxes Ristretto" -+ - #~ msgid "Show _Navigation Toolbar" - #~ msgstr "Mostrar a barra de ferramentas de _navegación" - -diff -Nuar a/po/hr.po b/po/hr.po ---- a/po/hr.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/hr.po 2013-10-12 23:17:22.140987344 +0300 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-06-12 12:39+0000\n" -+"POT-Creation-Date: 2013-01-11 15:15+0000\n" - "PO-Revision-Date: 2010-06-11 19:40+0200\n" - "Last-Translator: Ivica Kolić <>\n" - "Language-Team: Croatian <>\n" -@@ -45,474 +45,474 @@ - "Try %s --help da biste vidjeli cijelu listu dostupnih opcija naredbenog " - "retka\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Preglednik slika" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Datoteka" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Otvori..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Otvori sliku" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "_Spremi kopiju..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Spremi kopiju slike" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_Svojstva..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Prikaži svojstva datoteke" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Uredi" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Uredi ovu sliku" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Zatvori" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Zatvori ovu sliku" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Isključi" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Isključi Ristretto" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_Otvori pomoću" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Sortiranje" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Izbriši" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Izbriši ovu sliku sa diska" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "_Očisti privatne podatke..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "_Osobitosti..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Pogled" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Cijeli zaslon" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Prebaci na cijeli zaslon" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Napusti cijeli zaslon" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Napusti cijeli zaslon" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." - msgstr "Postavi kao _pozadinsku sliku..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Zumiranje" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Normalna veličina" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Rotacija" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Rotiraj _desno" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Rotiraj _lijevo" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_Idi" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Naprijed" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Slijedeća sslika" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Nazad" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Prethodna slika" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "P_rvo" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Prva slika" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Zadnje" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Zadnja slika" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Pomoć" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Sadržaj" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Prikaži ristretto korisnički priručnik" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_O programu" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Prikaži informaciju o ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Pozicija" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Veličina" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "Veli_čina sličice" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Napusti _cijeli zaslon" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "Pokaži _alatnu traku " - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Pokaži _traku sličica" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "Pokaži statusnu _traku" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "posloži po imenu" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "posloži po datumu" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Lijevo" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Desno" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Vrh" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Dno" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Vrlo malo" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Manje" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Malo" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Normalno" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Veliko" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Veće" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Vrlo veliko" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Pokreni klizni prikaz" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Pauza" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Pauziraj klizni prikaz" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Nedavno korišteno" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Nedavno korišteno" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Pritisnite otvori za odabir slike" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Otvori pomoću drugog _programa..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Prazno" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Učitavam..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:356 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - msgstr "" - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:380 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:384 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:388 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Razvijatelj:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto je preglednik slika za Xfce radno okruženje" - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "Ivica Kolić (zvacet) " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Otvori sliku" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Slike" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ". Jp (e) g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Ne mogu otvoriti datotewku" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Spremi kopiju" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Ne mogu spremiti datoteku" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "jeste li sigurni da želite izbrisati sliku '%s sa diska?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -523,12 +523,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "jeste li sigurni da želite poslati sliku '%s u smeće?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -539,24 +539,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "Uredi pomoću" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Otvori %s i ostale datoteke tipa %s pomoću:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "Koristi kao _zadano za ovu vrstu datoteke" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "Preporučeni programi" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "Ostali programi" - -@@ -652,30 +652,48 @@ - msgid "Clear private data" - msgstr "Očisti privatne podatke" - --#: ../src/preferences_dialog.c:201 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Zaslon" - --#: ../src/preferences_dialog.c:206 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Pozadinska boja" - --#: ../src/preferences_dialog.c:210 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Prebriši boju pozadine:" - --#: ../src/preferences_dialog.c:222 -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Kvalitet" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "Sa omogućenom ovom opcijom maksimalna kvaliteta slike biti će ograničena na veličinu ekrana.." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Cijeli zaslon" -+ -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Sličice" - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "Traka sličica može biti automatski skrivena \n" - "kada je preglednik slika u punom zaslonu." - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Sakrij sličice kad je cijeli zaslon" - -@@ -699,11 +717,11 @@ - msgid "Slideshow" - msgstr "Klizni prikaz" - --#: ../src/preferences_dialog.c:263 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "" - --#: ../src/preferences_dialog.c:266 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -711,39 +729,39 @@ - "Vremensko razdoblje u kojem je prikazana jedna slika u kliznom prikazu\n" - "(u sekundama)" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Kontrola" - --#: ../src/preferences_dialog.c:300 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "" - --#: ../src/preferences_dialog.c:303 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Ponašanje" - --#: ../src/preferences_dialog.c:318 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Pokretanje" - --#: ../src/preferences_dialog.c:320 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "" - --#: ../src/preferences_dialog.c:326 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Omotaj oko skika" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Radna površina" - --#: ../src/preferences_dialog.c:467 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Osobitosti preglednika slika" - -@@ -931,9 +949,6 @@ - #~ msgid "_Print" - #~ msgstr "_Ispis" - --#~ msgid "Quality" --#~ msgstr "Kvalitet" -- - #~ msgid "Best" - #~ msgstr "Najbolje" - -diff -Nuar a/po/hu.po b/po/hu.po ---- a/po/hu.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/hu.po 2013-10-12 23:17:22.140987344 +0300 -@@ -1,41 +1,42 @@ - # Hungarian translation of ristretto --# Copyright 2009. Free Software Foundation, Inc. -+# Copyright 2009, 2010, 2011, 2012. Free Software Foundation, Inc. - # This file is distributed under the same license as the ristretto package. - # --# SZERVÁC Attila - # Gabor Kelemen , 2009, 2010, 2011, 2012. -+# SZERVÁC Attila , 2007, 2008, 2009. -+# Imre Benedek , 2012. - msgid "" - msgstr "" --"Project-Id-Version: ristretto\n" -+"Project-Id-Version: ristretto master\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-20 22:24+0000\n" --"PO-Revision-Date: 2012-04-21 05:43+0200\n" -+"POT-Creation-Date: 2012-11-18 00:30+0000\n" -+"PO-Revision-Date: 2012-11-20 16:23+0100\n" - "Last-Translator: Gabor Kelemen \n" --"Language-Team: Magyar \n" -+"Language-Team: Hungarian \n" - "Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" --"X-Generator: Lokalize 1.0\n" -+"Plural-Forms: nplurals=2; plural=(n != 1);\n" -+"X-Generator: KBabel 1.11.4\n" - --#: ../src/main.c:61 -+#: ../src/main.c:62 - msgid "Version information" - msgstr "Verzióinformációk" - --#: ../src/main.c:65 -+#: ../src/main.c:66 - msgid "Start in fullscreen mode" - msgstr "Indítás teljes képernyős módban" - --#: ../src/main.c:69 -+#: ../src/main.c:70 - msgid "Start a slideshow" - msgstr "Diavetítés indítása" - --#: ../src/main.c:77 -+#: ../src/main.c:78 - msgid "Show settings dialog" - msgstr "Beállítások ablak megjelenítése" - --#: ../src/main.c:105 -+#: ../src/main.c:106 - #, c-format - msgid "" - "%s: %s\n" -@@ -48,418 +49,420 @@ - "Az elérhető kapcsolók listájáért adja\n" - "ki a %s --help parancsot.\n" - --#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 -+#: ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Képmegjelenítő" - --#: ../src/main_window.c:353 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Fájl" - - #. Icon-name --#: ../src/main_window.c:357 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Megnyitás…" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:359 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Kép megnyitása" - - #. Icon-name --#: ../src/main_window.c:363 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "Más_olat mentése…" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:365 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "A kép másolatának mentése" - - #. Icon-name --#: ../src/main_window.c:369 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "T_ulajdonságok…" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:371 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Fájltulajdonságok megjelenítése" - - #. Icon-name --#: ../src/main_window.c:375 ../src/main_window.c:394 -+#: ../src/main_window.c:387 -+#: ../src/main_window.c:406 - msgid "_Edit" - msgstr "S_zerkesztés" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:377 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Kép szerkesztése" - - #. Icon-name --#: ../src/main_window.c:381 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Bezárás" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:383 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Kép bezárása" - - #. Icon-name --#: ../src/main_window.c:387 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Kilépés" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:389 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Kilépés a Ristrettoból" - --#: ../src/main_window.c:398 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "Megnyitás e_zzel" - --#: ../src/main_window.c:402 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "Ren_dezés" - - #. Icon-name --#: ../src/main_window.c:406 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Törlés" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:408 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Kép törlése a lemezről" - - #. Icon-name --#: ../src/main_window.c:412 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "Sze_mélyes adatok törlése…" - - #. Icon-name --#: ../src/main_window.c:418 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "B_eállítások…" - --#: ../src/main_window.c:425 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Nézet" - - #. Icon-name --#: ../src/main_window.c:429 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Teljes képernyő" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:431 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Átváltás teljes képernyőre" - - #. Icon-name --#: ../src/main_window.c:435 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "T_eljes képernyő elhagyása" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:437 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Teljes képernyő elhagyása" - - #. Icon-name --#: ../src/main_window.c:441 --msgid "_Set as Wallpaper..." -+#: ../src/main_window.c:453 -+msgid "Set as _Wallpaper..." - msgstr "Beállítás _háttérképként…" - --#: ../src/main_window.c:448 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Nagyítás" - - #. Icon-name --#: ../src/main_window.c:452 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "_Nagyítás" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:454 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Nagyítás" - - #. Icon-name --#: ../src/main_window.c:458 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "_Kicsinyítés" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:460 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Kicsinyítés" - - #. Icon-name --#: ../src/main_window.c:464 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Igazítás az ablakhoz" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:466 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "Illesztés az ablakhoz" - - #. Icon-name --#: ../src/main_window.c:470 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Normál méret" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:472 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "100%-os nagyítás" - --#: ../src/main_window.c:477 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Forgatás" - - #. Icon-name --#: ../src/main_window.c:481 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Forgatás _jobbra" - - #. Icon-name --#: ../src/main_window.c:487 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Forgatás _balra" - --#: ../src/main_window.c:494 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "_Ugrás" - - #. Icon-name --#: ../src/main_window.c:498 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Előre" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:500 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Következő kép" - - #. Icon-name --#: ../src/main_window.c:504 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Vissza" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:506 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Előző kép" - - #. Icon-name --#: ../src/main_window.c:510 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_Első" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:512 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Első kép" - - #. Icon-name --#: ../src/main_window.c:516 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Utolsó" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:518 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Utolsó kép" - --#: ../src/main_window.c:523 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Súgó" - - #. Icon-name --#: ../src/main_window.c:527 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Tartalom" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:529 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "A Ristretto felhasználói kézikönyvének megjelenítése" - - #. Icon-name --#: ../src/main_window.c:533 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Névjegy" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:535 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Információk megjelenítése a Ristrettoról" - --#: ../src/main_window.c:540 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Pozíció" - --#: ../src/main_window.c:544 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Méret" - --#: ../src/main_window.c:548 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "Bélyegképsá_v helye" - --#: ../src/main_window.c:552 --msgid "Thumbnail S_ize" -+#: ../src/main_window.c:564 -+msgid "Thumb_nail Size" - msgstr "Bélyegkép _mérete" - - #. Icon-name --#: ../src/main_window.c:557 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "T_eljes képernyő elhagyása" - - #. Icon-name --#: ../src/main_window.c:573 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "_Eszköztár megjelenítése" - - #. Icon-name --#: ../src/main_window.c:581 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "_Bélyegképsáv megjelenítése" - - #. Icon-name --#: ../src/main_window.c:589 --msgid "Show _Status Bar" -+#: ../src/main_window.c:601 -+msgid "Show Status _Bar" - msgstr "Álla_potsor megjelenítése" - - #. Icon-name --#: ../src/main_window.c:602 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "rendezés fájlnév szerint" - - #. Icon-name --#: ../src/main_window.c:609 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "rendezés dátum szerint" - - #. Icon-name --#: ../src/main_window.c:620 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Balra" - --#: ../src/main_window.c:626 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Jobbra" - --#: ../src/main_window.c:632 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Fent" - --#: ../src/main_window.c:638 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Lent" - --#: ../src/main_window.c:649 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Nagyon kicsi" - --#: ../src/main_window.c:655 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Kisebb" - --#: ../src/main_window.c:661 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Kicsi" - --#: ../src/main_window.c:667 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Normál" - --#: ../src/main_window.c:673 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Nagy" - --#: ../src/main_window.c:679 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Nagyobb" - --#: ../src/main_window.c:685 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Nagyon nagy" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:834 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Lejátszás" - --#: ../src/main_window.c:834 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Diavetítés lejátszása" - --#: ../src/main_window.c:835 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "S_zünet" - --#: ../src/main_window.c:835 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Diavetítés szüneteltetése" - - #. Create Recently used items Action --#: ../src/main_window.c:838 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Nemrég használt" - --#: ../src/main_window.c:838 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Nemrég használt" - --#: ../src/main_window.c:942 ../src/main_window.c:1449 -+#: ../src/main_window.c:957 -+#: ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Kép kiválasztásához nyomja meg a Megnyitás gombot" - --#: ../src/main_window.c:1311 -+#: ../src/main_window.c:1354 -+#: ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Megnyitás _más alkalmazással…" - --#: ../src/main_window.c:1315 --msgid "Open With Other _Application" --msgstr "Megnyitás _más alkalmazással" -- --#: ../src/main_window.c:1336 ../src/main_window.c:1342 -+#: ../src/main_window.c:1379 -+#: ../src/main_window.c:1385 - msgid "Empty" - msgstr "Üres" - --#: ../src/main_window.c:1459 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Betöltés…" - --#: ../src/main_window.c:2063 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "A „háttérkép-beállítási” mód kiválasztása" - --#: ../src/main_window.c:2078 ../src/preferences_dialog.c:349 -+#: ../src/main_window.c:2124 -+#: ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -469,60 +472,64 @@ - "Ez a beállítás meghatározza, hogy a Ristretto melyik\n" - "módszert használja az asztal háttérképének beállítására." - --#: ../src/main_window.c:2103 ../src/preferences_dialog.c:373 -+#: ../src/main_window.c:2149 -+#: ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Nincs" - --#: ../src/main_window.c:2107 ../src/preferences_dialog.c:377 -+#: ../src/main_window.c:2153 -+#: ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2111 ../src/preferences_dialog.c:381 -+#: ../src/main_window.c:2157 -+#: ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2542 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Fejlesztő:" - --#: ../src/main_window.c:2551 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "A Ristretto egy képmegjelenítő az Xfce asztali környezethez." - --#: ../src/main_window.c:2559 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "Kelemen Gábor " - --#: ../src/main_window.c:2861 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Kép megnyitása" - --#: ../src/main_window.c:2880 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Képek" - --#: ../src/main_window.c:2885 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2912 ../src/main_window.c:3054 -+#: ../src/main_window.c:2958 -+#: ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Nem lehet megnyitni a fájlt" - --#: ../src/main_window.c:3087 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Másolat mentése" - --#: ../src/main_window.c:3113 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Nem lehet menteni a fájlt" - --#: ../src/main_window.c:3281 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Biztosan törli a(z) „%s” képet a lemezről?" - --#: ../src/main_window.c:3299 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -533,12 +540,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3315 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Biztosan a Kukába dobja a(z) „%s” képet?" - --#: ../src/main_window.c:3333 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -549,24 +556,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3645 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "Szerkesztés ezzel" - --#: ../src/main_window.c:3663 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Válasszon alkalmazást a(z) %s és más %s típusú fájlok megnyitásához:" - --#: ../src/main_window.c:3668 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "_Legyen alapértelmezett ehhez a fájltípushoz" - --#: ../src/main_window.c:3758 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "Javasolt alkalmazások" - --#: ../src/main_window.c:3838 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "Más alkalmazások" - -@@ -602,197 +609,221 @@ - msgid "Active item index" - msgstr "Aktív elem indexe" - --#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+#: ../src/icon_bar.c:409 -+#: ../src/icon_bar.c:410 - msgid "Show Text" - msgstr "Szöveg megjelenítése" - --#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+#: ../src/icon_bar.c:416 -+#: ../src/icon_bar.c:417 - msgid "Active item fill color" - msgstr "Aktív elem kitöltőszíne" - --#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+#: ../src/icon_bar.c:423 -+#: ../src/icon_bar.c:424 - msgid "Active item border color" - msgstr "Aktív elem szegélyszíne" - --#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+#: ../src/icon_bar.c:430 -+#: ../src/icon_bar.c:431 - msgid "Active item text color" - msgstr "Aktív elem szövegszíne" - --#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+#: ../src/icon_bar.c:437 -+#: ../src/icon_bar.c:438 - msgid "Cursor item fill color" - msgstr "Kurzorelem kitöltőszíne" - --#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+#: ../src/icon_bar.c:444 -+#: ../src/icon_bar.c:445 - msgid "Cursor item border color" - msgstr "Kurzorelem szegélyszíne" - --#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+#: ../src/icon_bar.c:451 -+#: ../src/icon_bar.c:452 - msgid "Cursor item text color" - msgstr "Kurzorelem szövegszíne" - --#: ../src/privacy_dialog.c:151 -+#: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" - msgstr "Törlendő időszak:" - --#: ../src/privacy_dialog.c:155 -+#: ../src/privacy_dialog.c:156 - msgid "Cleanup" - msgstr "Törlés" - --#: ../src/privacy_dialog.c:157 -+#: ../src/privacy_dialog.c:158 - msgid "Last Hour" - msgstr "Utolsó óra" - --#: ../src/privacy_dialog.c:158 -+#: ../src/privacy_dialog.c:159 - msgid "Last Two Hours" - msgstr "Utolsó két óra" - --#: ../src/privacy_dialog.c:159 -+#: ../src/privacy_dialog.c:160 - msgid "Last Four Hours" - msgstr "Utolsó négy óra" - --#: ../src/privacy_dialog.c:160 -+#: ../src/privacy_dialog.c:161 - msgid "Today" - msgstr "Ma" - --#: ../src/privacy_dialog.c:161 -+#: ../src/privacy_dialog.c:162 - msgid "Everything" - msgstr "Minden" - --#: ../src/privacy_dialog.c:459 -+#: ../src/privacy_dialog.c:460 - msgid "Clear private data" - msgstr "Személyes adatok törlése" - --#: ../src/preferences_dialog.c:199 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Megjelenítés" - --#: ../src/preferences_dialog.c:204 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Háttérszín" - --#: ../src/preferences_dialog.c:208 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Háttérszín felülbírálása:" - --#: ../src/preferences_dialog.c:220 -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Minőség" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "With this option enabled, the maximum image-quality will be limited to the screen-size." -+msgstr "A legjobb képminőség korlátozása a kijelző méretére" -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Megjelenítési minőség korlátozása" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Teljes képernyő" -+ -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Bélyegképek" - --#: ../src/preferences_dialog.c:223 --msgid "" --"The thumbnail bar can be automatically hidden \n" --"when the window is fullscreen." --msgstr "" --"A bélyegképsáv automatikusan elrejthető\n" --"ha az ablak teljes képernyőn van." -+#: ../src/preferences_dialog.c:341 -+msgid "The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "A bélyegképsáv automatikusan elrejthető, ha az ablak teljes képernyőn van." - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Bélyegképsáv elrejtése teljes képernyőn" - --#: ../src/preferences_dialog.c:256 -+#: ../src/preferences_dialog.c:352 -+msgid "Clock" -+msgstr "Óra" -+ -+#: ../src/preferences_dialog.c:355 -+msgid "Show an analog clock that displays the current time when the window is fullscreen" -+msgstr "Analóg óra megjelenítése, ha az ablak teljes képernyőn van" -+ -+#: ../src/preferences_dialog.c:358 -+msgid "Show Fullscreen Clock" -+msgstr "Teljes képernyős óra megjelenítése" -+ -+#: ../src/preferences_dialog.c:375 - msgid "Slideshow" - msgstr "Diavetítés" - --#: ../src/preferences_dialog.c:260 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "Időtúllépés" - --#: ../src/preferences_dialog.c:263 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" - msgstr "Egyes képek megjelenítése ennyi ideig diavetítés során (másodperc)" - --#: ../src/preferences_dialog.c:272 --msgid "Clock" --msgstr "Óra" -- --#: ../src/preferences_dialog.c:275 --msgid "Show Fullscreen Clock" --msgstr "Teljes képernyős óra megjelenítése" -- --#: ../src/preferences_dialog.c:289 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Vezérlés" - --#: ../src/preferences_dialog.c:293 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Egérgörgő" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Nagyítási irány megfordítása" - --#: ../src/preferences_dialog.c:306 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Viselkedés" - --#: ../src/preferences_dialog.c:311 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Indítás" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "Ablak maximalizálása indításkor kép megnyitásakor" - --#: ../src/preferences_dialog.c:319 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Képek körbefuttatása" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Asztal" - --#: ../src/preferences_dialog.c:460 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Képmegjelenítő beállításai" - --#: ../src/properties_dialog.c:180 -+#: ../src/properties_dialog.c:181 - msgid "Name:" - msgstr "Név:" - --#: ../src/properties_dialog.c:181 -+#: ../src/properties_dialog.c:182 - msgid "Kind:" - msgstr "Típus:" - --#: ../src/properties_dialog.c:182 -+#: ../src/properties_dialog.c:183 - msgid "Modified:" - msgstr "Módosítva:" - --#: ../src/properties_dialog.c:183 -+#: ../src/properties_dialog.c:184 - msgid "Accessed:" - msgstr "Elérés:" - --#: ../src/properties_dialog.c:184 -+#: ../src/properties_dialog.c:185 - msgid "Size:" - msgstr "Méret:" - --#: ../src/properties_dialog.c:308 -+#: ../src/properties_dialog.c:309 - msgid "General" - msgstr "Általános" - --#: ../src/properties_dialog.c:312 -+#: ../src/properties_dialog.c:313 - msgid "Image" - msgstr "Kép" - --#: ../src/properties_dialog.c:525 -+#: ../src/properties_dialog.c:526 - #, c-format - msgid "Date taken:" - msgstr "Felvétel dátuma:" - --#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549 --#: ../src/properties_dialog.c:561 -+#: ../src/properties_dialog.c:538 -+#: ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 - #, c-format - msgid "%s" - msgstr "%s" - --#: ../src/properties_dialog.c:623 -+#: ../src/properties_dialog.c:624 - #, c-format - msgid "%s - Properties" - msgstr "%s tulajdonságai" - --#: ../src/thumbnailer.c:459 -+#: ../src/thumbnailer.c:460 - msgid "" - "The thumbnailer-service can not be reached,\n" - "for this reason, the thumbnails can not be\n" -@@ -801,53 +832,54 @@ - "Install Tumbler or another thumbnailing daemon\n" - "to resolve this issue." - msgstr "" --"A bélyegkép-készítő szolgáltatás nem érhető el, emiatt a bélyegképek nem " --"hozhatók létre.\n" -+"A bélyegkép-készítő szolgáltatás nem érhető el, emiatt a bélyegképek nem hozhatók létre.\n" - "\n" --"Telepítse a Tumblert vagy egy másik bélyegkép-készítő démont a " --"probléma megoldásához." -+"Telepítse a Tumblert vagy egy másik bélyegképkészítő démont a probléma megoldásához." - --#: ../src/thumbnailer.c:469 -+#: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" - msgstr "_Ne jelenjen meg ez újra" - --#: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234 -+#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" - msgstr "Stílus:" - --#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/xfce_wallpaper_manager.c:337 - msgid "Brightness:" - msgstr "Fényerő:" - --#: ../src/xfce_wallpaper_manager.c:337 -+#: ../src/xfce_wallpaper_manager.c:338 - msgid "Saturation:" - msgstr "Telítettség:" - --#: ../src/xfce_wallpaper_manager.c:354 ../src/gnome_wallpaper_manager.c:245 -+#: ../src/xfce_wallpaper_manager.c:355 -+#: ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" - msgstr "Beállítás háttérképként" - --#: ../src/xfce_wallpaper_manager.c:507 ../src/gnome_wallpaper_manager.c:312 -+#: ../src/xfce_wallpaper_manager.c:508 -+#: ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" - msgstr "Automatikus" - --#: ../src/xfce_wallpaper_manager.c:510 -+#: ../src/xfce_wallpaper_manager.c:511 - msgid "Centered" - msgstr "Középre helyezett" - --#: ../src/xfce_wallpaper_manager.c:513 -+#: ../src/xfce_wallpaper_manager.c:514 - msgid "Tiled" - msgstr "Mozaik" - --#: ../src/xfce_wallpaper_manager.c:516 -+#: ../src/xfce_wallpaper_manager.c:517 - msgid "Stretched" - msgstr "Nyújtott" - --#: ../src/xfce_wallpaper_manager.c:519 -+#: ../src/xfce_wallpaper_manager.c:520 - msgid "Scaled" - msgstr "Kifeszített" - --#: ../src/xfce_wallpaper_manager.c:522 -+#: ../src/xfce_wallpaper_manager.c:523 - msgid "Zoomed" - msgstr "Nagyított" - -@@ -859,110 +891,3 @@ - msgid "Ristretto Image Viewer" - msgstr "Ristretto képmegjelenítő" - --#~ msgid "Show _Navigation Toolbar" --#~ msgstr "_Navigáció eszköztár megjelenítése" -- --#~ msgid "Toolbars" --#~ msgstr "Eszköztárak" -- --#~ msgid "Merge toolbars" --#~ msgstr "Eszköztárak egyesítése" -- --#~ msgid "Spacing" --#~ msgstr "Térköz" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "A bélyegképek közötti terület mennyisége" -- --#~ msgid "border width" --#~ msgstr "Szegély szélessége" -- --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "A bélyegképsáv szegélyének szélessége" -- --#~ msgid "Scaling" --#~ msgstr "Méretezés" -- --#~ msgid "Don't scale over 100% when maximizing the window." --#~ msgstr "Ne méretezzen 100% fölé az ablak maximalizálásakor." -- --#~ msgid "Preferences" --#~ msgstr "Beállítások" -- --#~ msgid "Image viewer" --#~ msgstr "Képmegjelenítő" -- --#~ msgid "Open _Folder" --#~ msgstr "_Mappa megnyitása" -- --#~ msgid "Open a folder" --#~ msgstr "Mappa megnyitása" -- --#~ msgid "_Close All" --#~ msgstr "Összes _bezárása" -- --#~ msgid "Close all images" --#~ msgstr "Összes kép bezárása" -- --#~ msgid "Open folder" --#~ msgstr "Mappa megnyitása" -- --#~ msgid "Open entire folder on startup" --#~ msgstr "Teljes mappa megnyitása indításkor" -- --#~ msgid "Monitor:" --#~ msgstr "Monitor:" -- --#~ msgid "Two" --#~ msgstr "Fent" -- --#~ msgid "Show preview when loading image" --#~ msgstr "Előnézet megjelenítése kép betöltésekor" -- --#~ msgid "No action" --#~ msgstr "Nincs művelet" -- --#~ msgid "Memory" --#~ msgstr "Memória" -- --#~ msgid "Image cache" --#~ msgstr "Képgyorsítótár" -- --#~ msgid "Cache size" --#~ msgstr "Gyorsítótár mérete" -- --#~ msgid "MB" --#~ msgstr "MB" -- --#~ msgid "Enable cache" --#~ msgstr "Gyorsítótár engedélyezése" -- --#~ msgid "Enable preloading" --#~ msgstr "Előtöltés engedélyezése" -- --#~ msgid "filmstrip width" --#~ msgstr "filmszalag szélessége" -- --#~ msgid "the width of the thumbnail-bar film-strip" --#~ msgstr "A bélyegképsáv filmszalagjának szélessége" -- --#~ msgid "_Print" --#~ msgstr "_Nyomtatás" -- --#~ msgid "Quality" --#~ msgstr "Minőség" -- --#~ msgid "Maximum render quality:" --#~ msgstr "Legjobb megjelenítési minőség:" -- --#~ msgid "Best" --#~ msgstr "Legjobb" -- --#~ msgid "High" --#~ msgstr "Magas" -- --#~ msgid "Medium" --#~ msgstr "Közepes" -- --#~ msgid "Low" --#~ msgstr "Alacsony" -diff -Nuar a/po/it.po b/po/it.po ---- a/po/it.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/it.po 2013-10-12 23:17:22.141987344 +0300 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-23 19:24+0000\n" -+"POT-Creation-Date: 2012-05-01 12:51+0000\n" - "PO-Revision-Date: 2011-12-24 10:08+0100\n" - "Last-Translator: Cristian Marchi \n" - "Language-Team: Italian Translation Team \n" -@@ -454,7 +454,7 @@ - msgid "Choose 'set wallpaper' method" - msgstr "Seleziona il metodo \"imposta sfondo\"" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:356 -+#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -464,15 +464,15 @@ - "Questa impostazione determina il metodo che Ristretto\n" - "utilizzerà per configurare lo sfondo della scrivania." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:380 -+#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Nessuno" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:384 -+#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:388 -+#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - -@@ -661,54 +661,56 @@ - msgid "Clear private data" - msgstr "Cancella i dati privati" - --#: ../src/preferences_dialog.c:201 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Visualizzazione" - --#: ../src/preferences_dialog.c:206 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Colore dello sfondo" - --#: ../src/preferences_dialog.c:210 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Cambia il colore dello sfondo:" - --#: ../src/preferences_dialog.c:222 -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Qualità" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "Se questa opzione è abilitata, la massima qualità dell'immagine sarà limitata alla dimensione dello schermo" -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Limita qualità di visualizzazione" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "A schermo intero" -+ -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Miniature" - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "La barra delle miniature può essere nascosta automaticamente \n" - "quando la visualizzazione è a schermo intero." - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Nascondi la barra delle miniature quando a schermo intero" - --#: ../src/preferences_dialog.c:259 --msgid "Slideshow" --msgstr "Presentazione" -- --#: ../src/preferences_dialog.c:263 --msgid "Timeout" --msgstr "Durata" -- --#: ../src/preferences_dialog.c:266 --msgid "" --"The time period an individual image is displayed during a slideshow\n" --"(in seconds)" --msgstr "" --"Il tempo per cui viene visualizzata un'immagine durante una presentazione\n" --"(in secondi)" -- --#: ../src/preferences_dialog.c:275 -+#: ../src/preferences_dialog.c:352 - msgid "Clock" - msgstr "Orologio" - --#: ../src/preferences_dialog.c:278 -+#: ../src/preferences_dialog.c:355 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -716,43 +718,59 @@ - "La barra delle miniature può essere nascosta automaticamente \n" - "quando la visualizzazione è a schermo intero." - --#: ../src/preferences_dialog.c:281 -+#: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" - msgstr "Mostra orologio a schermo intero" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "Presentazione" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "Durata" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "" -+"Il tempo per cui viene visualizzata un'immagine durante una presentazione\n" -+"(in secondi)" -+ -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Controlli" - --#: ../src/preferences_dialog.c:300 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Rotella del mouse" - --#: ../src/preferences_dialog.c:303 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Inverti la direzione dello zoom" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Comportamento" - --#: ../src/preferences_dialog.c:318 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Avvio" - --#: ../src/preferences_dialog.c:320 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "Massimizza la finestra all'avvio quando viene aperta un'immagine" - --#: ../src/preferences_dialog.c:326 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Scorrimento continuo delle immagini" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Scrivania" - --#: ../src/preferences_dialog.c:467 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Preferenze del visualizzatore di immagini" - -@@ -971,12 +989,6 @@ - #~ msgid "_Print" - #~ msgstr "Stam_pa" - --#~ msgid "Quality" --#~ msgstr "Qualità" -- --#~ msgid "Maximum render quality:" --#~ msgstr "Qualità massima di visualizzazione:" -- - #~ msgid "Best" - #~ msgstr "Migliore" - -diff -Nuar a/po/kk.po b/po/kk.po ---- a/po/kk.po 1970-01-01 02:00:00.000000000 +0200 -+++ b/po/kk.po 2013-10-12 23:17:22.141987344 +0300 -@@ -0,0 +1,881 @@ -+# Kazakh translation for ristretto. -+# Copyright (C) 2013 The ristretto authors. -+# This file is distributed under the same license as the ristretto package. -+# Baurzhan Muftakhidinov , 2013. -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: master\n" -+"Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" -+"POT-Creation-Date: 2013-04-21 14:00+0000\n" -+"PO-Revision-Date: 2013-05-17 06:52+0600\n" -+"Last-Translator: Baurzhan Muftakhidinov \n" -+"Language-Team: Kazakh \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Language: kk\n" -+"Plural-Forms: nplurals=1; plural=0;\n" -+"X-Generator: Poedit 1.5.4\n" -+ -+#: ../src/main.c:62 -+msgid "Version information" -+msgstr "Нұсқа ақпараты" -+ -+#: ../src/main.c:66 -+msgid "Start in fullscreen mode" -+msgstr "Толық экран режимінде іске қосылу" -+ -+#: ../src/main.c:70 -+msgid "Start a slideshow" -+msgstr "Слайдшоуды бастау" -+ -+#: ../src/main.c:78 -+msgid "Show settings dialog" -+msgstr "Баптаулар сұхбатын көрсету" -+ -+#: ../src/main.c:106 -+#, c-format -+msgid "" -+"%s: %s\n" -+"\n" -+"Try %s --help to see a full list of\n" -+"available command line options.\n" -+msgstr "" -+"%s: %s\n" -+"\n" -+"Қолжетерлік командалық жол опцияларының\n" -+"толық тізімін қарап шығу үшін %s --help енгізіңіз.\n" -+ -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 -+msgid "Image Viewer" -+msgstr "Суреттерді көрсетуші" -+ -+#: ../src/main_window.c:365 -+msgid "_File" -+msgstr "_Файл" -+ -+#. Icon-name -+#: ../src/main_window.c:369 -+msgid "_Open..." -+msgstr "А_шу..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:371 -+msgid "Open an image" -+msgstr "Суретті ашу" -+ -+#. Icon-name -+#: ../src/main_window.c:375 -+msgid "_Save copy..." -+msgstr "Көшірмесін _сақтау..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:377 -+msgid "Save a copy of the image" -+msgstr "Сурет көшірмесін сақтау" -+ -+#. Icon-name -+#: ../src/main_window.c:381 -+msgid "_Properties..." -+msgstr "Қас_иеттері..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:383 -+msgid "Show file properties" -+msgstr "Файл қасиеттерін көрсету" -+ -+#. Icon-name -+#: ../src/main_window.c:387 ../src/main_window.c:406 -+msgid "_Edit" -+msgstr "Түз_ету" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:389 -+msgid "Edit this image" -+msgstr "Бұл суретті түзету" -+ -+#. Icon-name -+#: ../src/main_window.c:393 -+msgid "_Close" -+msgstr "_Жабу" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:395 -+msgid "Close this image" -+msgstr "Бұл суретті жабу" -+ -+#. Icon-name -+#: ../src/main_window.c:399 -+msgid "_Quit" -+msgstr "_Шығу" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:401 -+msgid "Quit Ristretto" -+msgstr "Ristretto-дан шығу" -+ -+#: ../src/main_window.c:410 -+msgid "_Open with" -+msgstr "Кө_мегімен ашу" -+ -+#: ../src/main_window.c:414 -+msgid "_Sorting" -+msgstr "_Сұрыптау" -+ -+#. Icon-name -+#: ../src/main_window.c:418 -+msgid "_Delete" -+msgstr "Ө_шіру" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:420 -+msgid "Delete this image from disk" -+msgstr "Бұл суретті дисктен өшіру" -+ -+#. Icon-name -+#: ../src/main_window.c:424 -+msgid "_Clear private data..." -+msgstr "Жеке ақпаратты та_зарту..." -+ -+#. Icon-name -+#: ../src/main_window.c:430 -+msgid "_Preferences..." -+msgstr "_Баптаулар..." -+ -+#: ../src/main_window.c:437 -+msgid "_View" -+msgstr "Тү_рі" -+ -+#. Icon-name -+#: ../src/main_window.c:441 -+msgid "_Fullscreen" -+msgstr "Т_олық экранға" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:443 -+msgid "Switch to fullscreen" -+msgstr "Толық экранға ауысу" -+ -+#. Icon-name -+#: ../src/main_window.c:447 -+msgid "_Leave Fullscreen" -+msgstr "Толық _экраннан шығу" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:449 -+msgid "Leave Fullscreen" -+msgstr "Толық экраннан шығу" -+ -+#. Icon-name -+#: ../src/main_window.c:453 -+msgid "Set as _Wallpaper..." -+msgstr "Тү_сқағаз ретінде орналастыру..." -+ -+#: ../src/main_window.c:460 -+msgid "_Zoom" -+msgstr "_Масштаб" -+ -+#. Icon-name -+#: ../src/main_window.c:464 -+msgid "Zoom _In" -+msgstr "Үлке_йту" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:466 -+msgid "Zoom in" -+msgstr "Үлкейту" -+ -+#. Icon-name -+#: ../src/main_window.c:470 -+msgid "Zoom _Out" -+msgstr "Кі_шірейту" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:472 -+msgid "Zoom out" -+msgstr "Кішірейту" -+ -+#. Icon-name -+#: ../src/main_window.c:476 -+msgid "Zoom _Fit" -+msgstr "Сы_йдыру" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:478 -+msgid "Zoom to fit window" -+msgstr "Терезеге сыятандай етіп масштабтау" -+ -+#. Icon-name -+#: ../src/main_window.c:482 -+msgid "_Normal Size" -+msgstr "Қалы_пты өлшемі" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:484 -+msgid "Zoom to 100%" -+msgstr "100% дейін масштабтау" -+ -+#: ../src/main_window.c:489 -+msgid "_Rotation" -+msgstr "Бұ_рылуы" -+ -+#. Icon-name -+#: ../src/main_window.c:493 -+msgid "Rotate _Right" -+msgstr "Оңғ_а бұру" -+ -+#. Icon-name -+#: ../src/main_window.c:499 -+msgid "Rotate _Left" -+msgstr "С_олға бұру" -+ -+#: ../src/main_window.c:506 -+msgid "_Go" -+msgstr "Ө_ту" -+ -+#. Icon-name -+#: ../src/main_window.c:510 -+msgid "_Forward" -+msgstr "А_лға" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:512 -+msgid "Next image" -+msgstr "Келесі сурет" -+ -+#. Icon-name -+#: ../src/main_window.c:516 -+msgid "_Back" -+msgstr "Ар_тқа" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:518 -+msgid "Previous image" -+msgstr "Алдыңғы сурет" -+ -+#. Icon-name -+#: ../src/main_window.c:522 -+msgid "F_irst" -+msgstr "Бірі_нші" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:524 -+msgid "First image" -+msgstr "Бірінші сурет" -+ -+#. Icon-name -+#: ../src/main_window.c:528 -+msgid "_Last" -+msgstr "_Соңғы" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:530 -+msgid "Last image" -+msgstr "Соңғы сурет" -+ -+#: ../src/main_window.c:535 -+msgid "_Help" -+msgstr "Кө_мек" -+ -+#. Icon-name -+#: ../src/main_window.c:539 -+msgid "_Contents" -+msgstr "Құра_масы" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:541 -+msgid "Display ristretto user manual" -+msgstr "Ristretto пайдаланушы нұсқаулығын көрсету" -+ -+#. Icon-name -+#: ../src/main_window.c:545 -+msgid "_About" -+msgstr "Осы турал_ы" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:547 -+msgid "Display information about ristretto" -+msgstr "Ristretto туралы ақпаратты көрсету" -+ -+#: ../src/main_window.c:552 -+msgid "_Position" -+msgstr "_Орны" -+ -+#: ../src/main_window.c:556 -+msgid "_Size" -+msgstr "Өл_шемі" -+ -+#: ../src/main_window.c:560 -+msgid "Thumbnail Bar _Position" -+msgstr "Үлгілер панелінің ор_наласуы" -+ -+#: ../src/main_window.c:564 -+msgid "Thumb_nail Size" -+msgstr "Үл_гілер өлшемі" -+ -+#. Icon-name -+#: ../src/main_window.c:569 -+msgid "Leave _Fullscreen" -+msgstr "Т_олық экраннан шығу" -+ -+#. Icon-name -+#: ../src/main_window.c:585 -+msgid "_Show Toolbar" -+msgstr "Саймандар _панелін көрсету" -+ -+#. Icon-name -+#: ../src/main_window.c:593 -+msgid "Show _Thumbnail Bar" -+msgstr "Үлгілер _панелін көрсету" -+ -+#. Icon-name -+#: ../src/main_window.c:601 -+msgid "Show Status _Bar" -+msgstr "Қалып-күй жо_лағын көрсету" -+ -+#. Icon-name -+#: ../src/main_window.c:614 -+msgid "sort by filename" -+msgstr "файл аты бойынша сұрыптау" -+ -+#. Icon-name -+#: ../src/main_window.c:621 -+msgid "sort by date" -+msgstr "күні бойынша сұрыптау" -+ -+#. Icon-name -+#: ../src/main_window.c:632 -+msgid "Left" -+msgstr "Сол жақ" -+ -+#: ../src/main_window.c:638 -+msgid "Right" -+msgstr "Оң жақ" -+ -+#: ../src/main_window.c:644 -+msgid "Top" -+msgstr "Жоғары" -+ -+#: ../src/main_window.c:650 -+msgid "Bottom" -+msgstr "Төмен" -+ -+#: ../src/main_window.c:661 -+msgid "Very Small" -+msgstr "Өте кішкентай" -+ -+#: ../src/main_window.c:667 -+msgid "Smaller" -+msgstr "Кішірек" -+ -+#: ../src/main_window.c:673 -+msgid "Small" -+msgstr "Кішкентай" -+ -+#: ../src/main_window.c:679 -+msgid "Normal" -+msgstr "Қалыпты" -+ -+#: ../src/main_window.c:685 -+msgid "Large" -+msgstr "Үлкен" -+ -+#: ../src/main_window.c:691 -+msgid "Larger" -+msgstr "Үлкенірек" -+ -+#: ../src/main_window.c:697 -+msgid "Very Large" -+msgstr "Өте үлкен" -+ -+#. Create Play/Pause Slideshow actions -+#: ../src/main_window.c:849 -+msgid "_Play" -+msgstr "Ой_нату" -+ -+#: ../src/main_window.c:849 -+msgid "Play slideshow" -+msgstr "Слайдшоуды ойнату" -+ -+#: ../src/main_window.c:850 -+msgid "_Pause" -+msgstr "А_ялдату" -+ -+#: ../src/main_window.c:850 -+msgid "Pause slideshow" -+msgstr "Слайдшоуды аялдату" -+ -+#. Create Recently used items Action -+#: ../src/main_window.c:853 -+msgid "_Recently used" -+msgstr "Соңғы қо_лданылған" -+ -+#: ../src/main_window.c:853 -+msgid "Recently used" -+msgstr "Соңғы қолданылған" -+ -+#: ../src/main_window.c:957 ../src/main_window.c:1495 -+msgid "Press open to select an image" -+msgstr "Суретті таңдау үшін ашу басыңыз" -+ -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 -+msgid "Open With Other _Application..." -+msgstr "Б_асқа қолданба көмегімен ашу..." -+ -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 -+msgid "Empty" -+msgstr "Бос" -+ -+#: ../src/main_window.c:1505 -+msgid "Loading..." -+msgstr "Жүктелуде..." -+ -+#: ../src/main_window.c:2109 -+msgid "Choose 'set wallpaper' method" -+msgstr "Түсқағазды орнату тәсілін таңдаңыз" -+ -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 -+msgid "" -+"Configure which system is currently managing your desktop.\n" -+"This setting determines the method Ristretto will use\n" -+"to configure the desktop wallpaper." -+msgstr "" -+"Жұмыс үстеліңізді қазір қандай жүйе басқаратынын көрсетіңіз.\n" -+"Бұл баптау Ristretto түсқағазды орнатуға\n" -+"қолданатын тәсілді анықтайды." -+ -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 -+msgid "None" -+msgstr "Ешнәрсе" -+ -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 -+msgid "Xfce" -+msgstr "Xfce" -+ -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 -+msgid "GNOME" -+msgstr "GNOME" -+ -+#: ../src/main_window.c:2597 -+msgid "Developer:" -+msgstr "Өндіруші:" -+ -+#: ../src/main_window.c:2606 -+msgid "Ristretto is an image viewer for the Xfce desktop environment." -+msgstr "Ristretto - Xfce жұмыс үстел ортасы үшін суреттер көрсетушісі." -+ -+#: ../src/main_window.c:2614 -+msgid "translator-credits" -+msgstr "Baurzhan Muftakhidinov , 2013" -+ -+#: ../src/main_window.c:2916 -+msgid "Open image" -+msgstr "Суретті ашу" -+ -+#: ../src/main_window.c:2935 -+msgid "Images" -+msgstr "Суреттер" -+ -+#: ../src/main_window.c:2940 -+msgid ".jp(e)g" -+msgstr ".jp(e)g" -+ -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 -+msgid "Could not open file" -+msgstr "Файлды ашу мүмкін емес" -+ -+#: ../src/main_window.c:3142 -+msgid "Save copy" -+msgstr "Көшірмесін сақтау" -+ -+#: ../src/main_window.c:3168 -+msgid "Could not save file" -+msgstr "Файлды сақтау мүмкін емес" -+ -+#: ../src/main_window.c:3336 -+#, c-format -+msgid "Are you sure you want to delete image '%s' from disk?" -+msgstr "'%s' суретін дисктен өшіруді шынымен қалайсыз ба?" -+ -+#: ../src/main_window.c:3354 -+#, c-format -+msgid "" -+"An error occurred when deleting image '%s' from disk.\n" -+"\n" -+"%s" -+msgstr "" -+"'%s' суретін дисктен өшіру кезінде қате орын алды.\n" -+"\n" -+"%s" -+ -+#: ../src/main_window.c:3370 -+#, c-format -+msgid "Are you sure you want to send image '%s' to trash?" -+msgstr "'%s' суретін қоқыс шелегіне тастауды шынымен қалайсыз ба?" -+ -+#: ../src/main_window.c:3388 -+#, c-format -+msgid "" -+"An error occurred when sending image '%s' to trash.\n" -+"\n" -+"%s" -+msgstr "" -+"'%s' суретін қоқыс шелегіне тастау кезінде қате орын алды.\n" -+"\n" -+"%s" -+ -+#: ../src/main_window.c:3718 -+msgid "Edit with" -+msgstr "Көмегімен түзету" -+ -+#: ../src/main_window.c:3736 -+#, c-format -+msgid "Open %s and other files of type %s with:" -+msgstr "%s және басқа да %s түрдегі барлық файлдарды көмегімен ашу:" -+ -+#: ../src/main_window.c:3741 -+msgid "Use as _default for this kind of file" -+msgstr "Файлд_ардың осы түрі үшін негізгі ретінде қылу" -+ -+#: ../src/main_window.c:3831 -+msgid "Recommended Applications" -+msgstr "Ұсынылатын қолданбалар" -+ -+#: ../src/main_window.c:3911 -+msgid "Other Applications" -+msgstr "Басқа қолданбалар" -+ -+#: ../src/icon_bar.c:345 -+msgid "Orientation" -+msgstr "Бағдары" -+ -+#: ../src/icon_bar.c:346 -+msgid "The orientation of the iconbar" -+msgstr "Таңбаша жолағының бағдарлануы" -+ -+#: ../src/icon_bar.c:362 -+msgid "File column" -+msgstr "Файл бағаны" -+ -+#: ../src/icon_bar.c:363 -+msgid "Model column used to retrieve the file from" -+msgstr "Файлды алу үшін модель бағаны" -+ -+#: ../src/icon_bar.c:375 -+msgid "Icon Bar Model" -+msgstr "Таңба панель түрі" -+ -+#: ../src/icon_bar.c:376 -+msgid "Model for the icon bar" -+msgstr "Таңба панель түрі" -+ -+#: ../src/icon_bar.c:392 -+msgid "Active" -+msgstr "Белсенді" -+ -+#: ../src/icon_bar.c:393 -+msgid "Active item index" -+msgstr "Белсенді элемент индексі" -+ -+#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+msgid "Show Text" -+msgstr "Мәтінді көрсету" -+ -+#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+msgid "Active item fill color" -+msgstr "Белсенді элемент құйма түсі" -+ -+#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+msgid "Active item border color" -+msgstr "Белсенді элемент шет түсі" -+ -+#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+msgid "Active item text color" -+msgstr "Белсенді элемент мәтін түсі" -+ -+#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+msgid "Cursor item fill color" -+msgstr "Курсордың элемент құйма түсі" -+ -+#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+msgid "Cursor item border color" -+msgstr "Курсордың элемент шет түсі" -+ -+#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+msgid "Cursor item text color" -+msgstr "Курсордың элемент мәтін түсі" -+ -+#: ../src/privacy_dialog.c:152 -+msgid "Time range to clear:" -+msgstr "Тазарту үшін уақыт аралығы:" -+ -+#: ../src/privacy_dialog.c:156 -+msgid "Cleanup" -+msgstr "Тазарту" -+ -+#: ../src/privacy_dialog.c:158 -+msgid "Last Hour" -+msgstr "Соңғы сағат" -+ -+#: ../src/privacy_dialog.c:159 -+msgid "Last Two Hours" -+msgstr "Соңғы екі сағат" -+ -+#: ../src/privacy_dialog.c:160 -+msgid "Last Four Hours" -+msgstr "Соңғы төрт сағат" -+ -+#: ../src/privacy_dialog.c:161 -+msgid "Today" -+msgstr "Бүгін" -+ -+#: ../src/privacy_dialog.c:162 -+msgid "Everything" -+msgstr "Барлығы" -+ -+#: ../src/privacy_dialog.c:460 -+msgid "Clear private data" -+msgstr "Жеке ақпаратты тазарту" -+ -+#: ../src/preferences_dialog.c:276 -+msgid "Display" -+msgstr "Көрсетілуі" -+ -+#: ../src/preferences_dialog.c:283 -+msgid "Background color" -+msgstr "Фон түсі" -+ -+#: ../src/preferences_dialog.c:287 -+msgid "Override background color:" -+msgstr "Фон суретін алмастыру:" -+ -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Сапасы" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "" -+"Бұл опция іске қосылған кезде, суреттердің максималды сапасы экран " -+"өлшемдерімен шектелетін болады." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Көрсету сапасын шектеу" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Толық экранға" -+ -+#: ../src/preferences_dialog.c:338 -+msgid "Thumbnails" -+msgstr "Үлгілер" -+ -+#: ../src/preferences_dialog.c:341 -+msgid "" -+"The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "Үлгілер панелін толық экранды режимінде жасыруға болады." -+ -+#: ../src/preferences_dialog.c:344 -+msgid "Hide thumbnail bar when fullscreen" -+msgstr "Толық экранда үлгілер панелін жасыру" -+ -+#: ../src/preferences_dialog.c:352 -+msgid "Clock" -+msgstr "Сағат" -+ -+#: ../src/preferences_dialog.c:355 -+msgid "" -+"Show an analog clock that displays the current time when the window is " -+"fullscreen" -+msgstr "Толық экранды режимінде уақытты көрсететін сағатты көрсету" -+ -+#: ../src/preferences_dialog.c:358 -+msgid "Show Fullscreen Clock" -+msgstr "Толық экран сағатын көрсету" -+ -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "Слайдшоу" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "Күту" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "" -+"Слайдшоу кезінде бір суретке кететін көрсету уақыты\n" -+"(секунд)" -+ -+#: ../src/preferences_dialog.c:400 -+msgid "Control" -+msgstr "Басқару" -+ -+#: ../src/preferences_dialog.c:404 -+msgid "Scroll wheel" -+msgstr "Тышқан дөңгелегі" -+ -+#: ../src/preferences_dialog.c:407 -+msgid "Invert zoom direction" -+msgstr "Масштабтау бағытын өзгерту" -+ -+#: ../src/preferences_dialog.c:421 -+msgid "Behaviour" -+msgstr "Мінез-құлығы" -+ -+#: ../src/preferences_dialog.c:426 -+msgid "Startup" -+msgstr "Іске қосылу" -+ -+#: ../src/preferences_dialog.c:428 -+msgid "Maximize window on startup when opening an image" -+msgstr "Суретті ашып іске қосылған кезде, терезені толық экранға қылу" -+ -+#: ../src/preferences_dialog.c:434 -+msgid "Wrap around images" -+msgstr "Соңғы суреттен кейін біріншіге өту" -+ -+#: ../src/preferences_dialog.c:453 -+msgid "Desktop" -+msgstr "Жұмыс үстелі" -+ -+#: ../src/preferences_dialog.c:572 -+msgid "Image Viewer Preferences" -+msgstr "Суреттер көрсетушісінің баптаулары" -+ -+#: ../src/properties_dialog.c:181 -+msgid "Name:" -+msgstr "Атауы:" -+ -+#: ../src/properties_dialog.c:182 -+msgid "Kind:" -+msgstr "Түрі:" -+ -+#: ../src/properties_dialog.c:183 -+msgid "Modified:" -+msgstr "Түрлендірілген:" -+ -+#: ../src/properties_dialog.c:184 -+msgid "Accessed:" -+msgstr "Қатынаған:" -+ -+#: ../src/properties_dialog.c:185 -+msgid "Size:" -+msgstr "Өлшемі:" -+ -+#: ../src/properties_dialog.c:309 -+msgid "General" -+msgstr "Жалпы" -+ -+#: ../src/properties_dialog.c:313 -+msgid "Image" -+msgstr "Сурет" -+ -+#: ../src/properties_dialog.c:526 -+#, c-format -+msgid "Date taken:" -+msgstr "Түсірілген күні:" -+ -+#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 -+#, c-format -+msgid "%s" -+msgstr "%s" -+ -+#: ../src/properties_dialog.c:624 -+#, c-format -+msgid "%s - Properties" -+msgstr "%s - қасиеттері" -+ -+#: ../src/thumbnailer.c:460 -+msgid "" -+"The thumbnailer-service can not be reached,\n" -+"for this reason, the thumbnails can not be\n" -+"created.\n" -+"\n" -+"Install Tumbler or another thumbnailing daemon\n" -+"to resolve this issue." -+msgstr "" -+"Үлгілерді жасайтын қызметке қатынау мүмкін емес,\n" -+"сондықтан, үлгілерді жасау\n" -+"мүмкін емес.\n" -+"\n" -+"Бұл мәселені шешу үшін Tumbler немесе басқа\n" -+"үлгілер қызметін орнатыңыз." -+ -+#: ../src/thumbnailer.c:470 -+msgid "Do _not show this message again" -+msgstr "Бұл хабарламаны келесіде _көрсетпеу" -+ -+#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+msgid "Style:" -+msgstr "Стилі:" -+ -+#: ../src/xfce_wallpaper_manager.c:337 -+msgid "Brightness:" -+msgstr "Жарықтылығы:" -+ -+#: ../src/xfce_wallpaper_manager.c:338 -+msgid "Saturation:" -+msgstr "Қаңықтылығы:" -+ -+#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+msgid "Set as wallpaper" -+msgstr "Түсқағаз ретінде орналастыру" -+ -+#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+msgid "Auto" -+msgstr "Авто" -+ -+#: ../src/xfce_wallpaper_manager.c:511 -+msgid "Centered" -+msgstr "Ортасына қарай" -+ -+#: ../src/xfce_wallpaper_manager.c:514 -+msgid "Tiled" -+msgstr "Плитка" -+ -+#: ../src/xfce_wallpaper_manager.c:517 -+msgid "Stretched" -+msgstr "Созылған" -+ -+#: ../src/xfce_wallpaper_manager.c:520 -+msgid "Scaled" -+msgstr "Масштабталған" -+ -+#: ../src/xfce_wallpaper_manager.c:523 -+msgid "Zoomed" -+msgstr "Үлкейтілген" -+ -+#: ../ristretto.desktop.in.h:2 -+msgid "Look at your images easily" -+msgstr "Суреттеріңізді жеңіл түрде шолыңыз" -+ -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "Ristretto суреттерді көрсетушісі" -diff -Nuar a/po/ko.po b/po/ko.po ---- a/po/ko.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ko.po 2013-10-12 23:17:22.141987344 +0300 -@@ -1,7 +1,7 @@ - # Korean translation for Ristretto.master package. - # Copyright (C) 2006-2012 Stephan Arts et al. - # This file is distributed under the same license as the Ristretto package. --# Seong-ho, Cho , 2012. -+# Seong-ho Cho , 2012, 2013. - # - # Please write your name and e-mail into "translator-credits" if you update this translation script. - # -@@ -13,8 +13,8 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-23 07:54+0000\n" --"PO-Revision-Date: 2012-04-23 21:45+0900\n" -+"POT-Creation-Date: 2012-04-29 20:36+0000\n" -+"PO-Revision-Date: 2012-04-30 08:52+0900\n" - "Last-Translator: Seong-ho Cho \n" - "Language-Team: xfce-i18n \n" - "Language: ko\n" -@@ -26,23 +26,23 @@ - "X-Poedit-Country: KOREA, REPUBLIC OF\n" - "X-Poedit-SourceCharset: utf-8\n" - --#: ../src/main.c:61 -+#: ../src/main.c:62 - msgid "Version information" - msgstr "버전 정보" - --#: ../src/main.c:65 -+#: ../src/main.c:66 - msgid "Start in fullscreen mode" - msgstr "전체 화면 모드로 시작하기" - --#: ../src/main.c:69 -+#: ../src/main.c:70 - msgid "Start a slideshow" - msgstr "슬라이드 쇼 시작하기" - --#: ../src/main.c:77 -+#: ../src/main.c:78 - msgid "Show settings dialog" - msgstr "설정 대화상자 표시" - --#: ../src/main.c:105 -+#: ../src/main.c:106 - #, c-format - msgid "" - "%s: %s\n" -@@ -55,420 +55,420 @@ - "사용할 수 있는 명령줄 옵션의 전체 목록을\n" - "보려면 %s --help를 입력합니다.\n" - --#: ../src/main_window.c:55 -+#: ../src/main_window.c:56 - #: ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "그림 보기" - --#: ../src/main_window.c:357 -+#: ../src/main_window.c:358 - msgid "_File" - msgstr "파일(_F)" - - #. Icon-name --#: ../src/main_window.c:361 -+#: ../src/main_window.c:362 - msgid "_Open..." - msgstr "열기(_O)..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:363 -+#: ../src/main_window.c:364 - msgid "Open an image" - msgstr "그림 열기" - - #. Icon-name --#: ../src/main_window.c:367 -+#: ../src/main_window.c:368 - msgid "_Save copy..." - msgstr "사본 저장(_S)..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:369 -+#: ../src/main_window.c:370 - msgid "Save a copy of the image" - msgstr "그림 사본 저장" - - #. Icon-name --#: ../src/main_window.c:373 -+#: ../src/main_window.c:374 - msgid "_Properties..." - msgstr "속성(_P)..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:375 -+#: ../src/main_window.c:376 - msgid "Show file properties" - msgstr "파일 속성 표시" - - #. Icon-name --#: ../src/main_window.c:379 --#: ../src/main_window.c:398 -+#: ../src/main_window.c:380 -+#: ../src/main_window.c:399 - msgid "_Edit" - msgstr "편집(_E)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:381 -+#: ../src/main_window.c:382 - msgid "Edit this image" - msgstr "이 그림 편집" - - #. Icon-name --#: ../src/main_window.c:385 -+#: ../src/main_window.c:386 - msgid "_Close" - msgstr "닫기(_C)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:387 -+#: ../src/main_window.c:388 - msgid "Close this image" - msgstr "이 그림 닫기" - - #. Icon-name --#: ../src/main_window.c:391 -+#: ../src/main_window.c:392 - msgid "_Quit" --msgstr "나가기(_Q)" -+msgstr "끝내기(_Q)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:393 -+#: ../src/main_window.c:394 - msgid "Quit Ristretto" - msgstr "리스트레또 나가기" - --#: ../src/main_window.c:402 -+#: ../src/main_window.c:403 - msgid "_Open with" - msgstr "다음으로 열기(_O)" - --#: ../src/main_window.c:406 -+#: ../src/main_window.c:407 - msgid "_Sorting" - msgstr "정렬(_S)" - - #. Icon-name --#: ../src/main_window.c:410 -+#: ../src/main_window.c:411 - msgid "_Delete" - msgstr "삭제(_D)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:412 -+#: ../src/main_window.c:413 - msgid "Delete this image from disk" - msgstr "이 그림을 디스크에서 삭제" - - #. Icon-name --#: ../src/main_window.c:416 -+#: ../src/main_window.c:417 - msgid "_Clear private data..." - msgstr "개인 데이터 지우기(_C)..." - - #. Icon-name --#: ../src/main_window.c:422 -+#: ../src/main_window.c:423 - msgid "_Preferences..." - msgstr "기본 설정(_P)..." - --#: ../src/main_window.c:429 -+#: ../src/main_window.c:430 - msgid "_View" - msgstr "보기(_V)" - - #. Icon-name --#: ../src/main_window.c:433 -+#: ../src/main_window.c:434 - msgid "_Fullscreen" - msgstr "전체 화면(_F)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:435 -+#: ../src/main_window.c:436 - msgid "Switch to fullscreen" - msgstr "전체 화면으로 전환" - - #. Icon-name --#: ../src/main_window.c:439 -+#: ../src/main_window.c:440 - msgid "_Leave Fullscreen" - msgstr "전체 화면 나가기(_L)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:441 -+#: ../src/main_window.c:442 - msgid "Leave Fullscreen" - msgstr "전체 화면 나가기" - - #. Icon-name --#: ../src/main_window.c:445 -+#: ../src/main_window.c:446 - msgid "Set as _Wallpaper..." - msgstr "바탕 화면으로 설정(_W)..." - --#: ../src/main_window.c:452 -+#: ../src/main_window.c:453 - msgid "_Zoom" - msgstr "확대(_Z)" - - #. Icon-name --#: ../src/main_window.c:456 -+#: ../src/main_window.c:457 - msgid "Zoom _In" - msgstr "확대(_I)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:458 -+#: ../src/main_window.c:459 - msgid "Zoom in" - msgstr "확대" - - #. Icon-name --#: ../src/main_window.c:462 -+#: ../src/main_window.c:463 - msgid "Zoom _Out" - msgstr "축소(_O)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:464 -+#: ../src/main_window.c:465 - msgid "Zoom out" - msgstr "축소" - - #. Icon-name --#: ../src/main_window.c:468 -+#: ../src/main_window.c:469 - msgid "Zoom _Fit" - msgstr "화면에 맞추기(_F)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:470 -+#: ../src/main_window.c:471 - msgid "Zoom to fit window" - msgstr "창에 맞게 확대" - - #. Icon-name --#: ../src/main_window.c:474 -+#: ../src/main_window.c:475 - msgid "_Normal Size" - msgstr "본래 크기(_N)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:476 -+#: ../src/main_window.c:477 - msgid "Zoom to 100%" - msgstr "원래 크기" - --#: ../src/main_window.c:481 -+#: ../src/main_window.c:482 - msgid "_Rotation" - msgstr "회전(_R)" - - #. Icon-name --#: ../src/main_window.c:485 -+#: ../src/main_window.c:486 - msgid "Rotate _Right" - msgstr "오른쪽으로 회전(_R)" - - #. Icon-name --#: ../src/main_window.c:491 -+#: ../src/main_window.c:492 - msgid "Rotate _Left" - msgstr "왼쪽으로 회전(_L)" - --#: ../src/main_window.c:498 -+#: ../src/main_window.c:499 - msgid "_Go" - msgstr "이동(_G)" - - #. Icon-name --#: ../src/main_window.c:502 -+#: ../src/main_window.c:503 - msgid "_Forward" - msgstr "다음(_F)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:504 -+#: ../src/main_window.c:505 - msgid "Next image" - msgstr "다음 그림" - - #. Icon-name --#: ../src/main_window.c:508 -+#: ../src/main_window.c:509 - msgid "_Back" - msgstr "이전(_B)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:510 -+#: ../src/main_window.c:511 - msgid "Previous image" - msgstr "이전 그림" - - #. Icon-name --#: ../src/main_window.c:514 -+#: ../src/main_window.c:515 - msgid "F_irst" - msgstr "첫번째(_I)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:516 -+#: ../src/main_window.c:517 - msgid "First image" - msgstr "처음 그림(_F)" - - #. Icon-name --#: ../src/main_window.c:520 -+#: ../src/main_window.c:521 - msgid "_Last" - msgstr "마지막(_L)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:522 -+#: ../src/main_window.c:523 - msgid "Last image" - msgstr "마지막 그림(_L)" - --#: ../src/main_window.c:527 -+#: ../src/main_window.c:528 - msgid "_Help" - msgstr "도움말(_H)" - - #. Icon-name --#: ../src/main_window.c:531 -+#: ../src/main_window.c:532 - msgid "_Contents" - msgstr "내용(_C)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:533 -+#: ../src/main_window.c:534 - msgid "Display ristretto user manual" - msgstr "리스트레또 사용자 설명서 표시" - - #. Icon-name --#: ../src/main_window.c:537 -+#: ../src/main_window.c:538 - msgid "_About" - msgstr "정보(_A)" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:539 -+#: ../src/main_window.c:540 - msgid "Display information about ristretto" - msgstr "리스트레또에 대한 정보 표시" - --#: ../src/main_window.c:544 -+#: ../src/main_window.c:545 - msgid "_Position" - msgstr "위치(_P)" - --#: ../src/main_window.c:548 -+#: ../src/main_window.c:549 - msgid "_Size" - msgstr "크기(_S)" - --#: ../src/main_window.c:552 -+#: ../src/main_window.c:553 - msgid "Thumbnail Bar _Position" - msgstr "섬네일 막대 위치(_P)" - --#: ../src/main_window.c:556 -+#: ../src/main_window.c:557 - msgid "Thumb_nail Size" - msgstr "섬네일 크기(_N)" - - #. Icon-name --#: ../src/main_window.c:561 -+#: ../src/main_window.c:562 - msgid "Leave _Fullscreen" - msgstr "전체 화면 나가기(_F)" - - #. Icon-name --#: ../src/main_window.c:577 -+#: ../src/main_window.c:578 - msgid "_Show Toolbar" - msgstr "도구 모음 표시(_S)" - - #. Icon-name --#: ../src/main_window.c:585 -+#: ../src/main_window.c:586 - msgid "Show _Thumbnail Bar" - msgstr "섬네일 막대 표시(_T)" - - #. Icon-name --#: ../src/main_window.c:593 -+#: ../src/main_window.c:594 - msgid "Show Status _Bar" - msgstr "상태 표시줄 보기(_B)" - - #. Icon-name --#: ../src/main_window.c:606 -+#: ../src/main_window.c:607 - msgid "sort by filename" - msgstr "파일 이름순 정렬" - - #. Icon-name --#: ../src/main_window.c:613 -+#: ../src/main_window.c:614 - msgid "sort by date" - msgstr "날짜순 정렬" - - #. Icon-name --#: ../src/main_window.c:624 -+#: ../src/main_window.c:625 - msgid "Left" - msgstr "왼쪽" - --#: ../src/main_window.c:630 -+#: ../src/main_window.c:631 - msgid "Right" - msgstr "오른쪽" - --#: ../src/main_window.c:636 -+#: ../src/main_window.c:637 - msgid "Top" - msgstr "위" - --#: ../src/main_window.c:642 -+#: ../src/main_window.c:643 - msgid "Bottom" - msgstr "아래" - --#: ../src/main_window.c:653 -+#: ../src/main_window.c:654 - msgid "Very Small" - msgstr "매우 작게" - --#: ../src/main_window.c:659 -+#: ../src/main_window.c:660 - msgid "Smaller" - msgstr "더 작게" - --#: ../src/main_window.c:665 -+#: ../src/main_window.c:666 - msgid "Small" - msgstr "작게" - --#: ../src/main_window.c:671 -+#: ../src/main_window.c:672 - msgid "Normal" - msgstr "보통" - --#: ../src/main_window.c:677 -+#: ../src/main_window.c:678 - msgid "Large" - msgstr "크게 " - --#: ../src/main_window.c:683 -+#: ../src/main_window.c:684 - msgid "Larger" - msgstr "더 크게" - --#: ../src/main_window.c:689 -+#: ../src/main_window.c:690 - msgid "Very Large" - msgstr "매우 크게" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:840 -+#: ../src/main_window.c:841 - msgid "_Play" - msgstr "재생(_P)" - --#: ../src/main_window.c:840 -+#: ../src/main_window.c:841 - msgid "Play slideshow" - msgstr "슬라이드 쇼 재생" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:842 - msgid "_Pause" - msgstr "멈춤(_P)" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:842 - msgid "Pause slideshow" - msgstr "슬라이드 쇼 멈춤" - - #. Create Recently used items Action --#: ../src/main_window.c:844 -+#: ../src/main_window.c:845 - msgid "_Recently used" - msgstr "최근 사용(_R)" - --#: ../src/main_window.c:844 -+#: ../src/main_window.c:845 - msgid "Recently used" - msgstr "최근 사용한 것" - --#: ../src/main_window.c:948 --#: ../src/main_window.c:1459 -+#: ../src/main_window.c:949 -+#: ../src/main_window.c:1460 - msgid "Press open to select an image" - msgstr "그림을 선택하려면 열기를 누릅니다" - --#: ../src/main_window.c:1321 --#: ../src/main_window.c:1325 -+#: ../src/main_window.c:1322 -+#: ../src/main_window.c:1326 - msgid "Open With Other _Application..." - msgstr "다른 프로그램으로 열기(_A)..." - --#: ../src/main_window.c:1346 --#: ../src/main_window.c:1352 -+#: ../src/main_window.c:1347 -+#: ../src/main_window.c:1353 - msgid "Empty" - msgstr "비어있음" - --#: ../src/main_window.c:1469 -+#: ../src/main_window.c:1470 - msgid "Loading..." - msgstr "불러오는 중..." - --#: ../src/main_window.c:2073 -+#: ../src/main_window.c:2074 - msgid "Choose 'set wallpaper' method" - msgstr "'배경 화면 설정' 방식 선택" - --#: ../src/main_window.c:2088 --#: ../src/preferences_dialog.c:355 -+#: ../src/main_window.c:2089 -+#: ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -476,66 +476,66 @@ - msgstr "" - "지금 여러분의 데스크톱을 관리하고 있는 시스템을 설정합니다.\n" - "이 설정은 리스트레또가 데스크톱 배경 화면을 설정할 때\n" --"사용할 방식을 결정할 것입니다." -+"사용할 방식을 결정합니다." - --#: ../src/main_window.c:2113 --#: ../src/preferences_dialog.c:379 -+#: ../src/main_window.c:2114 -+#: ../src/preferences_dialog.c:488 - msgid "None" - msgstr "없음" - --#: ../src/main_window.c:2117 --#: ../src/preferences_dialog.c:383 -+#: ../src/main_window.c:2118 -+#: ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2121 --#: ../src/preferences_dialog.c:387 -+#: ../src/main_window.c:2122 -+#: ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "그놈" - --#: ../src/main_window.c:2552 -+#: ../src/main_window.c:2553 - msgid "Developer:" - msgstr "개발자:" - --#: ../src/main_window.c:2561 -+#: ../src/main_window.c:2562 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "리스트레또는 Xfce 데스크톱 환경의 그림 보기 프로그램입니다." - --#: ../src/main_window.c:2569 -+#: ../src/main_window.c:2570 - msgid "translator-credits" - msgstr "Seong-ho Cho " - --#: ../src/main_window.c:2871 -+#: ../src/main_window.c:2872 - msgid "Open image" - msgstr "그림 열기" - --#: ../src/main_window.c:2890 -+#: ../src/main_window.c:2891 - msgid "Images" - msgstr "그림" - --#: ../src/main_window.c:2895 -+#: ../src/main_window.c:2896 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2922 --#: ../src/main_window.c:3064 -+#: ../src/main_window.c:2923 -+#: ../src/main_window.c:3065 - msgid "Could not open file" - msgstr "파일을 열 수 없습니다" - --#: ../src/main_window.c:3097 -+#: ../src/main_window.c:3098 - msgid "Save copy" - msgstr "사본 저장" - --#: ../src/main_window.c:3123 -+#: ../src/main_window.c:3124 - msgid "Could not save file" - msgstr "파일을 저장할 수 없습니다" - --#: ../src/main_window.c:3291 -+#: ../src/main_window.c:3292 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "정말로 '%s' 그림을 디스크에서 삭제하시렵니까?" - --#: ../src/main_window.c:3309 -+#: ../src/main_window.c:3310 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -546,12 +546,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3325 -+#: ../src/main_window.c:3326 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "정말로 '%s' 그림을 휴지통으로 보내시렵니까?" - --#: ../src/main_window.c:3343 -+#: ../src/main_window.c:3344 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -562,24 +562,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3673 -+#: ../src/main_window.c:3674 - msgid "Edit with" - msgstr "다음으로 편집" - --#: ../src/main_window.c:3691 -+#: ../src/main_window.c:3692 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "%s와(과) %s 형식의 다른 파일을 다음으로 열기:" - --#: ../src/main_window.c:3696 -+#: ../src/main_window.c:3697 - msgid "Use as _default for this kind of file" - msgstr "이 형식의 파일에 대해 기본값으로 사용(_D)" - --#: ../src/main_window.c:3786 -+#: ../src/main_window.c:3787 - msgid "Recommended Applications" - msgstr "추천 프로그램" - --#: ../src/main_window.c:3866 -+#: ../src/main_window.c:3867 - msgid "Other Applications" - msgstr "다른 프로그램" - -@@ -650,59 +650,75 @@ - msgid "Cursor item text color" - msgstr "커서 항목 텍스트 색" - --#: ../src/privacy_dialog.c:151 -+#: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" - msgstr "지울 시간 범위:" - --#: ../src/privacy_dialog.c:155 -+#: ../src/privacy_dialog.c:156 - msgid "Cleanup" - msgstr "지우기" - --#: ../src/privacy_dialog.c:157 -+#: ../src/privacy_dialog.c:158 - msgid "Last Hour" - msgstr "한 시간 전" - --#: ../src/privacy_dialog.c:158 -+#: ../src/privacy_dialog.c:159 - msgid "Last Two Hours" - msgstr "두 시간 전" - --#: ../src/privacy_dialog.c:159 -+#: ../src/privacy_dialog.c:160 - msgid "Last Four Hours" - msgstr "네 시간 전" - --#: ../src/privacy_dialog.c:160 -+#: ../src/privacy_dialog.c:161 - msgid "Today" - msgstr "오늘" - --#: ../src/privacy_dialog.c:161 -+#: ../src/privacy_dialog.c:162 - msgid "Everything" - msgstr "전부" - --#: ../src/privacy_dialog.c:459 -+#: ../src/privacy_dialog.c:460 - msgid "Clear private data" - msgstr "개인 데이터 지우기" - --#: ../src/preferences_dialog.c:200 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "표시" - --#: ../src/preferences_dialog.c:205 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "배경 색" - --#: ../src/preferences_dialog.c:209 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "우선 적용할 배경 색:" - --#: ../src/preferences_dialog.c:221 -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "화질" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "With this option enabled, the maximum image-quality will be limited to the screen-size." -+msgstr "이 옵션을 활성화 하면 화면 크기에 따라 최대 이미지 화질을 제한합니다." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "렌더링 화질 제" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "전체 화면" -+ -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "섬네일" - --#: ../src/preferences_dialog.c:224 -+#: ../src/preferences_dialog.c:341 - msgid "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "창이 전체 화면 상태일 때 섬네일 막대를 자동으로 숨길 수 있습니다." - --#: ../src/preferences_dialog.c:227 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "전체 화면일 때 섬네일 막대 숨기기" - -@@ -716,17 +732,17 @@ - - #: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" --msgstr "전체 화면 시계 보기" -+msgstr "전체 화면 시계 표시" - - #: ../src/preferences_dialog.c:375 - msgid "Slideshow" - msgstr "슬라이드쇼" - --#: ../src/preferences_dialog.c:262 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "경과시간" - --#: ../src/preferences_dialog.c:265 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" -@@ -734,88 +750,88 @@ - "슬라이드 쇼를 진행하는 동안 제각각의 그림을 표시하는 시간의 간격입니다\n" - "(초 단위)" - --#: ../src/preferences_dialog.c:295 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "제어" - --#: ../src/preferences_dialog.c:299 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "스크롤 휠" - --#: ../src/preferences_dialog.c:302 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "확대 방향 뒤집기" - --#: ../src/preferences_dialog.c:312 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "동작" - --#: ../src/preferences_dialog.c:317 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "시동" - --#: ../src/preferences_dialog.c:319 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "그림 열 때 시작시 창 최대화" - --#: ../src/preferences_dialog.c:325 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "그림 주변 둘러싸기" - --#: ../src/preferences_dialog.c:344 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "데스크톱" - --#: ../src/preferences_dialog.c:466 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "그림 보기 기본 설정" - --#: ../src/properties_dialog.c:180 -+#: ../src/properties_dialog.c:181 - msgid "Name:" - msgstr "이름:" - --#: ../src/properties_dialog.c:181 -+#: ../src/properties_dialog.c:182 - msgid "Kind:" - msgstr "종류:" - --#: ../src/properties_dialog.c:182 -+#: ../src/properties_dialog.c:183 - msgid "Modified:" - msgstr "수정일시:" - --#: ../src/properties_dialog.c:183 -+#: ../src/properties_dialog.c:184 - msgid "Accessed:" - msgstr "접근:" - --#: ../src/properties_dialog.c:184 -+#: ../src/properties_dialog.c:185 - msgid "Size:" - msgstr "크기:" - --#: ../src/properties_dialog.c:308 -+#: ../src/properties_dialog.c:309 - msgid "General" - msgstr "일반" - --#: ../src/properties_dialog.c:312 -+#: ../src/properties_dialog.c:313 - msgid "Image" - msgstr "그림" - --#: ../src/properties_dialog.c:525 -+#: ../src/properties_dialog.c:526 - #, c-format - msgid "Date taken:" - msgstr "촬영일자:" - --#: ../src/properties_dialog.c:537 --#: ../src/properties_dialog.c:549 --#: ../src/properties_dialog.c:561 -+#: ../src/properties_dialog.c:538 -+#: ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 - #, c-format - msgid "%s" - msgstr "%s" - --#: ../src/properties_dialog.c:623 -+#: ../src/properties_dialog.c:624 - #, c-format - msgid "%s - Properties" - msgstr "%s - 속성" - --#: ../src/thumbnailer.c:459 -+#: ../src/thumbnailer.c:460 - msgid "" - "The thumbnailer-service can not be reached,\n" - "for this reason, the thumbnails can not be\n" -@@ -830,50 +846,50 @@ - "이 문제를 해결하려면 텀블러나 다른\n" - "섬네일 데몬을 설치합니다." - --#: ../src/thumbnailer.c:469 -+#: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" - msgstr "이 메시지를 다시 표시하지 않습니다(_N)" - --#: ../src/xfce_wallpaper_manager.c:335 --#: ../src/gnome_wallpaper_manager.c:234 -+#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" - msgstr "방식:" - --#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/xfce_wallpaper_manager.c:337 - msgid "Brightness:" - msgstr "밝기:" - --#: ../src/xfce_wallpaper_manager.c:337 -+#: ../src/xfce_wallpaper_manager.c:338 - msgid "Saturation:" - msgstr "채도:" - --#: ../src/xfce_wallpaper_manager.c:354 --#: ../src/gnome_wallpaper_manager.c:245 -+#: ../src/xfce_wallpaper_manager.c:355 -+#: ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" - msgstr "바탕 화면으로 설정" - --#: ../src/xfce_wallpaper_manager.c:507 --#: ../src/gnome_wallpaper_manager.c:312 -+#: ../src/xfce_wallpaper_manager.c:508 -+#: ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" - msgstr "자동" - --#: ../src/xfce_wallpaper_manager.c:510 -+#: ../src/xfce_wallpaper_manager.c:511 - msgid "Centered" - msgstr "가운데" - --#: ../src/xfce_wallpaper_manager.c:513 -+#: ../src/xfce_wallpaper_manager.c:514 - msgid "Tiled" - msgstr "바둑판" - --#: ../src/xfce_wallpaper_manager.c:516 -+#: ../src/xfce_wallpaper_manager.c:517 - msgid "Stretched" - msgstr "늘임" - --#: ../src/xfce_wallpaper_manager.c:519 -+#: ../src/xfce_wallpaper_manager.c:520 - msgid "Scaled" - msgstr "크기조절함" - --#: ../src/xfce_wallpaper_manager.c:522 -+#: ../src/xfce_wallpaper_manager.c:523 - msgid "Zoomed" - msgstr "확대" - -diff -Nuar a/po/nl.po b/po/nl.po ---- a/po/nl.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/nl.po 2013-10-12 23:17:22.142987344 +0300 -@@ -1,21 +1,21 @@ --# Dutch translation of the ristretto package. --# Copyright (C) The Xfce development team. --# This file is distributed under the same license as the ristretto package. --# Stephan Arts , 2007. --# Pjotr, 2011. -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. - # -+# Translators: -+# Stephan Arts , 2007 - msgid "" - msgstr "" --"Project-Id-Version: ristretto\n" -+"Project-Id-Version: Xfce Apps\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-28 10:03+0000\n" --"PO-Revision-Date: 2011-09-08 00:48+0200\n" --"Last-Translator: Pjotr\n" --"Language-Team: Dutch (Flemish)\n" -+"POT-Creation-Date: 2013-07-03 20:30+0200\n" -+"PO-Revision-Date: 2013-07-04 08:37+0000\n" -+"Last-Translator: Pjotr123 \n" -+"Language-Team: Dutch (http://www.transifex.com/projects/p/xfce/language/nl/)\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Language: nl (Dutch)\n" -+"Language: nl\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - - #: ../src/main.c:62 -@@ -41,530 +41,514 @@ - "\n" - "Try %s --help to see a full list of\n" - "available command line options.\n" --msgstr "" --"%s: %s\n" --"Probeer %s --help voor een lijst van beschikbare opdrachtregelopties.\n" -+msgstr "%s: %s\nProbeer %s --help voor een lijst van beschikbare opdrachtregelopties.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3 - msgid "Image Viewer" - msgstr "Afbeeldingkijker" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Bestand" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Openen..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" --msgstr "Afbeelding openen" -+msgstr "Open een afbeelding" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "Kopie op_slaan..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Sla een kopie van de afbeelding op" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_Eigenschappen..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Toon bestandeigenschappen" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "Be_werken" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" --msgstr "Deze afbeelding bewerken" -+msgstr "Bewerk deze afbeelding" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Sluiten" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Sluit deze afbeelding" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Afsluiten" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" --msgstr "Ristretto sluiten" -+msgstr "Sluit Ristretto" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_Openen met" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Sorteren" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Verwijderen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Verwijder deze afbeelding van de schijf" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "Verwijder _privégegevens..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "_Voorkeuren" -+msgstr "_Voorkeuren..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "Beel_d" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Volledig scherm" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" --msgstr "Overschakelen naar schermvullend" -+msgstr "Schakel over naar schermvullend" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" --msgstr "_Volledig scherm sluiten" -+msgstr "Ver_laat schermvullend" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" --msgstr "Schermvullend verlaten" -+msgstr "Verlaat schermvullend" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "Instellen als bureaubladachtergrond..." -+msgstr "Stel in als bureaubladachtergrond..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Zoomen" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "_Inzoomen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Inzoomen" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "_Uitzoomen" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Uitzoomen" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Passend maken" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "Venstervullend zoomen" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Normale grootte" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "Zoomen naar 100 %" -+msgstr "Zoom naar 100 %" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Draaiing" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "_Rechtsom draaien" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "_Linksom draaien" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" --msgstr "_Ga" -+msgstr "_Ga naar" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Volgende" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Volgende afbeelding" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Vorige" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Vorige afbeelding" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "Ee_rste" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Eerste afbeelding" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Laatste" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Laatste afbeelding" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Hulp" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Inhoud" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" --msgstr "Laat Ristretto-handleiding zien" -+msgstr "Toon Ristretto-handleiding" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Over" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" --msgstr "Laat informatie over Ristretto zien" -+msgstr "Toon informatie over Ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Positie" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "Grootte" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "Positie van miniaturenbalk" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "Grootte van miniatuur" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" --msgstr "Verlaat _schermvullende modus" -+msgstr "Verlaat _schermvullend" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" --msgstr "Werkbalk tonen" -+msgstr "Toon werkbalk" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" --msgstr "Miniaturenbalk tonen" -+msgstr "Toon miniaturenbalk" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" --msgstr "Statusbalk tonen" -+msgstr "Toon statusbalk" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" --msgstr "sorteren op bestandnaam" -+msgstr "sorteer op bestandnaam" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" --msgstr "sorteren op datum" -+msgstr "sorteer op datum" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Links" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Rechts" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Bovenkant" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Onderkant" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Zeer klein" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Kleiner" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Klein" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Normaal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Groot" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Groter" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Zeer groot" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "Afs_pelen" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Speel een diapresentatie af" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Pauzeer" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Pauzeer diapresentatie" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Recent geopend" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Recent gebruikt" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Druk op openen om een afbeelding te selecteren" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "Openen met andere _toepassing..." -+msgstr "Open met andere _toepassing..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Leeg" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Aan het laden..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Kies de methode voor het instellen van een bureaubladachtergrond" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:398 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." --msgstr "" --"Configureer welk systeem thans uw werkomgeving beheert.\n" --"Deze instelling bepaalt de methode die Ristretto zal gebruiken\n" --"om de bureaubladachtergrond in te stellen." -+msgstr "Configureer welk systeem thans uw werkomgeving beheert.\nDeze instelling bepaalt de methode die Ristretto zal gebruiken\nom de bureaubladachtergrond in te stellen." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:422 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Geen" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:426 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:430 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2597 - msgid "Developer:" - msgstr "Ontwikkelaar:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2606 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto is een afbeeldingkijker voor de Xfce-werkomgeving." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2614 - msgid "translator-credits" --msgstr "" --"Timo Verbeek \n" --"Stephan Arts\n" --"Pjotr" -+msgstr "Timo Verbeek \nStephan Arts\nPjotr pjotrvertaalt@gmail.com" - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2916 - msgid "Open image" --msgstr "Afbeelding openen" -+msgstr "Open afbeelding" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2935 - msgid "Images" - msgstr "Afbeeldingen" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2940 - msgid ".jp(e)g" - msgstr ". jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 - msgid "Could not open file" - msgstr "Kon bestand niet openen" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3142 - msgid "Save copy" - msgstr "Bewaar kopie" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3168 - msgid "Could not save file" - msgstr "Kon bestand niet opslaan" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3336 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Weet u zeker dat u afbeelding '%s' van de schijf wil verwijderen?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3354 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "" --"Er is een fout opgetreden bij het verwijderen van afbeelding '%s' van de " --"schijf.\n" --"\n" --"%s" -+msgstr "Er is een fout opgetreden bij het verwijderen van afbeelding '%s' van de schijf.\n\n%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3370 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Weet u zeker dat u afbeelding '%s' in de prullenbak wil gooien?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3388 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" --msgstr "" --"Er is een fout opgetreden bij het verplaatsen van afbeelding '%' naar de " --"prullenbak.\n" --"\n" --"%s" -+msgstr "Er is een fout opgetreden bij het verplaatsen van afbeelding '%s' naar de prullenbak.\n\n%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3718 - msgid "Edit with" - msgstr "Bewerken met" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3736 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Open %s en andere bestanden van type %s met:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3741 - msgid "Use as _default for this kind of file" - msgstr "Gebruik als standaard voor dit soort bestand" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3831 - msgid "Recommended Applications" --msgstr "Aangeraden toepassingen" -+msgstr "Aanbevolen toepassingen" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3911 - msgid "Other Applications" - msgstr "Andere toepassingen" - -@@ -598,11 +582,11 @@ - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "Actieve elementenindex" -+msgstr "Index van actieve elementen" - - #: ../src/icon_bar.c:409 ../src/icon_bar.c:410 - msgid "Show Text" --msgstr "Tekst tonen" -+msgstr "Toon tekst" - - #: ../src/icon_bar.c:416 ../src/icon_bar.c:417 - msgid "Active item fill color" -@@ -660,117 +644,110 @@ - msgid "Clear private data" - msgstr "Verwijder privégegevens" - --#: ../src/preferences_dialog.c:219 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Weergave" - --#: ../src/preferences_dialog.c:224 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Achtergrondkleur" - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Achtergrondkleur wijzigen:" - --#: ../src/preferences_dialog.c:255 -+#: ../src/preferences_dialog.c:314 - msgid "Quality" - msgstr "Kwaliteit" - --#: ../src/preferences_dialog.c:259 -+#: ../src/preferences_dialog.c:318 - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "Met deze optie ingeschakeld wordt de maximale afbeeldingkwaliteit beperkt tot de schermomvang." -+msgstr "Met deze optie ingeschakeld wordt de maximale afbeeldingkwaliteit beperkt tot de schermgrootte." - --#: ../src/preferences_dialog.c:262 -+#: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" - msgstr "Weergavekwaliteit beperken" - --#: ../src/preferences_dialog.c:274 -+#: ../src/preferences_dialog.c:333 - msgid "Fullscreen" - msgstr "Schermvullend" - --#: ../src/preferences_dialog.c:279 -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Miniaturen" - --#: ../src/preferences_dialog.c:282 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"De miniaturenbalk kan automatisch worden verborgen \n" --"wanneer de afbeeldingkijker in schermvullende modus is." -+msgstr "De miniaturenbalk kan automatisch worden verborgen wanneer het venster schermvullend is." - --#: ../src/preferences_dialog.c:285 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" --msgstr "Miniaturenbalk verbergen bij schermvullende modus" -+msgstr "Verberg miniaturenbalk bij schermvullend" - --#: ../src/preferences_dialog.c:293 -+#: ../src/preferences_dialog.c:352 - msgid "Clock" - msgstr "Klok" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:355 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" --msgstr "" --"De miniaturenbalk kan automatisch worden verborgen \n" --"wanneer de afbeeldingkijker in schermvullende modus is." -+msgstr "De miniaturenbalk kan automatisch worden verborgen wanneer het venster schermvullend is." - --#: ../src/preferences_dialog.c:299 -+#: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" --msgstr "Schermvullende klok tonen" -+msgstr "Toon schermvullende klok" - --#: ../src/preferences_dialog.c:315 -+#: ../src/preferences_dialog.c:375 - msgid "Slideshow" - msgstr "Diavertoning" - --#: ../src/preferences_dialog.c:319 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "Pauze" - --#: ../src/preferences_dialog.c:322 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" --msgstr "" --"De periode dat een enkele afbeelding wordt weergegeven gedurende een\n" --"diaweergave (in seconden)" -+msgstr "De periode dat een enkele afbeelding wordt weergegeven gedurende een\ndiaweergave (in seconden)" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Bediening" - --#: ../src/preferences_dialog.c:342 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Bladerwieltje" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Zoomrichting omdraaien" - --#: ../src/preferences_dialog.c:355 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Gedrag" - --#: ../src/preferences_dialog.c:360 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Opstarten" - --#: ../src/preferences_dialog.c:362 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" --msgstr "" --"Venstergrootte maximaliseren bij opstarten, bij het openen van een afbeelding" -+msgstr "Maximaliseer venstergrootte bij opstarten, bij het openen van een afbeelding" - --#: ../src/preferences_dialog.c:368 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Om afbeeldingen heen vouwen" - --#: ../src/preferences_dialog.c:387 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Werkomgeving" - --#: ../src/preferences_dialog.c:509 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Voorkeuren van Afbeeldingkijker" - -@@ -826,13 +803,7 @@ - "\n" - "Install Tumbler or another thumbnailing daemon\n" - "to resolve this issue." --msgstr "" --"De miniatuurmakerdienst kan niet worden bereikt.\n" --"Om deze reden \n" --"kunnen de miniaturen niet worden gemaakt.\n" --"\n" --"Installeer Tumbler of een andere miniatuurmaker-achtergronddienst\n" --"om dit probleem op te lossen." -+msgstr "De miniatuurmakerdienst kan niet worden bereikt.\nOm deze reden \nkunnen de miniaturen niet worden gemaakt.\n\nInstalleer Tumbler of een andere miniatuurmaker-achtergronddienst\nom dit probleem op te lossen." - - #: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" -@@ -864,7 +835,7 @@ - - #: ../src/xfce_wallpaper_manager.c:514 - msgid "Tiled" --msgstr "Naast elkaar" -+msgstr "Getegeld" - - #: ../src/xfce_wallpaper_manager.c:517 - msgid "Stretched" -@@ -878,182 +849,10 @@ - msgid "Zoomed" - msgstr "Ingezoomd" - --#: ../ristretto.desktop.in.h:2 --msgid "Look at your images easily" --msgstr "Kijk gemakkelijk naar uw afbeeldingen" -- --#: ../ristretto.desktop.in.h:3 -+#: ../ristretto.desktop.in.h:1 - msgid "Ristretto Image Viewer" - msgstr "Ristretto afbeeldingkijker" - --#~ msgid "Open With Other _Application" --#~ msgstr "Open met andere toepassing" -- --#~ msgid "Show _Navigation Toolbar" --#~ msgstr "Toon _navigatiewerkbalk" -- --#~ msgid "Toolbars" --#~ msgstr "Werkbalken" -- --#~ msgid "Merge toolbars" --#~ msgstr "Werkbalken samenvoegen" -- --#~ msgid "Spacing" --#~ msgstr "Spatiëring" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "De hoeveelheid ruimte tussen de miniaturen" -- --#~ msgid "border width" --#~ msgstr "randbreedte" -- --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "de randbreedte van de miniaturenbalk" -- --#~ msgid "Scaling" --#~ msgstr "Schalen" -- --#~ msgid "Don't scale over 100% when maximizing the window." --#~ msgstr "" --#~ "Afbeelding niet voorbij 100 % schalen wanneer het venster wordt " --#~ "gemaximaliseerd" -- --#~ msgid "Preferences" --#~ msgstr "Voorkeuren" -- --#~ msgid "Image viewer" --#~ msgstr "Afbeeldingkijker" -- --#~ msgid "Open _Folder" --#~ msgstr "_Map openen" -- --#~ msgid "Open a folder" --#~ msgstr "Map openen" -- --#~ msgid "_Close All" --#~ msgstr "_Alles sluiten" -- --#~ msgid "Close all images" --#~ msgstr "Alle afbeeldingen sluiten" -- --#~ msgid "Open folder" --#~ msgstr "Map openen" -- --#~ msgid "Open entire folder on startup" --#~ msgstr "Open de hele map bij opstarten" -- --#~ msgid "Monitor:" --#~ msgstr "Monitor:" -- --#~ msgid "One" --#~ msgstr "Een" -- --#~ msgid "Two" --#~ msgstr "Twee" -- --#~ msgid "Three" --#~ msgstr "Drie" -- --#~ msgid "Four" --#~ msgstr "Vier" -- --#~ msgid "Show preview when loading image" --#~ msgstr "Toon voorvertoning bij laden van afbeelding" -- --#~ msgid "No action" --#~ msgstr "Geen actie" -- --#~ msgid "Memory" --#~ msgstr "Geheugen" -- --#~ msgid "Image cache" --#~ msgstr "Afbeeldingen-opslag" -- --#~ msgid "Cache size" --#~ msgstr "Opslaggrootte:" -- --#~ msgid "MB" --#~ msgstr "MB" -- --#~ msgid "Enable cache" --#~ msgstr "Opslag aanzetten" -- --#~ msgid "Enable preloading" --#~ msgstr "Vooraf-laden inschakelen" -- --#~ msgid "filmstrip width" --#~ msgstr "breedte van filmstrook" -- --#~ msgid "the width of the thumbnail-bar film-strip" --#~ msgstr "De breedte van de filmstrook van de miniaturenbalk" -- --#~ msgid "_Print" --#~ msgstr "_Afdrukken" -- --#~ msgid "Best" --#~ msgstr "Beste" -- --#~ msgid "High" --#~ msgstr "Hoog" -- --#~ msgid "Medium" --#~ msgstr "Gemiddeld" -- --#~ msgid "Low" --#~ msgstr "Laag" -- --#~ msgid "Ristretto" --#~ msgstr "Ristretto" -- --#~ msgid "_Thumbnail Bar" --#~ msgstr "_Miniaturenbalk" -- --#~ msgid "Opening file(s)..." --#~ msgstr "Bestand(en) aan het openen..." -- --#~ msgid "No applications available" --#~ msgstr "Geen toepassingen beschikbaar" -- --#~ msgid "Show _Horizontally" --#~ msgstr "_Horizontaal tonen" -- --#~ msgid "Show _Vertically" --#~ msgstr "_Verticaal tonen" -- --#~ msgid "H_ide" --#~ msgstr "Ver_bergen" -- --#~ msgid "" --#~ "One or more images have been modified, do you want to save the changes?" --#~ msgstr "" --#~ "Een of meer afbeeldingen zijn gewijzigd, wilt u de wijzigingen opslaan?" -- --#~ msgid "_Preload images (GUI more responsive but more CPU-intensive)" --#~ msgstr "" --#~ "Af_beeldingen vooraf laden (kijker reageert sneller, maar vergt meer van " --#~ "de CPU)" -- --#~ msgid "Hide the thumbnails bar during slideshow" --#~ msgstr "Miniaturenbalk verbergen gedurende diavertoning" -- --#~ msgid "Xfce Image viewer" --#~ msgstr "Xfce afbeeldingkijker" -- --#~ msgid "Preload" --#~ msgstr "Vooraf laden" -- --#~ msgid "" --#~ "Preload images during slideshow\n" --#~ "(uses more memory)" --#~ msgstr "" --#~ "Afbeeldingen vooraf laden gedurende een diavertoning\n" --#~ "(gebruikt meer geheugen)" -- --#~ msgid "Flip _Vertically" --#~ msgstr "_Verticaal spiegelen" -- --#~ msgid "Flip _Horizontally" --#~ msgstr "_Horizontaal spiegelen" -- --#~ msgid "View Zoom toolbar" --#~ msgstr "Zoomwerkbalk tonen" -+#: ../ristretto.desktop.in.h:2 -+msgid "Look at your images easily" -+msgstr "Kijk gemakkelijk naar uw afbeeldingen" -diff -Nuar a/po/pl.po b/po/pl.po ---- a/po/pl.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/pl.po 2013-10-12 23:17:22.142987344 +0300 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Ristretto 0.5.1\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-28 04:18+0000\n" -+"POT-Creation-Date: 2012-11-01 12:36+0000\n" - "PO-Revision-Date: 2012-04-15 12:27+0200\n" - "Last-Translator: Piotr Sokół \n" - "Language-Team: polski <>\n" -@@ -17,8 +17,8 @@ - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bits\n" - "Language: pl\n" --"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2));\n" - "X-Generator: Lokalize 1.1\n" -+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2));\n" - - #: ../src/main.c:62 - msgid "Version information" -@@ -48,414 +48,414 @@ - "Proszę wprowadzić „%s --help”, aby wypisać pełną listę opcji wiersza " - "poleceń.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Przeglądarka obrazów" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Plik" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Otwórz..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Otwiera plik obrazu" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "_Zapisz kopię..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Zapisuje kopię obrazu" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." --msgstr "_Właściwości..." -+msgstr "_Właściwości..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Wyświetla właściwości pliku" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Edycja" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Otwiera plik obrazu do edycji" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "Za_mknij" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Zamyka bieżący plik" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "Za_kończ" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Kończy działanie programu" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_Otwórz za pomocą" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Sortowanie" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Usuń" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Trwale usuwa plik obrazu" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "_Wyczyść prywatne dane..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "P_referencje..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Widok" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Pełny ekran" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Włącza tryb pełnego ekranu" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Opuść pełny ekran" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Wyłącza tryb pełnego ekranu" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." - msgstr "_Ustaw jako tło pulpitu..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Skalowanie" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Po_większ" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Powiększa rozmiar obrazu" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Po_mniejsz" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Pomniejsza rozmiar obrazu" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Dopasuj" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "Dopasowuje rozmiar obrazu do wymiarów okna" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Zwykły rozmiar" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "Przywraca zwykły rozmiar obrazu" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Obracanie" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "W p_rawo" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "W _lewo" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "P_rzejdź" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Naprzód" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Przechodzi do następnego obrazu" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Wstecz" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Przechodzi do poprzedniego obrazu" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_Pierwszy" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Przechodzi do pierwszego obrazu" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Ostatni" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Przechodzi do ostatniego obrazu" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "Pomo_c" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Spis treści" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Otwiera podręcznik użytkownika programu" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_O programie" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Wyświetla informacje o programie" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Położenie" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Rozmiar" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "_Położenie paska miniatur" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "_Rozmiar miniatur" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Opuść p_ełny ekran" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "Pasek _narzędziowy" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Pasek _miniatur" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "Pasek _stanu" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "Według nazwy pliku" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "Według daty" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Lewo" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Prawo" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Góra" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Dół" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Bardzo mały" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Mniejszy" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Mały" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Zwykły" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Duży" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Większy" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Bardzo duży" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Rozpocznij pokaz" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Rozpoczyna pokaz obrazów" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Wstrzymaj pokaz" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Wstrzymuje pokaz obrazów" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "O_statnio otwarte" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Wyświetla ostatnio otwarte pliki" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Aby otworzyć obraz, należy użyć polecenia Otwórz." - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Otwórz za pomocą innego p_rogramu..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Pusty" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Wczytywanie..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Wybierz metodę 'ustaw tapetę'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:398 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -465,62 +465,62 @@ - "Ustawienie to wybiera metodę, którą Ristretto>\n" - "będzie używało do konfigurowania tapety pulpitu." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:422 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Żadne" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:426 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:430 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Twórca:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Przeglądarka obrazów dla środowiska Xfce" - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" - msgstr "" - "Łukasz Romanowicz \n" - "Piotr Sokół , 2010, 2011, 2012." - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Wybór pliku" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Wszystkie obrazy" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr "Obrazy w formacie JPEG" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Nie można otworzyć pliku" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Wybór pliku" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Nie można zapisać pliku" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Usunąć plik „%s”?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -531,12 +531,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Usunąć obrazek '%s'?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -547,24 +547,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "Wybór programu" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "Otwieranie pliku „%s” i innych plików typu „%s”, przy użyciu:" -+msgstr "Otwieranie pliku „%s” i innych plików typu „%s”, przy użyciu:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "_Domyślnie dla plików tego typu" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "Preferowane programy" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "Inne programy" - -@@ -574,59 +574,59 @@ - - #: ../src/icon_bar.c:346 - msgid "The orientation of the iconbar" --msgstr "" -+msgstr "Orientacja paska ikon" - - #: ../src/icon_bar.c:362 - msgid "File column" --msgstr "" -+msgstr "Kolumna plik" - - #: ../src/icon_bar.c:363 - msgid "Model column used to retrieve the file from" --msgstr "" -+msgstr "Tworzenie kolumny używanej do otrzymania pliku z" - - #: ../src/icon_bar.c:375 - msgid "Icon Bar Model" --msgstr "" -+msgstr "Model paska ikon" - - #: ../src/icon_bar.c:376 - msgid "Model for the icon bar" --msgstr "" -+msgstr "Model dla paska ikon" - - #: ../src/icon_bar.c:392 - msgid "Active" --msgstr "" -+msgstr "Czynny" - - #: ../src/icon_bar.c:393 - msgid "Active item index" --msgstr "" -+msgstr "Spis czynnych pozycji" - - #: ../src/icon_bar.c:409 ../src/icon_bar.c:410 - msgid "Show Text" --msgstr "" -+msgstr "Pokaż tekst" - - #: ../src/icon_bar.c:416 ../src/icon_bar.c:417 - msgid "Active item fill color" --msgstr "" -+msgstr "Wypełnienie kolorem czynnej pozycji" - - #: ../src/icon_bar.c:423 ../src/icon_bar.c:424 - msgid "Active item border color" --msgstr "" -+msgstr "Kolor obramowania czynnej pozycji" - - #: ../src/icon_bar.c:430 ../src/icon_bar.c:431 - msgid "Active item text color" --msgstr "" -+msgstr "Kolor tekstu czynnej pozycji" - - #: ../src/icon_bar.c:437 ../src/icon_bar.c:438 - msgid "Cursor item fill color" --msgstr "" -+msgstr "Kolor wypełnienia kursora" - - #: ../src/icon_bar.c:444 ../src/icon_bar.c:445 - msgid "Cursor item border color" --msgstr "" -+msgstr "Kolor obramowania kursora" - - #: ../src/icon_bar.c:451 ../src/icon_bar.c:452 - msgid "Cursor item text color" --msgstr "" -+msgstr "Kolor teksu kursora" - - #: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" -@@ -660,57 +660,58 @@ - msgid "Clear private data" - msgstr "Czyszczenie prywatnych danych" - --#: ../src/preferences_dialog.c:219 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Wygląd" - --#: ../src/preferences_dialog.c:224 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Kolor tła" - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Własny:" - --#: ../src/preferences_dialog.c:255 -+#: ../src/preferences_dialog.c:314 - msgid "Quality" - msgstr "Jakość" - --#: ../src/preferences_dialog.c:259 -+#: ../src/preferences_dialog.c:318 - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." - msgstr "" -+"Przy włączeniu tej opcji największa jakość obrazu będzie ograniczona do " -+"rozmiaru ekranu." - --#: ../src/preferences_dialog.c:262 -+#: ../src/preferences_dialog.c:321 - msgid "Limit rendering quality" --msgstr "" -+msgstr "Ograniczona jakość przetwarzania" - --#: ../src/preferences_dialog.c:274 -+#: ../src/preferences_dialog.c:333 - msgid "Fullscreen" - msgstr "Pełny ekran" - --#: ../src/preferences_dialog.c:279 -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Miniatury" - --#: ../src/preferences_dialog.c:282 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "Pasek miniatur może być automatycznie ukrywany\n" - "podczas działania w trybie pełnoekranowym." - --#: ../src/preferences_dialog.c:285 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Ukrywanie miniatur na pełnym ekranie" - --#: ../src/preferences_dialog.c:293 -+#: ../src/preferences_dialog.c:352 - msgid "Clock" - msgstr "Zegar" - --#: ../src/preferences_dialog.c:296 --#, fuzzy -+#: ../src/preferences_dialog.c:355 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -718,58 +719,57 @@ - "Pasek miniatur może być automatycznie ukrywany\n" - "podczas działania w trybie pełnoekranowym." - --#: ../src/preferences_dialog.c:299 --#, fuzzy -+#: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" --msgstr "Włącza tryb pełnego ekranu" -+msgstr "Pokaż pełnoekranowy zegar" - --#: ../src/preferences_dialog.c:315 -+#: ../src/preferences_dialog.c:375 - msgid "Slideshow" - msgstr "Pokaz slajdów" - --#: ../src/preferences_dialog.c:319 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "Czas" - --#: ../src/preferences_dialog.c:322 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" - msgstr "Wyświetlanie pojedynczego obrazu (s):" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Sterowanie" - --#: ../src/preferences_dialog.c:342 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Kółko myszy" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Odwrócenie kierunku powiększania obrazu" - --#: ../src/preferences_dialog.c:355 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Zachowanie" - --#: ../src/preferences_dialog.c:360 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Uruchamianie" - --#: ../src/preferences_dialog.c:362 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "Maksymalizowanie okna podczas uruchamiania programu" - --#: ../src/preferences_dialog.c:368 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Przechodzenie pomiędzy początkiem i końcem katalogu" - --#: ../src/preferences_dialog.c:387 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Środowisko graficzne" - --#: ../src/preferences_dialog.c:509 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Preferencje" - -@@ -874,7 +874,7 @@ - - #: ../src/xfce_wallpaper_manager.c:523 - msgid "Zoomed" --msgstr "Powiększenie" -+msgstr "Powiększenie" - - #: ../ristretto.desktop.in.h:2 - msgid "Look at your images easily" -diff -Nuar a/po/pt.po b/po/pt.po ---- a/po/pt.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/pt.po 2013-10-12 23:17:22.142987344 +0300 -@@ -455,7 +455,7 @@ - msgid "Choose 'set wallpaper' method" - msgstr "Escolha o método 'definir papel de parede'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:356 -+#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -465,15 +465,15 @@ - "Esta definição determina o método uzado pelo Ristretto para\n" - "configurar o papel de parede." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:380 -+#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Nenhum" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:384 -+#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:388 -+#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - -@@ -659,15 +659,15 @@ - msgid "Clear private data" - msgstr "Limpar dados privados" - --#: ../src/preferences_dialog.c:201 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Exibir" - --#: ../src/preferences_dialog.c:206 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Cor de fundo" - --#: ../src/preferences_dialog.c:210 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Substituir cor de fundo:" - -@@ -695,38 +695,22 @@ - msgid "Thumbnails" - msgstr "Miniaturas" - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "A barra de miniaturas pode ser automaticamente ocultada\n" - "se o visualizador estiver em ecrã completo." - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Ocultar barra de miniaturas se em ecrã completo" - --#: ../src/preferences_dialog.c:259 --msgid "Slideshow" --msgstr "Apresentação" -- --#: ../src/preferences_dialog.c:263 --msgid "Timeout" --msgstr "Tempo de espera" -- --#: ../src/preferences_dialog.c:266 --msgid "" --"The time period an individual image is displayed during a slideshow\n" --"(in seconds)" --msgstr "" --"A duração da exibição de uma imagem durante uma apresentação\n" --"(em segundos)" -- --#: ../src/preferences_dialog.c:275 -+#: ../src/preferences_dialog.c:352 - msgid "Clock" - msgstr "Relógio" - --#: ../src/preferences_dialog.c:278 -+#: ../src/preferences_dialog.c:355 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -734,43 +718,59 @@ - "A barra de miniaturas pode ser automaticamente ocultada\n" - "se o visualizador estiver em ecrã completo." - --#: ../src/preferences_dialog.c:281 -+#: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" - msgstr "Mostrar relógio em ecrã completo" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "Apresentação" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "Tempo de espera" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "" -+"A duração da exibição de uma imagem durante uma apresentação\n" -+"(em segundos)" -+ -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Controlo" - --#: ../src/preferences_dialog.c:300 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Roda de deslocamento" - --#: ../src/preferences_dialog.c:303 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Inverter orientação" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Comportamento" - --#: ../src/preferences_dialog.c:318 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Arranque" - --#: ../src/preferences_dialog.c:320 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "Maximizar janela ao abrir uma imagem" - --#: ../src/preferences_dialog.c:326 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Contorno das imagens" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Ambiente de trabalho" - --#: ../src/preferences_dialog.c:467 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Preferências do visualizador de imagens" - -diff -Nuar a/po/ru.po b/po/ru.po ---- a/po/ru.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ru.po 2013-10-12 23:17:22.143987344 +0300 -@@ -1,590 +1,802 @@ --# Russian translations for ristretto package. --# This file is distributed under the same license as the ristretto package. --# Stefan Zerkalica , 2008. --# Denis Koryavov , 2010. -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. - # -+# Translators: -+# Denis Koryavov , 2010 -+# Stefan Zerkalica , 2008 - msgid "" - msgstr "" --"Project-Id-Version: ristretto\n" -+"Project-Id-Version: Xfce Apps\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-03-14 08:51+0000\n" --"PO-Revision-Date: 2011-09-10 03:49+0700\n" --"Last-Translator: Urmas \n" --"Language-Team: Russian\n" -+"POT-Creation-Date: 2013-07-03 20:30+0200\n" -+"PO-Revision-Date: 2013-07-16 10:47+0000\n" -+"Last-Translator: Aleksandr P \n" -+"Language-Team: Russian (http://www.transifex.com/projects/p/xfce/language/ru/)\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Language: \n" --"X-Poedit-Language: Russian\n" -+"Language: ru\n" -+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - --#: ../src/main.c:61 -+#: ../src/main.c:62 - msgid "Version information" - msgstr "Информация о версии" - --#: ../src/main.c:65 -+#: ../src/main.c:66 - msgid "Start in fullscreen mode" - msgstr "Запустить в полноэкранном режиме" - --#: ../src/main.c:69 -+#: ../src/main.c:70 - msgid "Start a slideshow" - msgstr "Начать слайдшоу" - --#: ../src/main.c:77 -+#: ../src/main.c:78 - msgid "Show settings dialog" - msgstr "Показать диалог настроек" - --#: ../src/main.c:105 -+#: ../src/main.c:106 - #, c-format - msgid "" - "%s: %s\n" - "\n" - "Try %s --help to see a full list of\n" - "available command line options.\n" --msgstr "" --"%s: %s\n" --"Попробуйте %s --help для просмотра полного списка параметров командной " --"строки.\n" -+msgstr "%s: %s\nПопробуйте %s --help для просмотра полного списка параметров командной строки.\n" - --#: ../src/main_window.c:53 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3 - msgid "Image Viewer" - msgstr "Просмотр изображений" - --#. File Menu --#: ../src/main_window.c:334 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Файл" - --#: ../src/main_window.c:335 --msgid "_Open" --msgstr "_Открыть" -+#. Icon-name -+#: ../src/main_window.c:369 -+msgid "_Open..." -+msgstr "_Открыть..." - --#: ../src/main_window.c:335 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Открыть изображение" - --#: ../src/main_window.c:336 --msgid "_Save copy" --msgstr "_Сохранить как" -- --#: ../src/main_window.c:336 -+#. Icon-name -+#: ../src/main_window.c:375 -+msgid "_Save copy..." -+msgstr "_Сохранить копию..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Сохранить копию изображения" - --#: ../src/main_window.c:337 --msgid "_Properties" -+#. Icon-name -+#: ../src/main_window.c:381 -+msgid "_Properties..." - msgstr "С_войства" - --#: ../src/main_window.c:337 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Показать свойства файла" - --#: ../src/main_window.c:338 -+#. Icon-name -+#: ../src/main_window.c:387 ../src/main_window.c:406 -+msgid "_Edit" -+msgstr "_Правка" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:389 -+msgid "Edit this image" -+msgstr "Редактировать изображение" -+ -+#. Icon-name -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Закрыть" - --#: ../src/main_window.c:338 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Закрыть это изображение" - --#: ../src/main_window.c:339 -+#. Icon-name -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Выйти" - --#: ../src/main_window.c:339 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Выйти из программы" - --#. Edit Menu --#: ../src/main_window.c:341 --msgid "_Edit" --msgstr "_Правка" -- --#: ../src/main_window.c:342 --msgid "_Open with..." -+#: ../src/main_window.c:410 -+msgid "_Open with" - msgstr "_Открыть в" - --#: ../src/main_window.c:343 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Сортировать" - --#: ../src/main_window.c:344 -+#. Icon-name -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Удалить" - --#: ../src/main_window.c:344 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Удалить изображение с диска" - --#: ../src/main_window.c:345 --msgid "_Clear private data" --msgstr "О_чистить журнал" -- --#: ../src/main_window.c:346 --msgid "_Preferences" --msgstr "_Настройки" -+#. Icon-name -+#: ../src/main_window.c:424 -+msgid "_Clear private data..." -+msgstr "О_чистить журнал..." - --#. View Menu --#: ../src/main_window.c:348 -+#. Icon-name -+#: ../src/main_window.c:430 -+msgid "_Preferences..." -+msgstr "_Настройки..." -+ -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Просмотр" - --#: ../src/main_window.c:349 -+#. Icon-name -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Полноэкранный режим" - --#: ../src/main_window.c:350 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:443 -+msgid "Switch to fullscreen" -+msgstr "Во весь экран" -+ -+#. Icon-name -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Выйти из полноэкранного режима" - --#: ../src/main_window.c:351 --msgid "_Set as Wallpaper" --msgstr "_Сделать фоном рабочего стола" -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:449 -+msgid "Leave Fullscreen" -+msgstr "Выйти из полноэкранного режима" - --#. Zoom submenu --#: ../src/main_window.c:353 -+#. Icon-name -+#: ../src/main_window.c:453 -+msgid "Set as _Wallpaper..." -+msgstr "Сделать _фоном рабочего стола" -+ -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Масштаб" - --#: ../src/main_window.c:354 -+#. Icon-name -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "_Приблизить" - --#: ../src/main_window.c:355 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:466 -+msgid "Zoom in" -+msgstr "Приблизить" -+ -+#. Icon-name -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "Отдалить" - --#: ../src/main_window.c:356 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:472 -+msgid "Zoom out" -+msgstr "Отдалить" -+ -+#. Icon-name -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "Вписать в _окно" - --#: ../src/main_window.c:357 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:478 -+msgid "Zoom to fit window" -+msgstr "Уместить в окне" -+ -+#. Icon-name -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Нормальный размер" - --#. Rotation submenu --#: ../src/main_window.c:359 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:484 -+msgid "Zoom to 100%" -+msgstr "Исходный размер" -+ -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Повернуть" - --#: ../src/main_window.c:360 -+#. Icon-name -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Повернуть в_право" - --#: ../src/main_window.c:361 -+#. Icon-name -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Повернуть в_лево" - --#. Go Menu --#: ../src/main_window.c:363 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "П_ереход" - --#: ../src/main_window.c:364 -+#. Icon-name -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Вперед" - --#: ../src/main_window.c:365 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:512 -+msgid "Next image" -+msgstr "Следующее" -+ -+#. Icon-name -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Назад" - --#: ../src/main_window.c:366 --msgid "_First" --msgstr "_Первый" -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:518 -+msgid "Previous image" -+msgstr "Предыдущее" -+ -+#. Icon-name -+#: ../src/main_window.c:522 -+msgid "F_irst" -+msgstr "П_ервое" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:524 -+msgid "First image" -+msgstr "В начало" - --#: ../src/main_window.c:367 -+#. Icon-name -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Последний" - --#. Help Menu --#: ../src/main_window.c:369 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:530 -+msgid "Last image" -+msgstr "В конец" -+ -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "Помо_щь" - --#: ../src/main_window.c:371 -+#. Icon-name -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Комментарии" - --#: ../src/main_window.c:373 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Показать руководство пользователя" - --#: ../src/main_window.c:376 -+#. Icon-name -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_О программе" - --#: ../src/main_window.c:378 -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Показать информацию о программе" - --#. Position Menu --#: ../src/main_window.c:381 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Позиция" - --#: ../src/main_window.c:382 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "Раз_мер" - --#: ../src/main_window.c:383 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "По_ложение панели эскизов" - --#: ../src/main_window.c:384 --msgid "Thumbnail _Size" -+#: ../src/main_window.c:564 -+msgid "Thumb_nail Size" - msgstr "Раз_мер эскизов" - --#. Misc --#: ../src/main_window.c:386 -+#. Icon-name -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Выйти из полноэкранного режима" - --#. Toggle visibility of the main file toolbar --#: ../src/main_window.c:394 --msgid "Show _File Toolbar" --msgstr "Показать панель _файлов" -- --#. Toggle visibility of the main navigation toolbar --#: ../src/main_window.c:396 --msgid "Show _Navigation Toolbar" --msgstr "Показать панель _навигации" -+#. Icon-name -+#: ../src/main_window.c:585 -+msgid "_Show Toolbar" -+msgstr "Панель _инстрментов" - --#. Toggle visibility of the thumbnailbar --#: ../src/main_window.c:398 -+#. Icon-name -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Показать панель _эскизов" - --#. Toggle visibility of the statusbar --#: ../src/main_window.c:400 --msgid "Show _Status Bar" --msgstr "Показать строку состо_яния" -+#. Icon-name -+#: ../src/main_window.c:601 -+msgid "Show Status _Bar" -+msgstr "Строка состо_яния" - --#. Sort by Filename --#: ../src/main_window.c:407 -+#. Icon-name -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "сортировать по имени файла" - --#. Sort by Date --#: ../src/main_window.c:409 -+#. Icon-name -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "сортировать по дате" - --#: ../src/main_window.c:415 -+#. Icon-name -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Слева" - --#: ../src/main_window.c:416 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Справа" - --#: ../src/main_window.c:417 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Вверху" - --#: ../src/main_window.c:418 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Внизу" - --#: ../src/main_window.c:424 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Очень маленькие" - --#: ../src/main_window.c:425 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Маленькие" - --#: ../src/main_window.c:426 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Мелкие" - --#: ../src/main_window.c:427 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Обычные" - --#: ../src/main_window.c:428 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Крупные" - --#: ../src/main_window.c:429 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Большие" - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Очень большие" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:579 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "Н_ачать слайд-шоу" - --#: ../src/main_window.c:579 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Начать слайд-шоу" - --#: ../src/main_window.c:580 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "Пауза" - --#: ../src/main_window.c:580 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Остановить слайд-шоу" - - #. Create Recently used items Action --#: ../src/main_window.c:583 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Недавно просмотренные" - --#: ../src/main_window.c:583 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Недавно просмотренные" - --#: ../src/main_window.c:692 ../src/main_window.c:1207 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Нажмите открыть для выбора изображения" - --#: ../src/main_window.c:1094 ../src/main_window.c:1100 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 -+msgid "Open With Other _Application..." -+msgstr "Открыть с помощью..." -+ -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Пусто" - --#: ../src/main_window.c:2146 -+#: ../src/main_window.c:1505 -+msgid "Loading..." -+msgstr "Загрузка..." -+ -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Выберите способ установки обоев" - --#: ../src/main_window.c:2161 ../src/preferences_dialog.c:349 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." --msgstr "" --"Выберите ваше текущее рабочее окружение.\n" --"Эта настройка указывает способ, которым Ristretto будет устанавливать " --"ваши обои рабочего стола." -+msgstr "Выберите ваше текущее рабочее окружение.\nЭта настройка указывает способ, которым Ristretto будет устанавливать ваши обои рабочего стола." - --#: ../src/main_window.c:2186 ../src/preferences_dialog.c:373 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Нет" - --#: ../src/main_window.c:2190 ../src/preferences_dialog.c:377 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2194 ../src/preferences_dialog.c:381 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2650 -+#: ../src/main_window.c:2597 - msgid "Developer:" - msgstr "Разработчик:" - --#: ../src/main_window.c:2659 -+#: ../src/main_window.c:2606 - msgid "Ristretto is an image viewer for the Xfce desktop environment." --msgstr "" --"Ristretto - быстрый и легковесный просмотрщик изображений для рабочего " --"окружения Xfce" -+msgstr "Ristretto - быстрый и легковесный просмотрщик изображений для рабочего окружения Xfce" - --#: ../src/main_window.c:2667 -+#: ../src/main_window.c:2614 - msgid "translator-credits" - msgstr "Urmas , 2011" - --#: ../src/main_window.c:2957 -+#: ../src/main_window.c:2916 - msgid "Open image" - msgstr "Открыть изображение" - --#: ../src/main_window.c:2976 -+#: ../src/main_window.c:2935 - msgid "Images" - msgstr "Изображения" - --#: ../src/main_window.c:2981 -+#: ../src/main_window.c:2940 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:3008 ../src/main_window.c:3110 -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 - msgid "Could not open file" - msgstr "Невозможно открыть файл" - --#: ../src/main_window.c:3143 -+#: ../src/main_window.c:3142 - msgid "Save copy" - msgstr "Сохранить копию" - --#: ../src/main_window.c:3169 -+#: ../src/main_window.c:3168 - msgid "Could not save file" - msgstr "Не удалось сохранить файл" - --#: ../src/main_window.c:3300 -+#: ../src/main_window.c:3336 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Удалить изображение '%s' с диска?" - --#: ../src/main_window.c:3324 -+#: ../src/main_window.c:3354 -+#, c-format -+msgid "" -+"An error occurred when deleting image '%s' from disk.\n" -+"\n" -+"%s" -+msgstr "Ошибка при удалении изображения '%s' с диска.\n\n%s" -+ -+#: ../src/main_window.c:3370 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Вы уверены, что хотите отправить изображение '%s' в корзину?" - --#: ../src/privacy_dialog.c:151 -+#: ../src/main_window.c:3388 -+#, c-format -+msgid "" -+"An error occurred when sending image '%s' to trash.\n" -+"\n" -+"%s" -+msgstr "Ошибка при перемещении изображения '%s' в корзину.\n\n%s" -+ -+#: ../src/main_window.c:3718 -+msgid "Edit with" -+msgstr "Открыть с помощью" -+ -+#: ../src/main_window.c:3736 -+#, c-format -+msgid "Open %s and other files of type %s with:" -+msgstr "Открывать %s и другие файлы типа %s с помощью:" -+ -+#: ../src/main_window.c:3741 -+msgid "Use as _default for this kind of file" -+msgstr "Использовать по _умолчанию для файлов данного типа" -+ -+#: ../src/main_window.c:3831 -+msgid "Recommended Applications" -+msgstr "Рекомендованные приложения" -+ -+#: ../src/main_window.c:3911 -+msgid "Other Applications" -+msgstr "Другие приложения" -+ -+#: ../src/icon_bar.c:345 -+msgid "Orientation" -+msgstr "Ориентация" -+ -+#: ../src/icon_bar.c:346 -+msgid "The orientation of the iconbar" -+msgstr "Ориентация полосы иконок" -+ -+#: ../src/icon_bar.c:362 -+msgid "File column" -+msgstr "Столбец файла" -+ -+#: ../src/icon_bar.c:363 -+msgid "Model column used to retrieve the file from" -+msgstr "Столбец модели для извлечения файла" -+ -+#: ../src/icon_bar.c:375 -+msgid "Icon Bar Model" -+msgstr "Тип полосы иконок" -+ -+#: ../src/icon_bar.c:376 -+msgid "Model for the icon bar" -+msgstr "Модель для полосы иконок" -+ -+#: ../src/icon_bar.c:392 -+msgid "Active" -+msgstr "Активно" -+ -+#: ../src/icon_bar.c:393 -+msgid "Active item index" -+msgstr "Индекс активного элемента" -+ -+#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+msgid "Show Text" -+msgstr "Показать текст" -+ -+#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+msgid "Active item fill color" -+msgstr "Цвет заполнения активного элемента" -+ -+#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+msgid "Active item border color" -+msgstr "Цвет границ активного элемента" -+ -+#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+msgid "Active item text color" -+msgstr "Цвет текста активного элемента" -+ -+#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+msgid "Cursor item fill color" -+msgstr "Цвет заполнения курсора активного элемента" -+ -+#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+msgid "Cursor item border color" -+msgstr "Цвет границ курсора активного элемента" -+ -+#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+msgid "Cursor item text color" -+msgstr "Цвет курсора активного элемента" -+ -+#: ../src/privacy_dialog.c:152 - msgid "Time range to clear:" - msgstr "За:" - --#: ../src/privacy_dialog.c:155 -+#: ../src/privacy_dialog.c:156 - msgid "Cleanup" - msgstr "Очистка" - --#: ../src/privacy_dialog.c:157 -+#: ../src/privacy_dialog.c:158 - msgid "Last Hour" - msgstr "Последний час" - --#: ../src/privacy_dialog.c:158 -+#: ../src/privacy_dialog.c:159 - msgid "Last Two Hours" - msgstr "Последние два часа" - --#: ../src/privacy_dialog.c:159 -+#: ../src/privacy_dialog.c:160 - msgid "Last Four Hours" - msgstr "Последние четыре часа" - --#: ../src/privacy_dialog.c:160 -+#: ../src/privacy_dialog.c:161 - msgid "Today" - msgstr "Сегодня" - --#: ../src/privacy_dialog.c:161 -+#: ../src/privacy_dialog.c:162 - msgid "Everything" - msgstr "Всё время" - --#: ../src/privacy_dialog.c:459 -+#: ../src/privacy_dialog.c:460 - msgid "Clear private data" - msgstr "Очистка личных данных" - --#: ../src/preferences_dialog.c:196 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Отображение" - --#: ../src/preferences_dialog.c:202 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Цвет фона" - --#: ../src/preferences_dialog.c:204 --msgid "Toolbars" --msgstr "Панели инструментов" -- --#: ../src/preferences_dialog.c:209 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Переопределить цвет фона:" - --#: ../src/preferences_dialog.c:220 --msgid "Merge toolbars" --msgstr "Объединить панели инструментов" -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Качество" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "С этой опцией, максимальное качество изображения будет ограничено размером экрана." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Ограничить качество отоюражения" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Полноэкранный режим" - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Эскизы" - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:341 - msgid "" --"The thumbnail bar can be automatically hidden \n" --"when the window is fullscreen." --msgstr "" --"Панель эскизов будет спрятана\n" --"при переходе в полноэкранный режим" -+"The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "Панель эскизов будет спрятана при переходе в полноэкранный режим" - --#: ../src/preferences_dialog.c:230 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Спрятать панель эскизов в полноэкранном режиме" - --#: ../src/preferences_dialog.c:266 -+#: ../src/preferences_dialog.c:352 -+msgid "Clock" -+msgstr "Часы" -+ -+#: ../src/preferences_dialog.c:355 -+msgid "" -+"Show an analog clock that displays the current time when the window is " -+"fullscreen" -+msgstr "Показывать часы, отображающие текущее время, при просмотре в полноэкранном режиме" -+ -+#: ../src/preferences_dialog.c:358 -+msgid "Show Fullscreen Clock" -+msgstr "Часы во весь экран" -+ -+#: ../src/preferences_dialog.c:375 - msgid "Slideshow" - msgstr "Слайдшоу" - --#: ../src/preferences_dialog.c:270 -+#: ../src/preferences_dialog.c:379 - msgid "Timeout" - msgstr "Тайм-аут" - --#: ../src/preferences_dialog.c:273 -+#: ../src/preferences_dialog.c:382 - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" --msgstr "" --"Время, отображения изображений в режиме слайдшоу\n" --"(в секундах)" -+msgstr "Время, отображения изображений в режиме слайдшоу\n(в секундах)" - --#: ../src/preferences_dialog.c:289 -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Управление" - --#: ../src/preferences_dialog.c:293 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Колесико мыши" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Изменить направление масштабирования" - --#: ../src/preferences_dialog.c:306 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Поведение" - --#: ../src/preferences_dialog.c:311 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Запуск" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "При открытии изображения развертывать окно во весь экран" - --#: ../src/preferences_dialog.c:319 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Циклический просмотр изображений" - --#: ../src/preferences_dialog.c:338 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Рабочий стол" - --#: ../src/preferences_dialog.c:460 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Настройки программы" - --#: ../src/properties_dialog.c:180 -+#: ../src/properties_dialog.c:181 - msgid "Name:" - msgstr "Имя:" - --#: ../src/properties_dialog.c:181 -+#: ../src/properties_dialog.c:182 - msgid "Kind:" - msgstr "Тип:" - --#: ../src/properties_dialog.c:182 -+#: ../src/properties_dialog.c:183 - msgid "Modified:" - msgstr "Изменен:" - --#: ../src/properties_dialog.c:183 -+#: ../src/properties_dialog.c:184 - msgid "Accessed:" - msgstr "Доступ:" - --#: ../src/properties_dialog.c:184 -+#: ../src/properties_dialog.c:185 - msgid "Size:" - msgstr "Размер:" - --#: ../src/properties_dialog.c:308 -+#: ../src/properties_dialog.c:309 - msgid "General" - msgstr "Общие" - --#: ../src/properties_dialog.c:312 -+#: ../src/properties_dialog.c:313 - msgid "Image" - msgstr "Изображение" - --#: ../src/properties_dialog.c:525 -+#: ../src/properties_dialog.c:526 - #, c-format - msgid "Date taken:" - msgstr "Дата съемки:" - --#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549 --#: ../src/properties_dialog.c:561 -+#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 - #, c-format - msgid "%s" - msgstr "%s" - --#: ../src/properties_dialog.c:623 -+#: ../src/properties_dialog.c:624 - #, c-format - msgid "%s - Properties" - msgstr "Свойства: %s" - --#: ../src/thumbnailer.c:459 -+#: ../src/thumbnailer.c:460 - msgid "" - "The thumbnailer-service can not be reached,\n" - "for this reason, the thumbnails can not be\n" -@@ -592,212 +804,56 @@ - "\n" - "Install Tumbler or another thumbnailing daemon\n" - "to resolve this issue." --msgstr "" --"Не удалось установить соединение со службой создания эскизов.\n" --"Эскизы для изображений создаваться не будут.\n" --"\n" --"Установите Tumbler или иную службу эскизов (миниатюр),\n" --"чтобы это исправить." -+msgstr "Не удалось установить соединение со службой создания эскизов.\nЭскизы для изображений создаваться не будут.\n\nУстановите Tumbler или иную службу эскизов (миниатюр),\nчтобы это исправить." - --#: ../src/thumbnailer.c:469 -+#: ../src/thumbnailer.c:470 - msgid "Do _not show this message again" - msgstr "Больше _не показывать это сообщение" - --#: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234 -+#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 - msgid "Style:" - msgstr "Стиль:" - --#: ../src/xfce_wallpaper_manager.c:336 -+#: ../src/xfce_wallpaper_manager.c:337 - msgid "Brightness:" - msgstr "Яркость:" - --#: ../src/xfce_wallpaper_manager.c:337 -+#: ../src/xfce_wallpaper_manager.c:338 - msgid "Saturation:" - msgstr "Контраст:" - --#: ../src/xfce_wallpaper_manager.c:354 ../src/gnome_wallpaper_manager.c:245 -+#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 - msgid "Set as wallpaper" - msgstr "Установить как обои" - --#: ../src/xfce_wallpaper_manager.c:512 ../src/gnome_wallpaper_manager.c:312 -+#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 - msgid "Auto" - msgstr "Автоматически" - --#: ../src/xfce_wallpaper_manager.c:515 -+#: ../src/xfce_wallpaper_manager.c:511 - msgid "Centered" - msgstr "Центровать" - --#: ../src/xfce_wallpaper_manager.c:518 -+#: ../src/xfce_wallpaper_manager.c:514 - msgid "Tiled" - msgstr "Сжать" - --#: ../src/xfce_wallpaper_manager.c:521 -+#: ../src/xfce_wallpaper_manager.c:517 - msgid "Stretched" - msgstr "Замостить" - --#: ../src/xfce_wallpaper_manager.c:524 -+#: ../src/xfce_wallpaper_manager.c:520 - msgid "Scaled" - msgstr "Растянуть" - --#: ../src/xfce_wallpaper_manager.c:527 -+#: ../src/xfce_wallpaper_manager.c:523 - msgid "Zoomed" - msgstr "Приближенно" - --#: ../ristretto.desktop.in.h:2 --msgid "Look at your images easily" --msgstr "Просмотр фотографий — это просто" -- --#: ../ristretto.desktop.in.h:3 -+#: ../ristretto.desktop.in.h:1 - msgid "Ristretto Image Viewer" - msgstr "Просмотр изображений Ristretto" - --#~ msgid "Spacing" --#~ msgstr "Отступы" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "Размер пространства между эскизами" -- --#~ msgid "border width" --#~ msgstr "Ширина рамки" -- --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "ширина рамки панели эскизов" -- --#~ msgid "Scaling" --#~ msgstr "Масштаб" -- --#~ msgid "Don't scale over 100% when maximizing the window." --#~ msgstr "Не масштабировать более 100% когда окно развернуто" -- --#~ msgid "Preferences" --#~ msgstr "Настройки" -- --#~ msgid "Image viewer" --#~ msgstr "Просмотр изображений" -- --#~ msgid "Open _Folder" --#~ msgstr "Открыть _папку" -- --#~ msgid "Open a folder" --#~ msgstr "Открыть папку" -- --#~ msgid "_Close All" --#~ msgstr "_Закрыть все" -- --#~ msgid "Close all images" --#~ msgstr "Закрыть все изображения" -- --#~ msgid "Open folder" --#~ msgstr "Открыть папку" -- --#~ msgid "Open entire folder on startup" --#~ msgstr "Показать все изображения в каталоге" -- --#~ msgid "Monitor:" --#~ msgstr "Монитор:" -- --#~ msgid "One" --#~ msgstr "Первый" -- --#~ msgid "Two" --#~ msgstr "Второй" -- --#~ msgid "Three" --#~ msgstr "Третий" -- --#~ msgid "Four" --#~ msgstr "Четвёртый" -- --#~ msgid "Show preview when loading image" --#~ msgstr "Показывать превью при загрузке изображения" -- --#~ msgid "No action" --#~ msgstr "Нет действия" -- --#~ msgid "Zoom in and out" --#~ msgstr "Приблизить/отдалить" -- --#~ msgid "Switch images" --#~ msgstr "Переключить изображение" -- --#~ msgid "Memory" --#~ msgstr "Память" -- --#~ msgid "Image cache" --#~ msgstr "Кэш изображений" -- --#~ msgid "Cache size" --#~ msgstr "Размер кэша" -- --#~ msgid "MB" --#~ msgstr "МБ" -- --#~ msgid "Enable cache" --#~ msgstr "Включить кэш изображений" -- --#~ msgid "Enable preloading" --#~ msgstr "Предзагрузка изображений" -- --#~ msgid "filmstrip width" --#~ msgstr "Ширина окна предпросмотра" -- --#~ msgid "the width of the thumbnail-bar film-strip" --#~ msgstr "Ширина рамки панели эскизов" -- --#~ msgid "_Print" --#~ msgstr "_Печать" -- --#~ msgid "Print the image" --#~ msgstr "Напечатать изображение" -- --#~ msgid "Quality" --#~ msgstr "Качество" -- --#~ msgid "Maximum render quality:" --#~ msgstr "Максимальное качество:" -- --#~ msgid "Best" --#~ msgstr "Лучшее" -- --#~ msgid "High" --#~ msgstr "Высокое" -- --#~ msgid "Medium" --#~ msgstr "Среднее" -- --#~ msgid "Low" --#~ msgstr "Низкое" -- --#~ msgid "Preload images" --#~ msgstr "Предзагрузка изображений" -- --#~ msgid "_Thumbnail Bar" --#~ msgstr "Просмотр _эскизов" -- --#~ msgid "Opening file(s)..." --#~ msgstr "Открывается файл(ы)..." -- --#~ msgid "No applications available" --#~ msgstr "Нет доступных приложений" -- --#~ msgid "Show _Horizontally" --#~ msgstr "Показать _горизонтально" -- --#~ msgid "Show _Vertically" --#~ msgstr "Показать _вертикально" -- --#~ msgid "H_ide" --#~ msgstr "_Скрыть" -- --#~ msgid "Xfce Image viewer" --#~ msgstr "Xfce Просмотр изображений" -- --#~ msgid "Preload" --#~ msgstr "Предзагрузка" -- --#~ msgid "" --#~ "Preload images during slideshow\n" --#~ "(uses more memory)" --#~ msgstr "" --#~ "Предзагружать изображения во время слайдшоу\n" --#~ "(требует больше памяти)" -+#: ../ristretto.desktop.in.h:2 -+msgid "Look at your images easily" -+msgstr "Просмотр фотографий — это просто" -diff -Nuar a/po/sl.po b/po/sl.po ---- a/po/sl.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/sl.po 2013-10-12 23:17:22.143987344 +0300 -@@ -9,21 +9,20 @@ - "Project-Id-Version: ristretto 0.0.93-dev\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" - "POT-Creation-Date: 2012-02-20 19:45+0100\n" --"PO-Revision-Date: 2011-06-18 22:39+0200\n" --"Last-Translator: \n" -+"PO-Revision-Date: 2013-01-21 22:41+0100\n" -+"Last-Translator: Nenad \n" - "Language-Team: Slovenian\n" - "Language: sl\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" --"%100==4 ? 2 : 3);\n" -+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - "X-Language: sl_SI\n" - "X-Source-Language: C\n" - - #: ../src/main.c:61 - msgid "Version information" --msgstr "Informacije o verziji" -+msgstr "Informacije o različici" - - #: ../src/main.c:65 - msgid "Start in fullscreen mode" -@@ -31,11 +30,11 @@ - - #: ../src/main.c:69 - msgid "Start a slideshow" --msgstr "Začni diaprojekcijo" -+msgstr "Zaženi projekcijo" - - #: ../src/main.c:77 - msgid "Show settings dialog" --msgstr "" -+msgstr "Prikaži nastavitveni dialog" - - #: ../src/main.c:105 - #, fuzzy, c-format -@@ -48,7 +47,8 @@ - "%s: %s\n" - "Uporabi %s --help za celoten seznam razpoložljivih možnosti.\n" - --#: ../src/main_window.c:53 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:53 -+#: ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Pregledovalnik Slik" - -@@ -75,11 +75,11 @@ - - #: ../src/main_window.c:335 - msgid "_Properties" --msgstr "" -+msgstr "_Nastavitve" - - #: ../src/main_window.c:335 - msgid "Show file properties" --msgstr "" -+msgstr "Prikaži nastavitve datoteke" - - #: ../src/main_window.c:336 - msgid "_Close" -@@ -87,7 +87,7 @@ - - #: ../src/main_window.c:336 - msgid "Close this image" --msgstr "Zapre sliko" -+msgstr "Zapri sliko" - - #: ../src/main_window.c:337 - msgid "_Quit" -@@ -104,7 +104,7 @@ - - #: ../src/main_window.c:340 - msgid "_Open with..." --msgstr "_Za odprianje uporabi..." -+msgstr "_Za odpiranje uporabi..." - - #: ../src/main_window.c:341 - msgid "_Sorting" -@@ -117,11 +117,11 @@ - #: ../src/main_window.c:342 - #, fuzzy - msgid "Delete this image from disk" --msgstr "Zapre sliko" -+msgstr "Izbriši to sliko z diska" - - #: ../src/main_window.c:343 - msgid "_Clear private data" --msgstr "" -+msgstr "P_očisti zasebne podatke" - - #: ../src/main_window.c:344 - msgid "_Preferences" -@@ -160,7 +160,7 @@ - - #: ../src/main_window.c:354 - msgid "Zoom _Fit" --msgstr "_Prilagodi" -+msgstr "_Prilagoditev povečave" - - #: ../src/main_window.c:355 - msgid "_Normal Size" -@@ -229,17 +229,17 @@ - - #: ../src/main_window.c:380 - msgid "_Size" --msgstr "" -+msgstr "_Velikost" - - #: ../src/main_window.c:381 - #, fuzzy - msgid "Thumbnail Bar _Position" --msgstr "Sličice" -+msgstr "Položaj orodne vrstice sličic" - - #: ../src/main_window.c:382 - #, fuzzy - msgid "Thumbnail _Size" --msgstr "Sličice" -+msgstr "Velikost s_ličic" - - #. Misc - #: ../src/main_window.c:384 -@@ -300,11 +300,11 @@ - - #: ../src/main_window.c:423 - msgid "Smaller" --msgstr "" -+msgstr "Manjše" - - #: ../src/main_window.c:424 - msgid "Small" --msgstr "" -+msgstr "Majhno" - - #: ../src/main_window.c:425 - #, fuzzy -@@ -313,15 +313,15 @@ - - #: ../src/main_window.c:426 - msgid "Large" --msgstr "" -+msgstr "Veliko" - - #: ../src/main_window.c:427 - msgid "Larger" --msgstr "" -+msgstr "Večje" - - #: ../src/main_window.c:428 - msgid "Very Large" --msgstr "" -+msgstr "Zelo veliko" - - #. Create Play/Pause Slideshow actions - #: ../src/main_window.c:572 -@@ -349,36 +349,45 @@ - msgid "Recently used" - msgstr "Nedavno uporabljene" - --#: ../src/main_window.c:672 ../src/main_window.c:1170 -+#: ../src/main_window.c:672 -+#: ../src/main_window.c:1170 - msgid "Press open to select an image" - msgstr "Klikni odpri za izbiro slike" - --#: ../src/main_window.c:1074 ../src/main_window.c:1080 -+#: ../src/main_window.c:1074 -+#: ../src/main_window.c:1080 - msgid "Empty" - msgstr "Prazno" - - #: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" --msgstr "" -+msgstr "Izberi metodo nastavitve ozadja" - --#: ../src/main_window.c:2124 ../src/preferences_dialog.c:349 -+#: ../src/main_window.c:2124 -+#: ../src/preferences_dialog.c:349 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" - "to configure the desktop wallpaper." - msgstr "" -+"Nastavi sistem, ki trenutno upravlja z vašim namizjem. \n" -+"Ta nastavitev določi metodo, ki jo bo Ristretto uporabil\n" -+"za nastavitev ozadja namizja." - --#: ../src/main_window.c:2149 ../src/preferences_dialog.c:373 -+#: ../src/main_window.c:2149 -+#: ../src/preferences_dialog.c:373 - msgid "None" --msgstr "" -+msgstr "Noben" - --#: ../src/main_window.c:2153 ../src/preferences_dialog.c:377 -+#: ../src/main_window.c:2153 -+#: ../src/preferences_dialog.c:377 - msgid "Xfce" --msgstr "" -+msgstr "Xfce" - --#: ../src/main_window.c:2157 ../src/preferences_dialog.c:381 -+#: ../src/main_window.c:2157 -+#: ../src/preferences_dialog.c:381 - msgid "GNOME" --msgstr "" -+msgstr "GNOME" - - #: ../src/main_window.c:2613 - msgid "Developer:" -@@ -392,8 +401,8 @@ - #: ../src/main_window.c:2630 - msgid "translator-credits" - msgstr "" --"Prevedel:\n" --"Gašper " -+"zasluge prevajalcevPrevedel:\n" -+"Gašper & Nenad " - - #: ../src/main_window.c:2920 - msgid "Open image" -@@ -407,7 +416,8 @@ - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2971 ../src/main_window.c:3073 -+#: ../src/main_window.c:2971 -+#: ../src/main_window.c:3073 - msgid "Could not open file" - msgstr "Ne morem odpreti slike" - -@@ -418,7 +428,7 @@ - #: ../src/main_window.c:3132 - #, fuzzy - msgid "Could not save file" --msgstr "Ne morem odpreti slike" -+msgstr "Ne morem shraniti slike" - - #: ../src/main_window.c:3249 - #, c-format -@@ -427,35 +437,35 @@ - - #: ../src/privacy_dialog.c:151 - msgid "Time range to clear:" --msgstr "" -+msgstr "Časovno obdobje za izbris:" - - #: ../src/privacy_dialog.c:155 - msgid "Cleanup" --msgstr "" -+msgstr "Čiščenje" - - #: ../src/privacy_dialog.c:157 - msgid "Last Hour" --msgstr "" -+msgstr "Zadnja ura" - - #: ../src/privacy_dialog.c:158 - msgid "Last Two Hours" --msgstr "" -+msgstr "Zadnji dve uri" - - #: ../src/privacy_dialog.c:159 - msgid "Last Four Hours" --msgstr "" -+msgstr "Zadnje štiri ure" - - #: ../src/privacy_dialog.c:160 - msgid "Today" --msgstr "" -+msgstr "Danes" - - #: ../src/privacy_dialog.c:161 - msgid "Everything" --msgstr "" -+msgstr "Vse" - - #: ../src/privacy_dialog.c:459 - msgid "Clear private data" --msgstr "" -+msgstr "Počisti zasebne podatke" - - #: ../src/preferences_dialog.c:196 - msgid "Display" -@@ -467,7 +477,7 @@ - - #: ../src/preferences_dialog.c:204 - msgid "Toolbars" --msgstr "" -+msgstr "Orodne vrstice" - - #: ../src/preferences_dialog.c:209 - msgid "Override background color:" -@@ -475,7 +485,7 @@ - - #: ../src/preferences_dialog.c:220 - msgid "Merge toolbars" --msgstr "" -+msgstr "Združi orodne vrstice" - - #: ../src/preferences_dialog.c:225 - msgid "Thumbnails" -@@ -486,9 +496,7 @@ - msgid "" - "The thumbnail bar can be automatically hidden \n" - "when the window is fullscreen." --msgstr "" --"Vrstica s sličicami se lahko samodejno skirje, ko je pregledovalnik slik v " --"celozaslonskem načinu." -+msgstr "Vrstica s sličicami se lahko samodejno skirje, ko je pregledovalnik slik v celozaslonskem načinu." - - #: ../src/preferences_dialog.c:230 - #, fuzzy -@@ -507,9 +515,7 @@ - msgid "" - "The time period an individual image is displayed during a slideshow\n" - "(in seconds)" --msgstr "" --"Časovna perioda v kateri je prikazana posamezna slika med diaprojekcijo (v " --"skundah)" -+msgstr "Časovno obdobje v kateri je prikazana posamezna slika med projekcijo (v skundah)" - - #: ../src/preferences_dialog.c:289 - msgid "Control" -@@ -522,7 +528,7 @@ - - #: ../src/preferences_dialog.c:296 - msgid "Invert zoom direction" --msgstr "" -+msgstr "Obrni smer povečave" - - #: ../src/preferences_dialog.c:306 - msgid "Behaviour" -@@ -535,7 +541,7 @@ - #: ../src/preferences_dialog.c:313 - #, fuzzy - msgid "Maximize window on startup when opening an image" --msgstr "Ob zagonu razširi okno na velikost slike" -+msgstr "Ob zagonu razširi okno pri odpiranju slike" - - #: ../src/preferences_dialog.c:319 - msgid "Wrap around images" -@@ -543,7 +549,7 @@ - - #: ../src/preferences_dialog.c:338 - msgid "Desktop" --msgstr "" -+msgstr "Namizje" - - #: ../src/preferences_dialog.c:460 - #, fuzzy -@@ -552,64 +558,60 @@ - - #: ../src/properties_dialog.c:180 - msgid "Name:" --msgstr "" -+msgstr "Ime:" - - #: ../src/properties_dialog.c:181 - msgid "Kind:" --msgstr "" -+msgstr "Vrsta:" - - #: ../src/properties_dialog.c:182 - msgid "Modified:" --msgstr "" -+msgstr "Spremenjeno:" - - #: ../src/properties_dialog.c:183 - msgid "Accessed:" --msgstr "" -+msgstr "Naložena:" - - #: ../src/properties_dialog.c:184 - msgid "Size:" --msgstr "" -+msgstr "Velikost:" - - #: ../src/properties_dialog.c:308 - msgid "General" --msgstr "" -+msgstr "Splošno" - - #: ../src/properties_dialog.c:312 - #, fuzzy - msgid "Image" --msgstr "Slike" -+msgstr "Slika" - - #: ../src/properties_dialog.c:525 - #, c-format - msgid "Date taken:" --msgstr "" -+msgstr "Datum posnetka:" - --#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549 -+#: ../src/properties_dialog.c:537 -+#: ../src/properties_dialog.c:549 - #: ../src/properties_dialog.c:561 - #, c-format - msgid "%s" --msgstr "" -+msgstr "%s" - - #: ../src/properties_dialog.c:623 - #, c-format - msgid "%s - Properties" --msgstr "" -+msgstr "%s - Nastavitve" - - #: ../src/thumbnailer.c:430 --msgid "" --"The thumbnailer-service can not be reached,\n" --"for this reason, the thumbnails can not be\n" --"created.\n" --"\n" --"Install Tumbler or another thumbnailing daemon\n" --"to resolve this issue." --msgstr "" -+msgid "The thumbnailer-service can not be reached,\n" -+msgstr "Nastavitelj sličic je nedostopen,\n" - - #: ../src/thumbnailer.c:440 - msgid "Do _not show this message again" --msgstr "" -+msgstr "Ne prikaži več tega spo_ročila" - --#: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234 -+#: ../src/xfce_wallpaper_manager.c:335 -+#: ../src/gnome_wallpaper_manager.c:234 - msgid "Style:" - msgstr "Slog:" - -@@ -621,11 +623,13 @@ - msgid "Saturation:" - msgstr "Nasičenost:" - --#: ../src/xfce_wallpaper_manager.c:354 ../src/gnome_wallpaper_manager.c:245 -+#: ../src/xfce_wallpaper_manager.c:354 -+#: ../src/gnome_wallpaper_manager.c:245 - msgid "Set as wallpaper" - msgstr "Nastavi kot ozadje" - --#: ../src/xfce_wallpaper_manager.c:512 ../src/gnome_wallpaper_manager.c:312 -+#: ../src/xfce_wallpaper_manager.c:512 -+#: ../src/gnome_wallpaper_manager.c:312 - msgid "Auto" - msgstr "Samodejno" - -@@ -635,7 +639,7 @@ - - #: ../src/xfce_wallpaper_manager.c:518 - msgid "Tiled" --msgstr "" -+msgstr "Poploščano" - - #: ../src/xfce_wallpaper_manager.c:521 - msgid "Stretched" -@@ -643,7 +647,7 @@ - - #: ../src/xfce_wallpaper_manager.c:524 - msgid "Scaled" --msgstr "" -+msgstr "Pomanjšano" - - #: ../src/xfce_wallpaper_manager.c:527 - msgid "Zoomed" -@@ -657,88 +661,5 @@ - #: ../ristretto.desktop.in.h:3 - #, fuzzy - msgid "Ristretto Image Viewer" --msgstr "RIstretto Pregledovalnik Slik" -- --#~ msgid "Spacing" --#~ msgstr "Razmik" -- --#~ msgid "The amount of space between the thumbnails" --#~ msgstr "Razmik med sličicami" -- --#~ msgid "border width" --#~ msgstr "širina roba" -- --#, fuzzy --#~ msgid "the border width of the thumbnail bar" --#~ msgstr "širina roba vrstice s sličicami" -- --#~ msgid "Preferences" --#~ msgstr "Nastavitve" -- --#, fuzzy --#~ msgid "Image viewer" --#~ msgstr "Pregledovalnik Slik" -- --#~ msgid "Open _Folder" --#~ msgstr "Odpri _Mapo" -- --#~ msgid "Open a folder" --#~ msgstr "Odpre mapo" -- --#~ msgid "_Close All" --#~ msgstr "Zapri _Vse" -- --#~ msgid "Close all images" --#~ msgstr "Zapre vse slike" -- --#~ msgid "Open folder" --#~ msgstr "Odpri mapo" -- --#~ msgid "Open entire folder on startup" --#~ msgstr "Ob zagonu odpri celo mapo" -- --#~ msgid "Monitor:" --#~ msgstr "Zaslon:" -- --#, fuzzy --#~ msgid "Two" --#~ msgstr "Vrh" -- --#~ msgid "Show preview when loading image" --#~ msgstr "Pokaži predogled med nalaganjem slike" -- --#~ msgid "No action" --#~ msgstr "Ne naredi ničesar" -- --#~ msgid "Zoom in and out" --#~ msgstr "Povečaj in zmanjšaj" -- --#~ msgid "Switch images" --#~ msgstr "Zamenjaj slike" -- --#~ msgid "Memory" --#~ msgstr "Pomnilnik" -- --#~ msgid "Image cache" --#~ msgstr "Slikovni predpomnilnik" -- --#~ msgid "Cache size" --#~ msgstr "Velikost predpomnilnika" -- --#~ msgid "MB" --#~ msgstr "MB" -- --#~ msgid "Enable cache" --#~ msgstr "Omogoči predpomnilnik" -- --#~ msgid "Enable preloading" --#~ msgstr "Pomogoči prednalaganje" -- --#~ msgid "filmstrip width" --#~ msgstr "Širina filmskega traku" -- --#~ msgid "_Print" --#~ msgstr "_Natisni" -+msgstr "Ristretto Pregledovalnik Slik" - --#~ msgid "Print the image" --#~ msgstr "Natistni sliko" -diff -Nuar a/po/tr.po b/po/tr.po ---- a/po/tr.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/tr.po 2013-10-12 23:17:22.144987344 +0300 -@@ -11,7 +11,7 @@ - msgstr "" - "Project-Id-Version: tr\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-05-17 10:42+0000\n" -+"POT-Creation-Date: 2013-02-11 09:33+0000\n" - "PO-Revision-Date: 2012-02-19 20:08+0200\n" - "Last-Translator: Ayhan YALÇINSOY \n" - "Language-Team: Turkish \n" -@@ -50,435 +50,414 @@ - "Komut satırı parametrelerini görmek için %s\n" - " --help komutunu kullanınız.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Resim Gösterici" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Dosya" - - #. Icon-name --#: ../src/main_window.c:362 --#, fuzzy -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Aç" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Bir resim aç" - - #. Icon-name --#: ../src/main_window.c:368 --#, fuzzy -+#: ../src/main_window.c:375 - msgid "_Save copy..." --msgstr "Kopyayı _kaydet" -+msgstr "Kopya _kaydet" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Resmin bir kopyasını kaydet" - - #. Icon-name --#: ../src/main_window.c:374 --#, fuzzy -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_Özellikler" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Dosya özelliklerini göster" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "Dü_zenle" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 --#, fuzzy -+#: ../src/main_window.c:389 - msgid "Edit this image" --msgstr "Resmi yazdır" -+msgstr "Bu resmi düzenle" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Kapat" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Bu resmi kapat" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "_Çık" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Ristretto'dan Çık" - --#: ../src/main_window.c:403 --#, fuzzy -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "Birlikte _aç..." - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Sıralama" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Sil" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Bu resmi diskten sil" - - #. Icon-name --#: ../src/main_window.c:417 --#, fuzzy -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "Kişisel verileri _temizle" - - #. Icon-name --#: ../src/main_window.c:423 --#, fuzzy -+#: ../src/main_window.c:430 - msgid "_Preferences..." --msgstr "Tercihler" -+msgstr "_Yeğlenenler" - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Görünüm" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "_Tam ekran" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 --#, fuzzy -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" --msgstr "Tam ekran kipinde başlat" -+msgstr "Tam ekrana ayarla." - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "_Tam ekranı kapat" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 --#, fuzzy -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" --msgstr "_Tam ekranı kapat" -+msgstr "_Tam ekrandan ayrıl" - - #. Icon-name --#: ../src/main_window.c:446 --#, fuzzy -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." --msgstr "Duvar Kağıdı olarak _belirle" -+msgstr "Duvar Kağıdı olarak _ayarla" - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Yakınlaştır" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "_Yakınlaş" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 --#, fuzzy -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "_Yakınlaş" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "_Uzaklaş" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 --#, fuzzy -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "_Uzaklaş" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "_Pencereye Sığdır" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 --#, fuzzy -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" --msgstr "Yaklaştır ve Uzaklaştır" -+msgstr "Pencereye uydur." - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Normal Boyut" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" --msgstr "" -+msgstr "%100'e yaklaştır." - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "Döndü_r" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Sa_ğa Döndür" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "So_la Döndür" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "Gi_t" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_İleri" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 --#, fuzzy -+#: ../src/main_window.c:512 - msgid "Next image" --msgstr "Dosya aç" -+msgstr "Sonraki resim" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Geri" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 --#, fuzzy -+#: ../src/main_window.c:518 - msgid "Previous image" --msgstr "Resimleri önyükle" -+msgstr "Önceki resim" - - #. Icon-name --#: ../src/main_window.c:515 --#, fuzzy -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_İlk" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 --#, fuzzy -+#: ../src/main_window.c:524 - msgid "First image" --msgstr "Resimleri değiştir" -+msgstr "İlk resim" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Son" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 --#, fuzzy -+#: ../src/main_window.c:530 - msgid "Last image" --msgstr "Bu resmi kapat" -+msgstr "Son resim" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "_Yardım" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_İçindekiler" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Ristretto kullanıcı klavuzunu görüntüle" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Hakkında" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Ristretto hakkında bilgi görüntüle" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "_Konum" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Boyut" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "Küçük Resim Çubuğu _Konumu" - --#: ../src/main_window.c:557 --#, fuzzy -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "Küçük Resim _Boyutu" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Tam Ekranı _Kapat" - - #. Icon-name --#: ../src/main_window.c:578 --#, fuzzy -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" --msgstr "_Dosya Araç Çubuğunu Göster" -+msgstr "_Araç Çubuğunu Göster" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "_Küçük resim çubuğunu göster" - - #. Icon-name --#: ../src/main_window.c:594 --#, fuzzy -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "_Durum Çubuğunu Göster" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "dosya adına göre sırala" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "tarihe göre sırala" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Sol" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Sağ" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Üst" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Alt" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Çok küçük" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Daha küçük" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Küçük" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "_Normal" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Büyük" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Daha büyük" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Çok büyük" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Oynat" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Slayt gösterisini başlat" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Dur" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Slayt gösterisini durdur" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Son kullanılanlar" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "_Son kullanılanlar" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Bir resim seçmek için aça basın" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." --msgstr "" -+msgstr "Başka bir uygulama ile aç..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Boş" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Yükleniyor" - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "'Duvar kağıdı ayarla' yöntemini seçin" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -488,112 +467,117 @@ - "Bu ayar Ristrettonun masaüstü duvar kağıdınızı\n" - "yapılandırması için kullanılacağı yöntemini tanımlar." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Hiçbiri" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2597 - msgid "Developer:" - msgstr "Geliştirici:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2606 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto, Xfce masaüstü ortamı için bir resim göstericidir." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2614 - msgid "translator-credits" - msgstr "" - "Onur Küçük \n" - "Gökmen Görgen \n" - "Ayhan YALÇINSOY " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2916 - msgid "Open image" - msgstr "Dosya aç" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2935 - msgid "Images" - msgstr "Resimler" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2940 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2967 ../src/main_window.c:3109 - msgid "Could not open file" - msgstr "Dosya açılamadı" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3142 - msgid "Save copy" - msgstr "Kopyayı kaydet" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3168 - msgid "Could not save file" - msgstr "Dosya kaydedilemedi" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3336 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Diskinizden '%s' resmini silmek istediğinizden emin misiniz?" - --#: ../src/main_window.c:3310 --#, fuzzy, c-format -+#: ../src/main_window.c:3354 -+#, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" - "\n" - "%s" --msgstr "Diskinizden '%s' resmini silmek istediğinizden emin misiniz?" -+msgstr "" -+"'%s' resmini diskten silerken bir hata oluştu.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3370 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "'%s' resmini çöpe göndermek istediğinizden emin misiniz?" - --#: ../src/main_window.c:3344 --#, fuzzy, c-format -+#: ../src/main_window.c:3388 -+#, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" - "\n" - "%s" --msgstr "'%s' resmini çöpe göndermek istediğinizden emin misiniz?" -+msgstr "" -+"'%s' resmi çöp kutusuna gönerilirken bir hata oluştu.\n" -+"\n" -+"%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3718 - msgid "Edit with" --msgstr "" -+msgstr "Birlikte düzenle" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3736 - #, c-format - msgid "Open %s and other files of type %s with:" --msgstr "" -+msgstr "%s'i ve diğer %s biçimli dosyaları şununla aç:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3741 - msgid "Use as _default for this kind of file" --msgstr "" -+msgstr "Bu tip dosyalar için öntanımlı yap." - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3831 - msgid "Recommended Applications" - msgstr "Tavsiye Edilen Uygulamalar" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3911 - msgid "Other Applications" - msgstr "Diğer Uygulamalar" - - #: ../src/icon_bar.c:345 --#, fuzzy - msgid "Orientation" --msgstr "Döndü_r" -+msgstr "Konumlandırma" - - #: ../src/icon_bar.c:346 - msgid "The orientation of the iconbar" --msgstr "" -+msgstr "Simge çubuğunun konumlandırması" - - #: ../src/icon_bar.c:362 - msgid "File column" -@@ -699,17 +683,16 @@ - msgid "" - "With this option enabled, the maximum image-quality will be limited to the " - "screen-size." --msgstr "" -+msgstr "Bu seçeneğin açılması ile, en üst resim kalitesi ekran boyutu ile sınırlanacak." - - #: ../src/preferences_dialog.c:321 - #, fuzzy - msgid "Limit rendering quality" --msgstr "Maksimum tarama kalitesi:" -+msgstr "İşleme kalitesini sınırla" - - #: ../src/preferences_dialog.c:333 --#, fuzzy - msgid "Fullscreen" --msgstr "_Tam ekran" -+msgstr "Tam ekran" - - #: ../src/preferences_dialog.c:338 - msgid "Thumbnails" -diff -Nuar a/po/ug.po b/po/ug.po ---- a/po/ug.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/ug.po 2013-10-12 23:17:22.144987344 +0300 -@@ -1,879 +1,870 @@ --# Uyghur translation for ristretto. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# Gheyret Kenji , YEAR. --# --msgid "" --msgstr "" --"Project-Id-Version: ristretto\n" --"Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-07-20 04:48+0000\n" --"PO-Revision-Date: 2011-11-09 16:10+0900\n" --"Last-Translator: Gheyret Kenji \n" --"Language-Team: Uyghur Computer Science Association \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" -- --#: ../src/main.c:62 --msgid "Version information" --msgstr "نەشر ئۇچۇرى" -- --#: ../src/main.c:66 --msgid "Start in fullscreen mode" --msgstr "تولۇق ئېكران ھالىتىدە قوزغىتىش" -- --#: ../src/main.c:70 --msgid "Start a slideshow" --msgstr "تام تەسۋىرىنى قوزغىتىدۇ" -- --#: ../src/main.c:78 --msgid "Show settings dialog" --msgstr "تەڭشەك سۆزلەشكۈسىنى كۆرسەت" -- --#: ../src/main.c:106 --#, c-format --msgid "" --"%s: %s\n" --"\n" --"Try %s --help to see a full list of\n" --"available command line options.\n" --msgstr "" --"%s: %s\n" --"\n" --"بۇيرۇق قۇرىدا ئىشلەتكىلى بولىدىغان\n" --"بۇيرۇقلارنى %s --help ئارقىلىق كۆرۈڭ.\n" -- --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 --msgid "Image Viewer" --msgstr "سۈرەت كۆرگۈ" -- --#: ../src/main_window.c:358 --msgid "_File" --msgstr "ھۆججەت(_F)" -- --#. Icon-name --#: ../src/main_window.c:362 --msgid "_Open..." --msgstr "ئاچ(_O)…" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:364 --msgid "Open an image" --msgstr "سۈرەت ئاچىدۇ" -- --#. Icon-name --#: ../src/main_window.c:368 --msgid "_Save copy..." --msgstr "كۆچۈرمىسىنى ساقلا(_S)…" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:370 --msgid "Save a copy of the image" --msgstr "رەسىمنىڭ كۆچۈرمىسىنى ساقلايدۇ" -- --#. Icon-name --#: ../src/main_window.c:374 --msgid "_Properties..." --msgstr "خاسلىقى(_P)..." -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:376 --msgid "Show file properties" --msgstr "ھۆججەتنىڭ خاسلىقىنى كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 --msgid "_Edit" --msgstr "تەھرىر(_E)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:382 --msgid "Edit this image" --msgstr "بۇ سۈرەتنى تەھرىرلەيدۇ" -- --#. Icon-name --#: ../src/main_window.c:386 --msgid "_Close" --msgstr "تاقا(_C)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:388 --msgid "Close this image" --msgstr "سۈرەتنى تاقايدۇ" -- --#. Icon-name --#: ../src/main_window.c:392 --msgid "_Quit" --msgstr "ئاخىرلاشتۇر(_Q)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:394 --msgid "Quit Ristretto" --msgstr "رىسترېتتو(ristretto) نى ئاخىرلاشتۇرىدۇ" -- --#: ../src/main_window.c:403 --msgid "_Open with" --msgstr "بۇنىڭ بىلەن ئاچ(_O)" -- --#: ../src/main_window.c:407 --msgid "_Sorting" --msgstr "تەرتىپلە(_S)" -- --#. Icon-name --#: ../src/main_window.c:411 --msgid "_Delete" --msgstr "ئۆچۈر(_D)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:413 --msgid "Delete this image from disk" --msgstr "بۇ سۈرەتنى دىسكىدىن ئۆچۈرۈۋېتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:417 --msgid "_Clear private data..." --msgstr "شەخسىي سانلىق-مەلۇماتلارنى تازىلا(_C)..." -- --#. Icon-name --#: ../src/main_window.c:423 --msgid "_Preferences..." --msgstr "مايىللىقلار(_P)..." -- --#: ../src/main_window.c:430 --msgid "_View" --msgstr "كۆرۈنۈش(_V)" -- --#. Icon-name --#: ../src/main_window.c:434 --msgid "_Fullscreen" --msgstr "تولۇق ئېكران(_F)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:436 --msgid "Switch to fullscreen" --msgstr "تولۇق ئېكرانغا ئۆزگەرتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:440 --msgid "_Leave Fullscreen" --msgstr "تولۇق ئېكران ھالىتىدىن چىق(_L)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:442 --msgid "Leave Fullscreen" --msgstr "تولۇق ئېكراندىن چىقىدۇ" -- --#. Icon-name --#: ../src/main_window.c:446 --msgid "Set as _Wallpaper..." --msgstr "تام قەغىزى قىلىپ بەلگىلە(_W)…" -- --#: ../src/main_window.c:453 --msgid "_Zoom" --msgstr "چوڭايتىش-كىچىكلىتىش(_Z)" -- --#. Icon-name --#: ../src/main_window.c:457 --msgid "Zoom _In" --msgstr "چوڭايت(_I)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:459 --msgid "Zoom in" --msgstr "سۈرەتنى چوڭايتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:463 --msgid "Zoom _Out" --msgstr "كىچىكلەت(_O)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:465 --msgid "Zoom out" --msgstr "سۈرەتنى كىچىكلىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:469 --msgid "Zoom _Fit" --msgstr "دەل كەلتۈر(_F)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:471 --msgid "Zoom to fit window" --msgstr "سۈرەتنى ئېكرانغا دەل كەلتۈرۈپ كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:475 --msgid "_Normal Size" --msgstr "نورمال چوڭلۇق(_N)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:477 --msgid "Zoom to 100%" --msgstr "ئەسلىدىكى چوڭلۇق(100%)" -- --#: ../src/main_window.c:482 --msgid "_Rotation" --msgstr "چۆرگىلەت(_R)" -- --#. Icon-name --#: ../src/main_window.c:486 --msgid "Rotate _Right" --msgstr "ئوڭغا چۆرگىلەت(_R)" -- --#. Icon-name --#: ../src/main_window.c:492 --msgid "Rotate _Left" --msgstr "سولغا چۆرگىلەت(_L)" -- --#: ../src/main_window.c:499 --msgid "_Go" --msgstr "يۆتكەل(_G)" -- --#. Icon-name --#: ../src/main_window.c:503 --msgid "_Forward" --msgstr "ئالدىغا(_F)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:505 --msgid "Next image" --msgstr "كېيىنكى سۈرەتنى كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:509 --msgid "_Back" --msgstr "كەينىگە(_B)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:511 --msgid "Previous image" --msgstr "ئالدىنقى سۈرەتنى كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:515 --msgid "F_irst" --msgstr "تۇنجى(_F)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:517 --msgid "First image" --msgstr "ئەڭ باشتىكى سۈرەتنى كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:521 --msgid "_Last" --msgstr "ئەڭ ئاخىرقىسى(_L)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:523 --msgid "Last image" --msgstr "ئەڭ ئاخىرقى سۈرەتنى كۆرسىتىدۇ" -- --#: ../src/main_window.c:528 --msgid "_Help" --msgstr "ياردەم(_H)" -- --#. Icon-name --#: ../src/main_window.c:532 --msgid "_Contents" --msgstr "مەزمۇن(_C)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:534 --msgid "Display ristretto user manual" --msgstr "رىسترېتتو(ristretto) نىڭ قوللانمىسىنى كۆرسىتىدۇ" -- --#. Icon-name --#: ../src/main_window.c:538 --msgid "_About" --msgstr "ھەققىدە(_A)" -- --#. Label-text --#. Keyboard shortcut --#: ../src/main_window.c:540 --msgid "Display information about ristretto" --msgstr "رىسترېتتو(ristretto) ھەققىدىكى ئۇچۇرنى كۆرسىتىدۇ" -- --#: ../src/main_window.c:545 --msgid "_Position" --msgstr "ئورۇن(_P)" -- --#: ../src/main_window.c:549 --msgid "_Size" --msgstr "چوڭلۇقى" -- --#: ../src/main_window.c:553 --msgid "Thumbnail Bar _Position" --msgstr "كىچىك سۈرەت بالدىقىنىڭ ئورنى(_P)" -- --#: ../src/main_window.c:557 --msgid "Thumb_nail Size" --msgstr "كىچىك سۈرەت چوڭلۇقى(_N)" -- --#. Icon-name --#: ../src/main_window.c:562 --msgid "Leave _Fullscreen" --msgstr "تولۇق ئېكران ھالىتىدىن چىق(_F)" -- --#. Icon-name --#: ../src/main_window.c:578 --msgid "_Show Toolbar" --msgstr "قورال بالداقنى كۆرسەت(_S)" -- --#. Icon-name --#: ../src/main_window.c:586 --msgid "Show _Thumbnail Bar" --msgstr "كىچىك سۈرەت بالدىقىنى كۆرسەت(_T)" -- --#. Icon-name --#: ../src/main_window.c:594 --msgid "Show Status _Bar" --msgstr "ھالەت بالدىقىنى كۆرسەت(_B)" -- --#. Icon-name --#: ../src/main_window.c:607 --msgid "sort by filename" --msgstr "ئاتى بويىچە تەرتىپلە" -- --#. Icon-name --#: ../src/main_window.c:614 --msgid "sort by date" --msgstr "چېسلاسى بويىچە تەرتىپلە" -- --#. Icon-name --#: ../src/main_window.c:625 --msgid "Left" --msgstr "سول" -- --#: ../src/main_window.c:631 --msgid "Right" --msgstr "ئوڭ" -- --#: ../src/main_window.c:637 --msgid "Top" --msgstr "ئۈستى" -- --#: ../src/main_window.c:643 --msgid "Bottom" --msgstr "ئاستى" -- --#: ../src/main_window.c:654 --msgid "Very Small" --msgstr "ئىنتايىن كىچىك" -- --#: ../src/main_window.c:660 --msgid "Smaller" --msgstr "كىچىكرەك" -- --#: ../src/main_window.c:666 --msgid "Small" --msgstr "كىچىك" -- --#: ../src/main_window.c:672 --msgid "Normal" --msgstr "نورمال" -- --#: ../src/main_window.c:678 --msgid "Large" --msgstr "چوڭ" -- --#: ../src/main_window.c:684 --msgid "Larger" --msgstr "چوڭراق" -- --#: ../src/main_window.c:690 --msgid "Very Large" --msgstr "ئىنتايىن چوڭ" -- --#. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 --msgid "_Play" --msgstr "قوي(_P)" -- --#: ../src/main_window.c:841 --msgid "Play slideshow" --msgstr "تام تەسۋىرىنى قويىدۇ" -- --#: ../src/main_window.c:842 --msgid "_Pause" --msgstr "ۋاقىتلىق توختات(_P)" -- --#: ../src/main_window.c:842 --msgid "Pause slideshow" --msgstr "تام تەسۋىرىنى ۋاقىتلىق توختىتىدۇ" -- --#. Create Recently used items Action --#: ../src/main_window.c:845 --msgid "_Recently used" --msgstr "يېقىندا ئىشلىتىلگەنلىرى(_R)" -- --#: ../src/main_window.c:845 --msgid "Recently used" --msgstr "يېقىندا ئىشلىتىلگەنلىرى" -- --#: ../src/main_window.c:949 ../src/main_window.c:1460 --msgid "Press open to select an image" --msgstr "تاللانغان سۈرەتنى ئېچىش ئۈچۈن چېكىڭ" -- --#: ../src/main_window.c:1322 ../src/main_window.c:1326 --msgid "Open With Other _Application..." --msgstr "باش پروگراممىدا ئاچ(_A)..." -- --#: ../src/main_window.c:1347 ../src/main_window.c:1353 --msgid "Empty" --msgstr "قۇرۇق" -- --#: ../src/main_window.c:1470 --msgid "Loading..." --msgstr "ئوقۇۋاتىدۇ..." -- --#: ../src/main_window.c:2074 --msgid "Choose 'set wallpaper' method" --msgstr "‹تام قەغىزى قىلىپ بەلگىلەش› ئۇسۇلىنى تاللا" -- --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:464 --msgid "" --"Configure which system is currently managing your desktop.\n" --"This setting determines the method Ristretto will use\n" --"to configure the desktop wallpaper." --msgstr "" --"نۆۋەتتە ئۈستەلئۈستىنى باشقۇرۇۋاتقان سىستېمىنى سەپلەيدۇ.\n" --"بۇنىڭغا قاراپ Ristretto ئۈستەلئۈستى تام قەغىزىنى بەلگىلەش\n" --"ئۇسۇلىنى بەلگىلەيدۇ." -- --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:488 --msgid "None" --msgstr "يوق" -- --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:492 --msgid "Xfce" --msgstr "Xfce" -- --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:496 --msgid "GNOME" --msgstr "گىنوم(GNOME)" -- --#: ../src/main_window.c:2553 --msgid "Developer:" --msgstr "ئىجادىيەتچى:" -- --#: ../src/main_window.c:2562 --msgid "Ristretto is an image viewer for the Xfce desktop environment." --msgstr "رىسترېتتو(Ristretto) بولسا Xfce ئۈستەلئۈستى مۇھىتىدىكى سۈرەت كۆرگۈدۇر." -- --#: ../src/main_window.c:2570 --msgid "translator-credits" --msgstr "غەيرەت ت.كەنجى" -- --#: ../src/main_window.c:2872 --msgid "Open image" --msgstr "سۈرەت ئېچىش" -- --#: ../src/main_window.c:2891 --msgid "Images" --msgstr "سۈرەتلەر" -- --#: ../src/main_window.c:2896 --msgid ".jp(e)g" --msgstr ".jp(e)g" -- --#: ../src/main_window.c:2923 ../src/main_window.c:3065 --msgid "Could not open file" --msgstr "ھۆججەتنى ئاچقىلى بولمىدى" -- --#: ../src/main_window.c:3098 --msgid "Save copy" --msgstr "كۆچۈرمىسىنى ساقلا" -- --#: ../src/main_window.c:3124 --msgid "Could not save file" --msgstr "ھۆججەتنى ساقلىغىلى بولمىدى" -- --#: ../src/main_window.c:3292 --#, c-format --msgid "Are you sure you want to delete image '%s' from disk?" --msgstr "دىسكىدىكى ‹%s› دېگەن سۈرەتنى ئۆچۈرەمسىز؟" -- --#: ../src/main_window.c:3310 --#, c-format --msgid "" --"An error occurred when deleting image '%s' from disk.\n" --"\n" --"%s" --msgstr "" --"دىسكىدىن سۈرەت ‹%s› نى ئۆچۈرۈۋاتقاندا خاتالىق كۆرۈلدى\n" --"\n" --"%s" -- --#: ../src/main_window.c:3326 --#, c-format --msgid "Are you sure you want to send image '%s' to trash?" --msgstr "سۈرەت ‹%s› نى راستلا ئەخلەتخانىغا تاشلامسىز؟" -- --#: ../src/main_window.c:3344 --#, c-format --msgid "" --"An error occurred when sending image '%s' to trash.\n" --"\n" --"%s" --msgstr "" --"ئەخلەتخانىغا سۈرەت ‹%s› نى ئەۋەتىۋاتقاندا خاتالىق كۆرۈلدى.\n" --"\n" --"%s" -- --#: ../src/main_window.c:3674 --msgid "Edit with" --msgstr "باشقا پروگراممىدا تەھرىرلە" -- --#: ../src/main_window.c:3692 --#, c-format --msgid "Open %s and other files of type %s with:" --msgstr "%s ۋە تىپى %s بولغان ھۆججەتلەرنى كۆرسىتىلگەن پروگراممىدا ئاچ:" -- --#: ../src/main_window.c:3697 --msgid "Use as _default for this kind of file" --msgstr "مۇشۇ تىپتىكى ھۆججەتكە نىسبەتەن كۆڭۈلدىكى بولسۇن(_D)" -- --#: ../src/main_window.c:3787 --msgid "Recommended Applications" --msgstr "تەۋسىيىلىك پروگراممىلار" -- --#: ../src/main_window.c:3867 --msgid "Other Applications" --msgstr "باشقا پروگراممىلار" -- --#: ../src/icon_bar.c:345 --msgid "Orientation" --msgstr "يۆنىلىشى" -- --#: ../src/icon_bar.c:346 --msgid "The orientation of the iconbar" --msgstr "سىنبەلگە بالدىقىنىڭ يۆنىلىشى" -- --#: ../src/icon_bar.c:362 --msgid "File column" --msgstr "ھۆججەت ئىستونى" -- --#: ../src/icon_bar.c:363 --msgid "Model column used to retrieve the file from" --msgstr "ھۆججەت ئاتىنى ئىزدەشكە ئىشلىتىدىغان مودېل ئىستون" -- --#: ../src/icon_bar.c:375 --msgid "Icon Bar Model" --msgstr "سىنبەلگە بالدىقى مودېلى" -- --#: ../src/icon_bar.c:376 --msgid "Model for the icon bar" --msgstr "سىنبەلگە بالدىقىنىڭ مودېلى" -- --#: ../src/icon_bar.c:392 --msgid "Active" --msgstr "ئاكتىپ" -- --#: ../src/icon_bar.c:393 --msgid "Active item index" --msgstr "ئاكتىپ تۈرنىڭ ئىندېكسى" -- --#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 --msgid "Show Text" --msgstr "تېكىست كۆرسىتىش" -- --#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 --msgid "Active item fill color" --msgstr "ئاكتىپ تۈرنىڭ رەڭگى" -- --#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 --msgid "Active item border color" --msgstr "ئاكتىپ تۈرنىڭ گىرۋەك رەڭگى" -- --#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 --msgid "Active item text color" --msgstr "ئاكتىپ تۈرنىڭ تېكىستىنىڭ رېڭى" -- --#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 --msgid "Cursor item fill color" --msgstr "نۇربەلگىنىڭ رەڭگى" -- --#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 --msgid "Cursor item border color" --msgstr "نۇربەلگىنىڭ گىرۋىكىنىڭ رەڭگى" -- --#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 --msgid "Cursor item text color" --msgstr "نۇربەلگىنىڭ تېكىستىڭ رېڭى" -- --#: ../src/privacy_dialog.c:152 --msgid "Time range to clear:" --msgstr "تازىلايدىغان ۋاقىت دائىرىسى:" -- --#: ../src/privacy_dialog.c:156 --msgid "Cleanup" --msgstr "تازىلاش" -- --#: ../src/privacy_dialog.c:158 --msgid "Last Hour" --msgstr "ئەڭ ئاخىرقى 1 سائەت" -- --#: ../src/privacy_dialog.c:159 --msgid "Last Two Hours" --msgstr "ئەڭ ئاخىرقى 4 سائەت" -- --#: ../src/privacy_dialog.c:160 --msgid "Last Four Hours" --msgstr "ئەڭ ئاخىرقى 4 سائەت" -- --#: ../src/privacy_dialog.c:161 --msgid "Today" --msgstr "بۈگۈن" -- --#: ../src/privacy_dialog.c:162 --msgid "Everything" --msgstr "ھەممىسى" -- --#: ../src/privacy_dialog.c:460 --msgid "Clear private data" --msgstr "شەخسىي سانلىق-ئاساسلارنى تازىلا" -- --#: ../src/preferences_dialog.c:276 --msgid "Display" --msgstr "كۆرسىتىش" -- --#: ../src/preferences_dialog.c:283 --msgid "Background color" --msgstr "تەگلىك رەڭگى" -- --#: ../src/preferences_dialog.c:287 --msgid "Override background color:" --msgstr "قاپلايدىغان تەگلىك رەڭگى:" -- --#: ../src/preferences_dialog.c:314 --msgid "Quality" --msgstr "سۈپەت" -- --#: ../src/preferences_dialog.c:318 --msgid "" --"With this option enabled, the maximum image-quality will be limited to the " --"screen-size." --msgstr "بۇ تاللانما ئىناۋەتلىك قىلىنسا، سۈرەتنىڭ ئەڭ چوڭ سۈپىتى ئېكراننىڭ چوڭلۇقىنىڭ چەكلىمىسىگە ئۇچرايدۇ." -- --#: ../src/preferences_dialog.c:321 --msgid "Limit rendering quality" --msgstr "سىزىش سۈپىتىگە چەك قويسۇن" -- --#: ../src/preferences_dialog.c:333 --msgid "Fullscreen" --msgstr "تولۇق ئېكران" -- --#: ../src/preferences_dialog.c:338 --msgid "Thumbnails" --msgstr "كىچىك سۈرەت" -- --#: ../src/preferences_dialog.c:341 --msgid "" --"The thumbnail bar can be automatically hidden when the window is fullscreen." --msgstr "" --"سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەتلەر ئاپتوماتىك يوشۇرۇنىدۇ." -- --#: ../src/preferences_dialog.c:344 --msgid "Hide thumbnail bar when fullscreen" --msgstr "سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەت بالدىقىنى يوشۇرسۇن" -- --#: ../src/preferences_dialog.c:352 --msgid "Clock" --msgstr "سائەت" -- --#: ../src/preferences_dialog.c:355 --msgid "" --"Show an analog clock that displays the current time when the window is " --"fullscreen" --msgstr "" --"سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەتلەر ئاپتوماتىك يوشۇرۇنىدۇ" -- --#: ../src/preferences_dialog.c:358 --msgid "Show Fullscreen Clock" --msgstr "سائەتنى تولۇق ئېكراندا كۆرسىتىش" -- --#: ../src/preferences_dialog.c:375 --msgid "Slideshow" --msgstr "تام تەسۋىرى" -- --#: ../src/preferences_dialog.c:379 --msgid "Timeout" --msgstr "مۆھلىتى" -- --#: ../src/preferences_dialog.c:382 --msgid "" --"The time period an individual image is displayed during a slideshow\n" --"(in seconds)" --msgstr "" --"تام تەسۋىرى سۈپىتىدە كۆرسىتىلگەندە، سۈرەتنىڭ كۆرسىتىلىش ۋاقتى(مىللىي سېكۇنت)" -- --#: ../src/preferences_dialog.c:400 --msgid "Control" --msgstr "كونترول" -- --#: ../src/preferences_dialog.c:404 --msgid "Scroll wheel" --msgstr "سىيرىش غالتىكى" -- --#: ../src/preferences_dialog.c:407 --msgid "Invert zoom direction" --msgstr "چوڭايتىش يۆنىلىشىنى ئالماشتۇرۇش" -- --#: ../src/preferences_dialog.c:421 --msgid "Behaviour" --msgstr "قىلمىش" -- --#: ../src/preferences_dialog.c:426 --msgid "Startup" --msgstr "قوزغات" -- --#: ../src/preferences_dialog.c:428 --msgid "Maximize window on startup when opening an image" --msgstr "ھۆججەتنى ئېچىپ باشلانغاندا كۆزنەكنى ئەڭ چوڭ قىلسۇن" -- --#: ../src/preferences_dialog.c:434 --msgid "Wrap around images" --msgstr "" -- --#: ../src/preferences_dialog.c:453 --msgid "Desktop" --msgstr "ئۈستەلئۈستى" -- --#: ../src/preferences_dialog.c:572 --msgid "Image Viewer Preferences" --msgstr "سۈرەت كۆرگۈ مايىللىقى" -- --#: ../src/properties_dialog.c:181 --msgid "Name:" --msgstr "ئاتى:" -- --#: ../src/properties_dialog.c:182 --msgid "Kind:" --msgstr "تىپى:" -- --#: ../src/properties_dialog.c:183 --msgid "Modified:" --msgstr "ئۆزگەرتىلگەن:" -- --#: ../src/properties_dialog.c:184 --msgid "Accessed:" --msgstr "زىيارەت قىلىنغان:" -- --#: ../src/properties_dialog.c:185 --msgid "Size:" --msgstr "چوڭلۇقى:" -- --#: ../src/properties_dialog.c:309 --msgid "General" --msgstr "ئادەتتىكى" -- --#: ../src/properties_dialog.c:313 --msgid "Image" --msgstr "سۈرەت" -- --#: ../src/properties_dialog.c:526 --#, c-format --msgid "Date taken:" --msgstr "تارتىلغان ۋاقىت:" -- --#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 --#: ../src/properties_dialog.c:562 --#, c-format --msgid "%s" --msgstr "%s" -- --#: ../src/properties_dialog.c:624 --#, c-format --msgid "%s - Properties" --msgstr "%s - خاسلىقلىرى" -- --#: ../src/thumbnailer.c:460 --msgid "" --"The thumbnailer-service can not be reached,\n" --"for this reason, the thumbnails can not be\n" --"created.\n" --"\n" --"Install Tumbler or another thumbnailing daemon\n" --"to resolve this issue." --msgstr "" --"كىچىك سۈرەت مۇلازىمىتى بىلەن ئالاقە قىلالمىدى، \n" --"شۇڭا كىچىك سۈرەتلەر\n" --"ياسالمايدۇ\n" --"\n" --"بۇ مەسىلىنى ھەل قىلىش ئۈچۈن Tumbler ياكى thumbnailing daemon " --"نى \n" --"ئورنىتىڭ." -- --#: ../src/thumbnailer.c:470 --msgid "Do _not show this message again" --msgstr "بۇ ئۇچۇرنى ئەمدى كۆرسەتمە(_N)" -- --#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 --msgid "Style:" --msgstr "ئۇسلۇب:" -- --#: ../src/xfce_wallpaper_manager.c:337 --msgid "Brightness:" --msgstr "يورۇقلۇق:" -- --#: ../src/xfce_wallpaper_manager.c:338 --msgid "Saturation:" --msgstr "تويۇنۇش دەرىجىسى:" -- --#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 --msgid "Set as wallpaper" --msgstr "تام قەغىزى قىلىپ بەلگىلە" -- --#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 --msgid "Auto" --msgstr "ئاپتوماتىك" -- --#: ../src/xfce_wallpaper_manager.c:511 --msgid "Centered" --msgstr "ئوتتۇرىدا" -- --#: ../src/xfce_wallpaper_manager.c:514 --msgid "Tiled" --msgstr "كاھىشتەك" -- --#: ../src/xfce_wallpaper_manager.c:517 --msgid "Stretched" --msgstr "سوزۇلغان" -- --#: ../src/xfce_wallpaper_manager.c:520 --msgid "Scaled" --msgstr "سوزۇلغان-قىسىلغان" -- --#: ../src/xfce_wallpaper_manager.c:523 --msgid "Zoomed" --msgstr "چوڭايتىلغان ياكى كىچىكلىتىلگەن" -- --#: ../ristretto.desktop.in.h:2 --msgid "Look at your images easily" --msgstr "سۈرەتلەرنى ئوڭاي كۆرەلەيسىز" -- --#: ../ristretto.desktop.in.h:3 --msgid "Ristretto Image Viewer" --msgstr "رىسترېتتو(Ristretto) سۈرەت كۆرگۈ" -+# Uyghur translation for ristretto. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Gheyret Kenji , YEAR. -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: ristretto\n" -+"Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" -+"POT-Creation-Date: 2012-10-24 01:18+0000\n" -+"PO-Revision-Date: 2011-11-09 16:10+0900\n" -+"Last-Translator: Gheyret Kenji \n" -+"Language-Team: Uyghur Computer Science Association \n" -+"Language: \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+ -+#: ../src/main.c:62 -+msgid "Version information" -+msgstr "نەشر ئۇچۇرى" -+ -+#: ../src/main.c:66 -+msgid "Start in fullscreen mode" -+msgstr "تولۇق ئېكران ھالىتىدە باشلا" -+ -+#: ../src/main.c:70 -+msgid "Start a slideshow" -+msgstr "تام تەسۋىرىنى قوزغىتىدۇ" -+ -+#: ../src/main.c:78 -+msgid "Show settings dialog" -+msgstr "تەڭشەك سۆزلەشكۈسىنى كۆرسەت" -+ -+#: ../src/main.c:106 -+#, c-format -+msgid "" -+"%s: %s\n" -+"\n" -+"Try %s --help to see a full list of\n" -+"available command line options.\n" -+msgstr "%s: %s\n" -+"\n" -+"بۇيرۇق قۇرىدا ئىشلەتكىلى بولىدىغان\n" -+"بۇيرۇقلارنى %s --help ئارقىلىق كۆرۈڭ.\n" -+ -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 -+msgid "Image Viewer" -+msgstr "سۈرەت كۆرگۈ" -+ -+#: ../src/main_window.c:365 -+msgid "_File" -+msgstr "ھۆججەت(_F)" -+ -+#. Icon-name -+#: ../src/main_window.c:369 -+msgid "_Open..." -+msgstr "ئاچ(_O)…" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:371 -+msgid "Open an image" -+msgstr "سۈرەت ئاچىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:375 -+msgid "_Save copy..." -+msgstr "كۆچۈرمىسىنى ساقلا(_S)…" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:377 -+msgid "Save a copy of the image" -+msgstr "رەسىمنىڭ كۆچۈرمىسىنى ساقلايدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:381 -+msgid "_Properties..." -+msgstr "خاسلىقى(_P)..." -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:383 -+msgid "Show file properties" -+msgstr "ھۆججەتنىڭ خاسلىقىنى كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:387 ../src/main_window.c:406 -+msgid "_Edit" -+msgstr "تەھرىر(_E)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:389 -+msgid "Edit this image" -+msgstr "بۇ سۈرەتنى تەھرىرلەيدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:393 -+msgid "_Close" -+msgstr "تاقا(_C)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:395 -+msgid "Close this image" -+msgstr "سۈرەتنى تاقايدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:399 -+msgid "_Quit" -+msgstr "ئاخىرلاشتۇر(_Q)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:401 -+msgid "Quit Ristretto" -+msgstr "رىسترېتتو(ristretto) نى ئاخىرلاشتۇرىدۇ" -+ -+#: ../src/main_window.c:410 -+msgid "_Open with" -+msgstr "بۇنىڭ بىلەن ئاچ(_O)" -+ -+#: ../src/main_window.c:414 -+msgid "_Sorting" -+msgstr "تەرتىپلە(_S)" -+ -+#. Icon-name -+#: ../src/main_window.c:418 -+msgid "_Delete" -+msgstr "ئۆچۈر(_D)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:420 -+msgid "Delete this image from disk" -+msgstr "بۇ سۈرەتنى دىسكىدىن ئۆچۈرۈۋېتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:424 -+msgid "_Clear private data..." -+msgstr "شەخسىي سانلىق-مەلۇماتلارنى تازىلا(_C)..." -+ -+#. Icon-name -+#: ../src/main_window.c:430 -+msgid "_Preferences..." -+msgstr "تەڭشەكلەر(_P)..." -+ -+#: ../src/main_window.c:437 -+msgid "_View" -+msgstr "كۆرۈنۈش(_V)" -+ -+#. Icon-name -+#: ../src/main_window.c:441 -+msgid "_Fullscreen" -+msgstr "تولۇق ئېكران(_F)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:443 -+msgid "Switch to fullscreen" -+msgstr "تولۇق ئېكرانغا ئۆزگەرتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:447 -+msgid "_Leave Fullscreen" -+msgstr "تولۇق ئېكران ھالىتىدىن چىق(_L)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:449 -+msgid "Leave Fullscreen" -+msgstr "تولۇق ئېكراندىن چىقىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:453 -+msgid "Set as _Wallpaper..." -+msgstr "تام قەغىزى قىلىپ بەلگىلە(_W)…" -+ -+#: ../src/main_window.c:460 -+msgid "_Zoom" -+msgstr "چوڭايتىش-كىچىكلىتىش(_Z)" -+ -+#. Icon-name -+#: ../src/main_window.c:464 -+msgid "Zoom _In" -+msgstr "چوڭايت(_I)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:466 -+msgid "Zoom in" -+msgstr "سۈرەتنى چوڭايتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:470 -+msgid "Zoom _Out" -+msgstr "كىچىكلەت(_O)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:472 -+msgid "Zoom out" -+msgstr "سۈرەتنى كىچىكلىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:476 -+msgid "Zoom _Fit" -+msgstr "دەل كەلتۈر(_F)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:478 -+msgid "Zoom to fit window" -+msgstr "سۈرەتنى ئېكرانغا دەل كەلتۈرۈپ كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:482 -+msgid "_Normal Size" -+msgstr "نورمال چوڭلۇق(_N)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:484 -+msgid "Zoom to 100%" -+msgstr "ئەسلىدىكى چوڭلۇق(100%)" -+ -+#: ../src/main_window.c:489 -+msgid "_Rotation" -+msgstr "چۆرگىلەت(_R)" -+ -+#. Icon-name -+#: ../src/main_window.c:493 -+msgid "Rotate _Right" -+msgstr "ئوڭغا چۆرگىلەت(_R)" -+ -+#. Icon-name -+#: ../src/main_window.c:499 -+msgid "Rotate _Left" -+msgstr "سولغا چۆرگىلەت(_L)" -+ -+#: ../src/main_window.c:506 -+msgid "_Go" -+msgstr "يۆتكەل(_G)" -+ -+#. Icon-name -+#: ../src/main_window.c:510 -+msgid "_Forward" -+msgstr "ئالدىغا(_F)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:512 -+msgid "Next image" -+msgstr "كېيىنكى سۈرەتنى كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:516 -+msgid "_Back" -+msgstr "كەينىگە(_B)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:518 -+msgid "Previous image" -+msgstr "ئالدىنقى سۈرەتنى كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:522 -+msgid "F_irst" -+msgstr "تۇنجى(_F)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:524 -+msgid "First image" -+msgstr "ئەڭ باشتىكى سۈرەتنى كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:528 -+msgid "_Last" -+msgstr "ئەڭ ئاخىرقىسى(_L)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:530 -+msgid "Last image" -+msgstr "ئەڭ ئاخىرقى سۈرەتنى كۆرسىتىدۇ" -+ -+#: ../src/main_window.c:535 -+msgid "_Help" -+msgstr "ياردەم(_H)" -+ -+#. Icon-name -+#: ../src/main_window.c:539 -+msgid "_Contents" -+msgstr "مەزمۇن(_C)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:541 -+msgid "Display ristretto user manual" -+msgstr "رىسترېتتو(ristretto) نىڭ قوللانمىسىنى كۆرسىتىدۇ" -+ -+#. Icon-name -+#: ../src/main_window.c:545 -+msgid "_About" -+msgstr "ھەققىدە(_A)" -+ -+#. Label-text -+#. Keyboard shortcut -+#: ../src/main_window.c:547 -+msgid "Display information about ristretto" -+msgstr "رىسترېتتو(ristretto) ھەققىدىكى ئۇچۇرنى كۆرسىتىدۇ" -+ -+#: ../src/main_window.c:552 -+msgid "_Position" -+msgstr "ئورۇن(_P)" -+ -+#: ../src/main_window.c:556 -+msgid "_Size" -+msgstr "چوڭلۇقى" -+ -+#: ../src/main_window.c:560 -+msgid "Thumbnail Bar _Position" -+msgstr "كىچىك سۈرەت بالدىقىنىڭ ئورنى(_P)" -+ -+#: ../src/main_window.c:564 -+msgid "Thumb_nail Size" -+msgstr "كىچىك سۈرەت چوڭلۇقى(_N)" -+ -+#. Icon-name -+#: ../src/main_window.c:569 -+msgid "Leave _Fullscreen" -+msgstr "تولۇق ئېكران ھالىتىدىن چىق(_F)" -+ -+#. Icon-name -+#: ../src/main_window.c:585 -+msgid "_Show Toolbar" -+msgstr "قورال بالداقنى كۆرسەت(_S)" -+ -+#. Icon-name -+#: ../src/main_window.c:593 -+msgid "Show _Thumbnail Bar" -+msgstr "كىچىك سۈرەت بالدىقىنى كۆرسەت(_T)" -+ -+#. Icon-name -+#: ../src/main_window.c:601 -+msgid "Show Status _Bar" -+msgstr "ھالەت بالدىقىنى كۆرسەت(_B)" -+ -+#. Icon-name -+#: ../src/main_window.c:614 -+msgid "sort by filename" -+msgstr "ئاتى بويىچە تەرتىپلە" -+ -+#. Icon-name -+#: ../src/main_window.c:621 -+msgid "sort by date" -+msgstr "چېسلاسى بويىچە تەرتىپلە" -+ -+#. Icon-name -+#: ../src/main_window.c:632 -+msgid "Left" -+msgstr "سول" -+ -+#: ../src/main_window.c:638 -+msgid "Right" -+msgstr "ئوڭ" -+ -+#: ../src/main_window.c:644 -+msgid "Top" -+msgstr "ئۈستى" -+ -+#: ../src/main_window.c:650 -+msgid "Bottom" -+msgstr "ئاستى" -+ -+#: ../src/main_window.c:661 -+msgid "Very Small" -+msgstr "ئىنتايىن كىچىك" -+ -+#: ../src/main_window.c:667 -+msgid "Smaller" -+msgstr "كىچىكرەك" -+ -+#: ../src/main_window.c:673 -+msgid "Small" -+msgstr "كىچىك" -+ -+#: ../src/main_window.c:679 -+msgid "Normal" -+msgstr "نورمال" -+ -+#: ../src/main_window.c:685 -+msgid "Large" -+msgstr "چوڭ" -+ -+#: ../src/main_window.c:691 -+msgid "Larger" -+msgstr "چوڭراق" -+ -+#: ../src/main_window.c:697 -+msgid "Very Large" -+msgstr "ئىنتايىن چوڭ" -+ -+#. Create Play/Pause Slideshow actions -+#: ../src/main_window.c:849 -+msgid "_Play" -+msgstr "قوي(_P)" -+ -+#: ../src/main_window.c:849 -+msgid "Play slideshow" -+msgstr "تام تەسۋىرىنى قويىدۇ" -+ -+#: ../src/main_window.c:850 -+msgid "_Pause" -+msgstr "ۋاقىتلىق توختات(_P)" -+ -+#: ../src/main_window.c:850 -+msgid "Pause slideshow" -+msgstr "تام تەسۋىرىنى ۋاقىتلىق توختىتىدۇ" -+ -+#. Create Recently used items Action -+#: ../src/main_window.c:853 -+msgid "_Recently used" -+msgstr "يېقىندا ئىشلىتىلگەنلىرى(_R)" -+ -+#: ../src/main_window.c:853 -+msgid "Recently used" -+msgstr "يېقىندا ئىشلىتىلگەنلىرى" -+ -+#: ../src/main_window.c:957 ../src/main_window.c:1495 -+msgid "Press open to select an image" -+msgstr "تاللانغان سۈرەتنى ئېچىش ئۈچۈن چېكىڭ" -+ -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 -+msgid "Open With Other _Application..." -+msgstr "باش پروگراممىدا ئاچ(_A)..." -+ -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 -+msgid "Empty" -+msgstr "قۇرۇق" -+ -+#: ../src/main_window.c:1505 -+msgid "Loading..." -+msgstr "ئوقۇۋاتىدۇ..." -+ -+#: ../src/main_window.c:2109 -+msgid "Choose 'set wallpaper' method" -+msgstr "‹تام قەغىزى قىلىپ بەلگىلەش› ئۇسۇلىنى تاللا" -+ -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 -+msgid "" -+"Configure which system is currently managing your desktop.\n" -+"This setting determines the method Ristretto will use\n" -+"to configure the desktop wallpaper." -+msgstr "نۆۋەتتە ئۈستەلئۈستىنى باشقۇرۇۋاتقان سىستېمىنى سەپلەيدۇ.\n" -+"بۇنىڭغا قاراپ Ristretto ئۈستەلئۈستى تام قەغىزىنى بەلگىلەش\n" -+"ئۇسۇلىنى بەلگىلەيدۇ." -+ -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 -+msgid "None" -+msgstr "يوق" -+ -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 -+msgid "Xfce" -+msgstr "Xfce" -+ -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 -+msgid "GNOME" -+msgstr "گىنوم(GNOME)" -+ -+#: ../src/main_window.c:2588 -+msgid "Developer:" -+msgstr "ئىجادىيەتچى:" -+ -+#: ../src/main_window.c:2597 -+msgid "Ristretto is an image viewer for the Xfce desktop environment." -+msgstr "رىسترېتتو(Ristretto) بولسا Xfce ئۈستەلئۈستى مۇھىتىدىكى سۈرەت كۆرگۈدۇر." -+ -+#: ../src/main_window.c:2605 -+msgid "translator-credits" -+msgstr "غەيرەت ت.كەنجى " -+ -+#: ../src/main_window.c:2907 -+msgid "Open image" -+msgstr "سۈرەت ئېچىش" -+ -+#: ../src/main_window.c:2926 -+msgid "Images" -+msgstr "سۈرەتلەر" -+ -+#: ../src/main_window.c:2931 -+msgid ".jp(e)g" -+msgstr ".jp(e)g" -+ -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 -+msgid "Could not open file" -+msgstr "ھۆججەتنى ئاچقىلى بولمىدى" -+ -+#: ../src/main_window.c:3133 -+msgid "Save copy" -+msgstr "كۆچۈرمىسىنى ساقلا" -+ -+#: ../src/main_window.c:3159 -+msgid "Could not save file" -+msgstr "ھۆججەتنى ساقلىغىلى بولمىدى" -+ -+#: ../src/main_window.c:3327 -+#, c-format -+msgid "Are you sure you want to delete image '%s' from disk?" -+msgstr "دىسكىدىكى ‹%s› دېگەن سۈرەتنى ئۆچۈرەمسىز؟" -+ -+#: ../src/main_window.c:3345 -+#, c-format -+msgid "" -+"An error occurred when deleting image '%s' from disk.\n" -+"\n" -+"%s" -+msgstr "دىسكىدىن سۈرەت ‹%s› نى ئۆچۈرۈۋاتقاندا خاتالىق كۆرۈلدى\n" -+"\n" -+"%s" -+ -+#: ../src/main_window.c:3361 -+#, c-format -+msgid "Are you sure you want to send image '%s' to trash?" -+msgstr "سۈرەت ‹%s› نى راستلا ئەخلەتخانىغا تاشلامسىز؟" -+ -+#: ../src/main_window.c:3379 -+#, c-format -+msgid "" -+"An error occurred when sending image '%s' to trash.\n" -+"\n" -+"%s" -+msgstr "ئەخلەتخانىغا سۈرەت ‹%s› نى ئەۋەتىۋاتقاندا خاتالىق كۆرۈلدى.\n" -+"\n" -+"%s" -+ -+#: ../src/main_window.c:3709 -+msgid "Edit with" -+msgstr "باشقا پروگراممىدا تەھرىرلە" -+ -+#: ../src/main_window.c:3727 -+#, c-format -+msgid "Open %s and other files of type %s with:" -+msgstr "%s ۋە تىپى %s بولغان ھۆججەتلەرنى كۆرسىتىلگەن پروگراممىدا ئاچ:" -+ -+#: ../src/main_window.c:3732 -+msgid "Use as _default for this kind of file" -+msgstr "مۇشۇ تىپتىكى ھۆججەتكە نىسبەتەن كۆڭۈلدىكى بولسۇن(_D)" -+ -+#: ../src/main_window.c:3822 -+msgid "Recommended Applications" -+msgstr "تەۋسىيىلىك پروگراممىلار" -+ -+#: ../src/main_window.c:3902 -+msgid "Other Applications" -+msgstr "باشقا پروگراممىلار" -+ -+#: ../src/icon_bar.c:345 -+msgid "Orientation" -+msgstr "يۆنىلىشى" -+ -+#: ../src/icon_bar.c:346 -+msgid "The orientation of the iconbar" -+msgstr "سىنبەلگە بالدىقىنىڭ يۆنىلىشى" -+ -+#: ../src/icon_bar.c:362 -+msgid "File column" -+msgstr "ھۆججەت ئىستونى" -+ -+#: ../src/icon_bar.c:363 -+msgid "Model column used to retrieve the file from" -+msgstr "ھۆججەت ئاتىنى ئىزدەشكە ئىشلىتىدىغان مودېل ئىستون" -+ -+#: ../src/icon_bar.c:375 -+msgid "Icon Bar Model" -+msgstr "سىنبەلگە بالدىقى مودېلى" -+ -+#: ../src/icon_bar.c:376 -+msgid "Model for the icon bar" -+msgstr "سىنبەلگە بالدىقىنىڭ مودېلى" -+ -+#: ../src/icon_bar.c:392 -+msgid "Active" -+msgstr "ئاكتىپ" -+ -+#: ../src/icon_bar.c:393 -+msgid "Active item index" -+msgstr "ئاكتىپ تۈرنىڭ ئىندېكسى" -+ -+#: ../src/icon_bar.c:409 ../src/icon_bar.c:410 -+msgid "Show Text" -+msgstr "تېكىست كۆرسىتىش" -+ -+#: ../src/icon_bar.c:416 ../src/icon_bar.c:417 -+msgid "Active item fill color" -+msgstr "ئاكتىپ تۈرنىڭ رەڭگى" -+ -+#: ../src/icon_bar.c:423 ../src/icon_bar.c:424 -+msgid "Active item border color" -+msgstr "ئاكتىپ تۈرنىڭ گىرۋەك رەڭگى" -+ -+#: ../src/icon_bar.c:430 ../src/icon_bar.c:431 -+msgid "Active item text color" -+msgstr "ئاكتىپ تۈرنىڭ تېكىستىنىڭ رېڭى" -+ -+#: ../src/icon_bar.c:437 ../src/icon_bar.c:438 -+msgid "Cursor item fill color" -+msgstr "نۇربەلگىنىڭ رەڭگى" -+ -+#: ../src/icon_bar.c:444 ../src/icon_bar.c:445 -+msgid "Cursor item border color" -+msgstr "نۇربەلگىنىڭ گىرۋىكىنىڭ رەڭگى" -+ -+#: ../src/icon_bar.c:451 ../src/icon_bar.c:452 -+msgid "Cursor item text color" -+msgstr "نۇربەلگىنىڭ تېكىستىڭ رېڭى" -+ -+#: ../src/privacy_dialog.c:152 -+msgid "Time range to clear:" -+msgstr "تازىلايدىغان ۋاقىت دائىرىسى:" -+ -+#: ../src/privacy_dialog.c:156 -+msgid "Cleanup" -+msgstr "تازىلاش" -+ -+#: ../src/privacy_dialog.c:158 -+msgid "Last Hour" -+msgstr "ئەڭ ئاخىرقى 1 سائەت" -+ -+#: ../src/privacy_dialog.c:159 -+msgid "Last Two Hours" -+msgstr "ئەڭ ئاخىرقى 4 سائەت" -+ -+#: ../src/privacy_dialog.c:160 -+msgid "Last Four Hours" -+msgstr "ئەڭ ئاخىرقى 4 سائەت" -+ -+#: ../src/privacy_dialog.c:161 -+msgid "Today" -+msgstr "بۈگۈن" -+ -+#: ../src/privacy_dialog.c:162 -+msgid "Everything" -+msgstr "ھەممىسى" -+ -+#: ../src/privacy_dialog.c:460 -+msgid "Clear private data" -+msgstr "شەخسىي سانلىق-مەلۇماتلارنى تازىلا" -+ -+#: ../src/preferences_dialog.c:276 -+msgid "Display" -+msgstr "كۆرسىتىش" -+ -+#: ../src/preferences_dialog.c:283 -+msgid "Background color" -+msgstr "تەگلىك رەڭگى" -+ -+#: ../src/preferences_dialog.c:287 -+msgid "Override background color:" -+msgstr "قاپلايدىغان تەگلىك رەڭگى:" -+ -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "سۈپەت" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "بۇ تاللانما ئىناۋەتلىك قىلىنسا، سۈرەتنىڭ ئەڭ چوڭ سۈپىتى ئېكراننىڭ چوڭلۇقىنىڭ چەكلىمىسىگە ئۇچرايدۇ." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "سىزىش سۈپىتىگە چەك قويسۇن" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "تولۇق ئېكران" -+ -+#: ../src/preferences_dialog.c:338 -+msgid "Thumbnails" -+msgstr "كىچىك سۈرەت" -+ -+#: ../src/preferences_dialog.c:341 -+msgid "" -+"The thumbnail bar can be automatically hidden when the window is fullscreen." -+msgstr "سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەتلەر ئاپتوماتىك يوشۇرۇنىدۇ." -+ -+#: ../src/preferences_dialog.c:344 -+msgid "Hide thumbnail bar when fullscreen" -+msgstr "سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەت بالدىقىنى يوشۇرسۇن" -+ -+#: ../src/preferences_dialog.c:352 -+msgid "Clock" -+msgstr "سائەت" -+ -+#: ../src/preferences_dialog.c:355 -+msgid "" -+"Show an analog clock that displays the current time when the window is " -+"fullscreen" -+msgstr "سىستېما تولۇق ئېكران ھالىتىدە بولغاندا كىچىك سۈرەتلەر ئاپتوماتىك يوشۇرۇنىدۇ" -+ -+#: ../src/preferences_dialog.c:358 -+msgid "Show Fullscreen Clock" -+msgstr "سائەتنى تولۇق ئېكراندا كۆرسىتىش" -+ -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "تام تەسۋىرى" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "مۆھلىتى" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "تام تەسۋىرى سۈپىتىدە كۆرسىتىلگەندە، سۈرەتنىڭ كۆرسىتىلىش ۋاقتى(مىللىي سېكۇنت)" -+ -+#: ../src/preferences_dialog.c:400 -+msgid "Control" -+msgstr "كونترول" -+ -+#: ../src/preferences_dialog.c:404 -+msgid "Scroll wheel" -+msgstr "سىيرىش غالتىكى" -+ -+#: ../src/preferences_dialog.c:407 -+msgid "Invert zoom direction" -+msgstr "چوڭايتىش يۆنىلىشىنى ئالماشتۇرۇش" -+ -+#: ../src/preferences_dialog.c:421 -+msgid "Behaviour" -+msgstr "قىلمىش" -+ -+#: ../src/preferences_dialog.c:426 -+msgid "Startup" -+msgstr "قوزغات" -+ -+#: ../src/preferences_dialog.c:428 -+msgid "Maximize window on startup when opening an image" -+msgstr "ھۆججەتنى ئېچىپ باشلانغاندا كۆزنەكنى ئەڭ چوڭ قىلسۇن" -+ -+#: ../src/preferences_dialog.c:434 -+msgid "Wrap around images" -+msgstr "ئەڭ ئاخىرقى سۈرەتتىن كېيىن بېشىغا قايتىش" -+ -+#: ../src/preferences_dialog.c:453 -+msgid "Desktop" -+msgstr "ئۈستەلئۈستى" -+ -+#: ../src/preferences_dialog.c:572 -+msgid "Image Viewer Preferences" -+msgstr "سۈرەت كۆرگۈ تەڭشەكلىرى" -+ -+#: ../src/properties_dialog.c:181 -+msgid "Name:" -+msgstr "ئاتى:" -+ -+#: ../src/properties_dialog.c:182 -+msgid "Kind:" -+msgstr "تىپى:" -+ -+#: ../src/properties_dialog.c:183 -+msgid "Modified:" -+msgstr "ئۆزگەرتىلگەن:" -+ -+#: ../src/properties_dialog.c:184 -+msgid "Accessed:" -+msgstr "زىيارەت قىلىنغان:" -+ -+#: ../src/properties_dialog.c:185 -+msgid "Size:" -+msgstr "چوڭلۇقى:" -+ -+#: ../src/properties_dialog.c:309 -+msgid "General" -+msgstr "ئادەتتىكى" -+ -+#: ../src/properties_dialog.c:313 -+msgid "Image" -+msgstr "سۈرەت" -+ -+#: ../src/properties_dialog.c:526 -+#, c-format -+msgid "Date taken:" -+msgstr "تارتىلغان ۋاقىت:" -+ -+#: ../src/properties_dialog.c:538 ../src/properties_dialog.c:550 -+#: ../src/properties_dialog.c:562 -+#, c-format -+msgid "%s" -+msgstr "%s" -+ -+#: ../src/properties_dialog.c:624 -+#, c-format -+msgid "%s - Properties" -+msgstr "%s - خاسلىقلىرى" -+ -+#: ../src/thumbnailer.c:460 -+msgid "" -+"The thumbnailer-service can not be reached,\n" -+"for this reason, the thumbnails can not be\n" -+"created.\n" -+"\n" -+"Install Tumbler or another thumbnailing daemon\n" -+"to resolve this issue." -+msgstr "كىچىك سۈرەت مۇلازىمىتى بىلەن ئالاقە قىلالمىدى، \n" -+"شۇڭا كىچىك سۈرەتلەر\n" -+"ياسالمايدۇ\n" -+"\n" -+"بۇ مەسىلىنى ھەل قىلىش ئۈچۈن Tumbler ياكى thumbnailing مۇئەككىلى نى \n" -+"ئورنىتىڭ." -+ -+#: ../src/thumbnailer.c:470 -+msgid "Do _not show this message again" -+msgstr "بۇ ئۇچۇرنى ئەمدى كۆرسەتمە(_N)" -+ -+#: ../src/xfce_wallpaper_manager.c:336 ../src/gnome_wallpaper_manager.c:235 -+msgid "Style:" -+msgstr "ئۇسلۇب:" -+ -+#: ../src/xfce_wallpaper_manager.c:337 -+msgid "Brightness:" -+msgstr "يورۇقلۇق:" -+ -+#: ../src/xfce_wallpaper_manager.c:338 -+msgid "Saturation:" -+msgstr "تويۇنۇش دەرىجىسى:" -+ -+#: ../src/xfce_wallpaper_manager.c:355 ../src/gnome_wallpaper_manager.c:246 -+msgid "Set as wallpaper" -+msgstr "تام قەغىزى قىلىپ بەلگىلە" -+ -+#: ../src/xfce_wallpaper_manager.c:508 ../src/gnome_wallpaper_manager.c:313 -+msgid "Auto" -+msgstr "ئاپتوماتىك" -+ -+#: ../src/xfce_wallpaper_manager.c:511 -+msgid "Centered" -+msgstr "ئوتتۇرىدا" -+ -+#: ../src/xfce_wallpaper_manager.c:514 -+msgid "Tiled" -+msgstr "كاھىشتەك" -+ -+#: ../src/xfce_wallpaper_manager.c:517 -+msgid "Stretched" -+msgstr "سوزۇلغان" -+ -+#: ../src/xfce_wallpaper_manager.c:520 -+msgid "Scaled" -+msgstr "سوزۇلغان-قىسىلغان" -+ -+#: ../src/xfce_wallpaper_manager.c:523 -+msgid "Zoomed" -+msgstr "چوڭايتىلغان ياكى كىچىكلىتىلگەن" -+ -+#: ../ristretto.desktop.in.h:2 -+msgid "Look at your images easily" -+msgstr "سۈرەتلەرنى ئوڭاي كۆرەلەيسىز" -+ -+#: ../ristretto.desktop.in.h:3 -+msgid "Ristretto Image Viewer" -+msgstr "رىسترېتتو(Ristretto) سۈرەت كۆرگۈ" -diff -Nuar a/po/uk.po b/po/uk.po ---- a/po/uk.po 2012-08-05 23:42:36.000000000 +0300 -+++ b/po/uk.po 2013-10-12 23:17:22.144987344 +0300 -@@ -6,7 +6,7 @@ - msgstr "" - "Project-Id-Version: ristretto\n" - "Report-Msgid-Bugs-To: xfce-i18n@xfce.org\n" --"POT-Creation-Date: 2012-04-23 19:24+0000\n" -+"POT-Creation-Date: 2012-12-04 12:24+0000\n" - "PO-Revision-Date: 2008-11-17 11:15+0200\n" - "Last-Translator: Dmitry Nikitin \n" - "Language-Team: Ukrainian \n" -@@ -44,414 +44,414 @@ - "Спробуйте %s --help для перегляду повного списку параметрів командної " - "стрічки.\n" - --#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1 -+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:1 - msgid "Image Viewer" - msgstr "Переглядач зображень" - --#: ../src/main_window.c:358 -+#: ../src/main_window.c:365 - msgid "_File" - msgstr "_Файл" - - #. Icon-name --#: ../src/main_window.c:362 -+#: ../src/main_window.c:369 - msgid "_Open..." - msgstr "_Відкрити..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:364 -+#: ../src/main_window.c:371 - msgid "Open an image" - msgstr "Відкрити зображення" - - #. Icon-name --#: ../src/main_window.c:368 -+#: ../src/main_window.c:375 - msgid "_Save copy..." - msgstr "Зберегти коп_ію..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:370 -+#: ../src/main_window.c:377 - msgid "Save a copy of the image" - msgstr "Зберегти копію малюнка" - - #. Icon-name --#: ../src/main_window.c:374 -+#: ../src/main_window.c:381 - msgid "_Properties..." - msgstr "_Властивості..." - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:376 -+#: ../src/main_window.c:383 - msgid "Show file properties" - msgstr "Показати властивості файлу" - - #. Icon-name --#: ../src/main_window.c:380 ../src/main_window.c:399 -+#: ../src/main_window.c:387 ../src/main_window.c:406 - msgid "_Edit" - msgstr "_Редагувати" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:382 -+#: ../src/main_window.c:389 - msgid "Edit this image" - msgstr "Редагувати малюнок" - - #. Icon-name --#: ../src/main_window.c:386 -+#: ../src/main_window.c:393 - msgid "_Close" - msgstr "_Закрити" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:388 -+#: ../src/main_window.c:395 - msgid "Close this image" - msgstr "Закрити малюнок" - - #. Icon-name --#: ../src/main_window.c:392 -+#: ../src/main_window.c:399 - msgid "_Quit" - msgstr "Ви_йти" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:394 -+#: ../src/main_window.c:401 - msgid "Quit Ristretto" - msgstr "Вийти з Ristretto" - --#: ../src/main_window.c:403 -+#: ../src/main_window.c:410 - msgid "_Open with" - msgstr "_Відкрити з" - --#: ../src/main_window.c:407 -+#: ../src/main_window.c:414 - msgid "_Sorting" - msgstr "_Сортування" - - #. Icon-name --#: ../src/main_window.c:411 -+#: ../src/main_window.c:418 - msgid "_Delete" - msgstr "_Видалити" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:413 -+#: ../src/main_window.c:420 - msgid "Delete this image from disk" - msgstr "Вилучити малюнок з диску" - - #. Icon-name --#: ../src/main_window.c:417 -+#: ../src/main_window.c:424 - msgid "_Clear private data..." - msgstr "_Очистити приватні дані..." - - #. Icon-name --#: ../src/main_window.c:423 -+#: ../src/main_window.c:430 - msgid "_Preferences..." - msgstr "_Налаштування..." - --#: ../src/main_window.c:430 -+#: ../src/main_window.c:437 - msgid "_View" - msgstr "_Перегляд" - - #. Icon-name --#: ../src/main_window.c:434 -+#: ../src/main_window.c:441 - msgid "_Fullscreen" - msgstr "Повний екр_ан" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:436 -+#: ../src/main_window.c:443 - msgid "Switch to fullscreen" - msgstr "Включити повноекранний режим" - - #. Icon-name --#: ../src/main_window.c:440 -+#: ../src/main_window.c:447 - msgid "_Leave Fullscreen" - msgstr "Покинути повний ек_ран" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:442 -+#: ../src/main_window.c:449 - msgid "Leave Fullscreen" - msgstr "Покинути повноекранний режим" - - #. Icon-name --#: ../src/main_window.c:446 -+#: ../src/main_window.c:453 - msgid "Set as _Wallpaper..." - msgstr "Встановити як шпа_лери..." - --#: ../src/main_window.c:453 -+#: ../src/main_window.c:460 - msgid "_Zoom" - msgstr "_Масштаб" - - #. Icon-name --#: ../src/main_window.c:457 -+#: ../src/main_window.c:464 - msgid "Zoom _In" - msgstr "Збіль_шити" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:459 -+#: ../src/main_window.c:466 - msgid "Zoom in" - msgstr "Збільшити" - - #. Icon-name --#: ../src/main_window.c:463 -+#: ../src/main_window.c:470 - msgid "Zoom _Out" - msgstr "З_меншити" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:465 -+#: ../src/main_window.c:472 - msgid "Zoom out" - msgstr "Зменшити" - - #. Icon-name --#: ../src/main_window.c:469 -+#: ../src/main_window.c:476 - msgid "Zoom _Fit" - msgstr "Вмістити у вікн_о" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:471 -+#: ../src/main_window.c:478 - msgid "Zoom to fit window" - msgstr "Припасувати до розмірів вікна" - - #. Icon-name --#: ../src/main_window.c:475 -+#: ../src/main_window.c:482 - msgid "_Normal Size" - msgstr "_Нормальний розмір" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:477 -+#: ../src/main_window.c:484 - msgid "Zoom to 100%" - msgstr "Збільшити до 100%" - --#: ../src/main_window.c:482 -+#: ../src/main_window.c:489 - msgid "_Rotation" - msgstr "_Обертання" - - #. Icon-name --#: ../src/main_window.c:486 -+#: ../src/main_window.c:493 - msgid "Rotate _Right" - msgstr "Повернути в_право" - - #. Icon-name --#: ../src/main_window.c:492 -+#: ../src/main_window.c:499 - msgid "Rotate _Left" - msgstr "Повернути в_ліво" - --#: ../src/main_window.c:499 -+#: ../src/main_window.c:506 - msgid "_Go" - msgstr "П_ерейти" - - #. Icon-name --#: ../src/main_window.c:503 -+#: ../src/main_window.c:510 - msgid "_Forward" - msgstr "_Вперед" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:505 -+#: ../src/main_window.c:512 - msgid "Next image" - msgstr "Наступний малюнок" - - #. Icon-name --#: ../src/main_window.c:509 -+#: ../src/main_window.c:516 - msgid "_Back" - msgstr "_Назад" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:511 -+#: ../src/main_window.c:518 - msgid "Previous image" - msgstr "Попередній малюнок" - - #. Icon-name --#: ../src/main_window.c:515 -+#: ../src/main_window.c:522 - msgid "F_irst" - msgstr "_Перший" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:517 -+#: ../src/main_window.c:524 - msgid "First image" - msgstr "Перший малюнок" - - #. Icon-name --#: ../src/main_window.c:521 -+#: ../src/main_window.c:528 - msgid "_Last" - msgstr "_Останній" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:523 -+#: ../src/main_window.c:530 - msgid "Last image" - msgstr "Останній малюнок" - --#: ../src/main_window.c:528 -+#: ../src/main_window.c:535 - msgid "_Help" - msgstr "Дов_ідка" - - #. Icon-name --#: ../src/main_window.c:532 -+#: ../src/main_window.c:539 - msgid "_Contents" - msgstr "_Вміст" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:534 -+#: ../src/main_window.c:541 - msgid "Display ristretto user manual" - msgstr "Показати посібник користувача ristretto" - - #. Icon-name --#: ../src/main_window.c:538 -+#: ../src/main_window.c:545 - msgid "_About" - msgstr "_Про" - - #. Label-text - #. Keyboard shortcut --#: ../src/main_window.c:540 -+#: ../src/main_window.c:547 - msgid "Display information about ristretto" - msgstr "Показати інформацію про ristretto" - --#: ../src/main_window.c:545 -+#: ../src/main_window.c:552 - msgid "_Position" - msgstr "По_зиція" - --#: ../src/main_window.c:549 -+#: ../src/main_window.c:556 - msgid "_Size" - msgstr "_Розмір" - --#: ../src/main_window.c:553 -+#: ../src/main_window.c:560 - msgid "Thumbnail Bar _Position" - msgstr "Позиція _панелі мініатюр" - --#: ../src/main_window.c:557 -+#: ../src/main_window.c:564 - msgid "Thumb_nail Size" - msgstr "Розмір _мініатюр" - - #. Icon-name --#: ../src/main_window.c:562 -+#: ../src/main_window.c:569 - msgid "Leave _Fullscreen" - msgstr "Залишити повноекр_анний режим" - - #. Icon-name --#: ../src/main_window.c:578 -+#: ../src/main_window.c:585 - msgid "_Show Toolbar" - msgstr "Показати п_анель" - - #. Icon-name --#: ../src/main_window.c:586 -+#: ../src/main_window.c:593 - msgid "Show _Thumbnail Bar" - msgstr "Показати пан_ель мініатюр" - - #. Icon-name --#: ../src/main_window.c:594 -+#: ../src/main_window.c:601 - msgid "Show Status _Bar" - msgstr "Показати пан_ель статусу" - - #. Icon-name --#: ../src/main_window.c:607 -+#: ../src/main_window.c:614 - msgid "sort by filename" - msgstr "сортувати за назвою" - - #. Icon-name --#: ../src/main_window.c:614 -+#: ../src/main_window.c:621 - msgid "sort by date" - msgstr "сортувати за датою" - - #. Icon-name --#: ../src/main_window.c:625 -+#: ../src/main_window.c:632 - msgid "Left" - msgstr "Зліва" - --#: ../src/main_window.c:631 -+#: ../src/main_window.c:638 - msgid "Right" - msgstr "Справа" - --#: ../src/main_window.c:637 -+#: ../src/main_window.c:644 - msgid "Top" - msgstr "Згори" - --#: ../src/main_window.c:643 -+#: ../src/main_window.c:650 - msgid "Bottom" - msgstr "Внизу" - --#: ../src/main_window.c:654 -+#: ../src/main_window.c:661 - msgid "Very Small" - msgstr "Дуже малий" - --#: ../src/main_window.c:660 -+#: ../src/main_window.c:667 - msgid "Smaller" - msgstr "Менший" - --#: ../src/main_window.c:666 -+#: ../src/main_window.c:673 - msgid "Small" - msgstr "Малий" - --#: ../src/main_window.c:672 -+#: ../src/main_window.c:679 - msgid "Normal" - msgstr "Нормальний" - --#: ../src/main_window.c:678 -+#: ../src/main_window.c:685 - msgid "Large" - msgstr "Великий" - --#: ../src/main_window.c:684 -+#: ../src/main_window.c:691 - msgid "Larger" - msgstr "Більший" - --#: ../src/main_window.c:690 -+#: ../src/main_window.c:697 - msgid "Very Large" - msgstr "Дуже великий" - - #. Create Play/Pause Slideshow actions --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "_Play" - msgstr "_Програвати" - --#: ../src/main_window.c:841 -+#: ../src/main_window.c:849 - msgid "Play slideshow" - msgstr "Програти слайд-шоу" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "_Pause" - msgstr "_Пауза" - --#: ../src/main_window.c:842 -+#: ../src/main_window.c:850 - msgid "Pause slideshow" - msgstr "Призупинити слайд-шоу" - - #. Create Recently used items Action --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "_Recently used" - msgstr "_Нещодавно використані" - --#: ../src/main_window.c:845 -+#: ../src/main_window.c:853 - msgid "Recently used" - msgstr "Нещодавно використані" - --#: ../src/main_window.c:949 ../src/main_window.c:1460 -+#: ../src/main_window.c:957 ../src/main_window.c:1495 - msgid "Press open to select an image" - msgstr "Натисніть відкрити для вибору малюнка" - --#: ../src/main_window.c:1322 ../src/main_window.c:1326 -+#: ../src/main_window.c:1354 ../src/main_window.c:1358 - msgid "Open With Other _Application..." - msgstr "Відкрити з іншою _програмою..." - --#: ../src/main_window.c:1347 ../src/main_window.c:1353 -+#: ../src/main_window.c:1379 ../src/main_window.c:1385 - msgid "Empty" - msgstr "Пустий" - --#: ../src/main_window.c:1470 -+#: ../src/main_window.c:1505 - msgid "Loading..." - msgstr "Завантаження..." - --#: ../src/main_window.c:2074 -+#: ../src/main_window.c:2109 - msgid "Choose 'set wallpaper' method" - msgstr "Виберіть метод для 'встановити шпалери'" - --#: ../src/main_window.c:2089 ../src/preferences_dialog.c:356 -+#: ../src/main_window.c:2124 ../src/preferences_dialog.c:464 - msgid "" - "Configure which system is currently managing your desktop.\n" - "This setting determines the method Ristretto will use\n" -@@ -461,60 +461,60 @@ - "Ці налаштування визначають метод, який використає Ristretto\n" - "для конфігурації шпалер робочого столу." - --#: ../src/main_window.c:2114 ../src/preferences_dialog.c:380 -+#: ../src/main_window.c:2149 ../src/preferences_dialog.c:488 - msgid "None" - msgstr "Нічого" - --#: ../src/main_window.c:2118 ../src/preferences_dialog.c:384 -+#: ../src/main_window.c:2153 ../src/preferences_dialog.c:492 - msgid "Xfce" - msgstr "Xfce" - --#: ../src/main_window.c:2122 ../src/preferences_dialog.c:388 -+#: ../src/main_window.c:2157 ../src/preferences_dialog.c:496 - msgid "GNOME" - msgstr "GNOME" - --#: ../src/main_window.c:2553 -+#: ../src/main_window.c:2588 - msgid "Developer:" - msgstr "Розробник:" - --#: ../src/main_window.c:2562 -+#: ../src/main_window.c:2597 - msgid "Ristretto is an image viewer for the Xfce desktop environment." - msgstr "Ristretto - переглядач зображень для робочого середовища Xfce." - --#: ../src/main_window.c:2570 -+#: ../src/main_window.c:2605 - msgid "translator-credits" --msgstr "Dmitry Nikitin " -+msgstr "Dmitry Nikitin /nYarema aka Knedlyk " - --#: ../src/main_window.c:2872 -+#: ../src/main_window.c:2907 - msgid "Open image" - msgstr "Відкрити зображення" - --#: ../src/main_window.c:2891 -+#: ../src/main_window.c:2926 - msgid "Images" - msgstr "Малюнки" - --#: ../src/main_window.c:2896 -+#: ../src/main_window.c:2931 - msgid ".jp(e)g" - msgstr ".jp(e)g" - --#: ../src/main_window.c:2923 ../src/main_window.c:3065 -+#: ../src/main_window.c:2958 ../src/main_window.c:3100 - msgid "Could not open file" - msgstr "Неможливо відкрити файл" - --#: ../src/main_window.c:3098 -+#: ../src/main_window.c:3133 - msgid "Save copy" - msgstr "Зберегти копію" - --#: ../src/main_window.c:3124 -+#: ../src/main_window.c:3159 - msgid "Could not save file" - msgstr "Неможливо зберегти файл" - --#: ../src/main_window.c:3292 -+#: ../src/main_window.c:3327 - #, c-format - msgid "Are you sure you want to delete image '%s' from disk?" - msgstr "Ви впевнені, що бажаєте видалити малюнок '%s' з диску?" - --#: ../src/main_window.c:3310 -+#: ../src/main_window.c:3345 - #, c-format - msgid "" - "An error occurred when deleting image '%s' from disk.\n" -@@ -525,12 +525,12 @@ - "\n" - "%s" - --#: ../src/main_window.c:3326 -+#: ../src/main_window.c:3361 - #, c-format - msgid "Are you sure you want to send image '%s' to trash?" - msgstr "Ви впевнені, що бажаєте викинути малюнок '%s' у смітник?" - --#: ../src/main_window.c:3344 -+#: ../src/main_window.c:3379 - #, c-format - msgid "" - "An error occurred when sending image '%s' to trash.\n" -@@ -541,24 +541,24 @@ - "\n" - "%s" - --#: ../src/main_window.c:3674 -+#: ../src/main_window.c:3709 - msgid "Edit with" - msgstr "Редагувати з" - --#: ../src/main_window.c:3692 -+#: ../src/main_window.c:3727 - #, c-format - msgid "Open %s and other files of type %s with:" - msgstr "Відкрити %s та інші файли з типом %s з:" - --#: ../src/main_window.c:3697 -+#: ../src/main_window.c:3732 - msgid "Use as _default for this kind of file" - msgstr "Використати як _типове для цього типу файлів" - --#: ../src/main_window.c:3787 -+#: ../src/main_window.c:3822 - msgid "Recommended Applications" - msgstr "Пропоновані програми" - --#: ../src/main_window.c:3867 -+#: ../src/main_window.c:3902 - msgid "Other Applications" - msgstr "Інші програми" - -@@ -654,54 +654,58 @@ - msgid "Clear private data" - msgstr "Очистити приватні дані" - --#: ../src/preferences_dialog.c:201 -+#: ../src/preferences_dialog.c:276 - msgid "Display" - msgstr "Відображення" - --#: ../src/preferences_dialog.c:206 -+#: ../src/preferences_dialog.c:283 - msgid "Background color" - msgstr "Колір тла" - --#: ../src/preferences_dialog.c:210 -+#: ../src/preferences_dialog.c:287 - msgid "Override background color:" - msgstr "Замінити колір тла:" - --#: ../src/preferences_dialog.c:222 -+#: ../src/preferences_dialog.c:314 -+msgid "Quality" -+msgstr "Якість" -+ -+#: ../src/preferences_dialog.c:318 -+msgid "" -+"With this option enabled, the maximum image-quality will be limited to the " -+"screen-size." -+msgstr "" -+"Коли включений цей параметр, тоді максимальна якість малюнка буде обмежена " -+"до розмірів екрану." -+ -+#: ../src/preferences_dialog.c:321 -+msgid "Limit rendering quality" -+msgstr "Обмеження якості відтворення" -+ -+#: ../src/preferences_dialog.c:333 -+msgid "Fullscreen" -+msgstr "Повний екран" -+ -+#: ../src/preferences_dialog.c:338 - msgid "Thumbnails" - msgstr "Мініатюри" - --#: ../src/preferences_dialog.c:225 -+#: ../src/preferences_dialog.c:341 - msgid "" - "The thumbnail bar can be automatically hidden when the window is fullscreen." - msgstr "" - "Панель мініатюр може автоматично ховатись, \n" - "коли переглядач зображень перебуває в повноекранному режимі." - --#: ../src/preferences_dialog.c:228 -+#: ../src/preferences_dialog.c:344 - msgid "Hide thumbnail bar when fullscreen" - msgstr "Приховувати панель мініатюр в повноекранному режимі" - --#: ../src/preferences_dialog.c:259 --msgid "Slideshow" --msgstr "Слайд-шоу" -- --#: ../src/preferences_dialog.c:263 --msgid "Timeout" --msgstr "Затримка" -- --#: ../src/preferences_dialog.c:266 --msgid "" --"The time period an individual image is displayed during a slideshow\n" --"(in seconds)" --msgstr "" --"Тривалість показу окремого зображення в слайд-шоу\n" --"(в секундах)" -- --#: ../src/preferences_dialog.c:275 -+#: ../src/preferences_dialog.c:352 - msgid "Clock" - msgstr "Годинник" - --#: ../src/preferences_dialog.c:278 -+#: ../src/preferences_dialog.c:355 - msgid "" - "Show an analog clock that displays the current time when the window is " - "fullscreen" -@@ -709,43 +713,59 @@ - "Панель мініатюр може автоматично ховатись, \n" - "коли переглядач зображень перебуває в повноекранному режимі." - --#: ../src/preferences_dialog.c:281 -+#: ../src/preferences_dialog.c:358 - msgid "Show Fullscreen Clock" - msgstr "Включити повноекранний режим" - --#: ../src/preferences_dialog.c:296 -+#: ../src/preferences_dialog.c:375 -+msgid "Slideshow" -+msgstr "Слайд-шоу" -+ -+#: ../src/preferences_dialog.c:379 -+msgid "Timeout" -+msgstr "Затримка" -+ -+#: ../src/preferences_dialog.c:382 -+msgid "" -+"The time period an individual image is displayed during a slideshow\n" -+"(in seconds)" -+msgstr "" -+"Тривалість показу окремого зображення в слайд-шоу\n" -+"(в секундах)" -+ -+#: ../src/preferences_dialog.c:400 - msgid "Control" - msgstr "Контроль" - --#: ../src/preferences_dialog.c:300 -+#: ../src/preferences_dialog.c:404 - msgid "Scroll wheel" - msgstr "Прокрутка" - --#: ../src/preferences_dialog.c:303 -+#: ../src/preferences_dialog.c:407 - msgid "Invert zoom direction" - msgstr "Повернути напрямок збільшення" - --#: ../src/preferences_dialog.c:313 -+#: ../src/preferences_dialog.c:421 - msgid "Behaviour" - msgstr "Поведінка" - --#: ../src/preferences_dialog.c:318 -+#: ../src/preferences_dialog.c:426 - msgid "Startup" - msgstr "Початок" - --#: ../src/preferences_dialog.c:320 -+#: ../src/preferences_dialog.c:428 - msgid "Maximize window on startup when opening an image" - msgstr "Максимізувати розмір вікна під час запуску коли відкривається малюнок" - --#: ../src/preferences_dialog.c:326 -+#: ../src/preferences_dialog.c:434 - msgid "Wrap around images" - msgstr "Обернутись навколо зображень" - --#: ../src/preferences_dialog.c:345 -+#: ../src/preferences_dialog.c:453 - msgid "Desktop" - msgstr "Робочий стіл" - --#: ../src/preferences_dialog.c:467 -+#: ../src/preferences_dialog.c:572 - msgid "Image Viewer Preferences" - msgstr "Уподобання переглядача зображень" - -@@ -962,12 +982,6 @@ - #~ msgid "_Print" - #~ msgstr "_Друкувати" - --#~ msgid "Quality" --#~ msgstr "Якість" -- --#~ msgid "Maximum render quality:" --#~ msgstr "Максимальна якість відображення:" -- - #~ msgid "Best" - #~ msgstr "Кращий" - -diff -Nuar a/src/image_list.c b/src/image_list.c ---- a/src/image_list.c 2012-08-05 23:42:36.000000000 +0300 -+++ b/src/image_list.c 2013-10-12 23:17:22.147987344 +0300 -@@ -1363,8 +1363,8 @@ - const gchar *bp = b_base; - - gint result = 0; -- guint a_num = 0; -- guint b_num = 0; -+ guint64 a_num = 0; -+ guint64 b_num = 0; - - /* try simple (fast) ASCII comparison first */ - for (;; ++ap, ++bp) -@@ -1404,8 +1404,8 @@ - */ - if (g_ascii_isdigit (ac) && g_ascii_isdigit (bc)) - { -- a_num = strtoul (ap, NULL, 10); -- b_num = strtoul (bp, NULL, 10); -+ a_num = strtoull (ap, NULL, 10); -+ b_num = strtoull (bp, NULL, 10); - - if (a_num < b_num) - result = -1; -@@ -1418,8 +1418,8 @@ - g_ascii_isdigit (*(ap -1)) && - g_ascii_isdigit (*(bp -1)) ) - { -- a_num = strtoul (ap-1, NULL, 10); -- b_num = strtoul (bp-1, NULL, 10); -+ a_num = strtoull (ap-1, NULL, 10); -+ b_num = strtoull (bp-1, NULL, 10); - - if (a_num < b_num) - result = -1; -diff -Nuar a/src/main_window.c b/src/main_window.c ---- a/src/main_window.c 2012-08-05 23:42:36.000000000 +0300 -+++ b/src/main_window.c 2013-10-12 23:17:22.149987344 +0300 -@@ -2391,7 +2391,15 @@ - gpointer user_data) - { - RsttoMainWindow *window = RSTTO_MAIN_WINDOW (user_data); -- if (!(event->state & (GDK_CONTROL_MASK))) -+ gboolean ret = FALSE; -+ -+ /* -+ * - scroll through images with scroll -+ * - pan across current image with shift+scroll -+ * - zoom on current image with ctrl+scroll -+ */ -+ if (!(event->state & (GDK_CONTROL_MASK)) && -+ !(event->state & (GDK_SHIFT_MASK))) - { - switch(event->direction) - { -@@ -2404,8 +2412,9 @@ - rstto_image_list_iter_next (window->priv->iter); - break; - } -+ ret = TRUE; /* don't call other callbacks */ - } -- return FALSE; -+ return ret; - } - - static gboolean diff --git a/desktop/xfce/addon/ristretto/pspec.xml b/desktop/xfce/addon/ristretto/pspec.xml deleted file mode 100644 index 098d6674ae..0000000000 --- a/desktop/xfce/addon/ristretto/pspec.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - ristretto - http://www.xfce.org - - Engin Manap - enginmanap@comu.edu.tr - - GPLv2 - app:gui - Image viewer for Xfce - desktop.xfce.addon - Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment. - http://archive.xfce.org/src/apps/ristretto/0.8/ristretto-0.8.0.tar.bz2 - - gtk2-devel - xfconf-devel - xfce4-dev-tools - libexif-devel - libxfce4ui-devel - dbus-glib-devel - exo-devel - desktop-file-utils - gettext - intltool - - - - - ristretto - - gtk2 - cairo - glib2 - pango - libX11 - xfconf - libexif - dbus-glib - gdk-pixbuf - libxfce4ui - libxfce4util - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share - - - - - - 2015-03-02 - 0.8.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/ristretto/translations.xml b/desktop/xfce/addon/ristretto/translations.xml deleted file mode 100644 index ecc2b90ed2..0000000000 --- a/desktop/xfce/addon/ristretto/translations.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - ristretto - Xfce için resim göstericisi - Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir. - - - diff --git a/desktop/xfce/addon/thunar-archive-plugin/actions.py b/desktop/xfce/addon/thunar-archive-plugin/actions.py deleted file mode 100644 index c761332198..0000000000 --- a/desktop/xfce/addon/thunar-archive-plugin/actions.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. - -from pisi.actionsapi import autotools -from pisi.actionsapi import get -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools - -def setup(): - shelltools.export("LDFLAGS", "%s -lgtk-x11-2.0 -lthunarx-2" % get.LDFLAGS()) - autotools.configure("--disable-static \ - --disable-dependency-tracking") - - pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") - diff --git a/desktop/xfce/addon/thunar-archive-plugin/pspec.xml b/desktop/xfce/addon/thunar-archive-plugin/pspec.xml deleted file mode 100644 index 99a050feda..0000000000 --- a/desktop/xfce/addon/thunar-archive-plugin/pspec.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - thunar-archive-plugin - http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - A plugin allows you to create and extract archive files - The Thunar Archive Plugin allows you to create and extract archive files using the file context menus in the Thunar file manager. - http://archive.xfce.org/src/thunar-plugins/thunar-archive-plugin/0.3/thunar-archive-plugin-0.3.1.tar.bz2 - - Thunar-devel - thunar-vfs-devel - xfce4-dev-tools - intltool - - - - - thunar-archive-plugin - - Thunar - gtk2 - - - /usr/lib - /usr/share/doc - /usr/share - /usr/libexec - /usr/share/locale - - - - - - 2015-03-02 - 0.3.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/thunar-archive-plugin/translations.xml b/desktop/xfce/addon/thunar-archive-plugin/translations.xml deleted file mode 100644 index 3bde90fbec..0000000000 --- a/desktop/xfce/addon/thunar-archive-plugin/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - thunar-archive-plugin - Arşiv dosyaları yaratmaya ve çıkatmaya yarayan bir eklenti - The Thunar Archive Plugin Thunar dosya yöneticisinin dosya içeriği menusunden arşiv dosyaları oluşturmaya ve çıkarmaya yarayan bir eklentidir. - - diff --git a/desktop/xfce/addon/thunar-vfs/actions.py b/desktop/xfce/addon/thunar-vfs/actions.py deleted file mode 100644 index fcbe20d0b4..0000000000 --- a/desktop/xfce/addon/thunar-vfs/actions.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure() - - pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.install() diff --git a/desktop/xfce/addon/thunar-vfs/files/tr-po.patch b/desktop/xfce/addon/thunar-vfs/files/tr-po.patch deleted file mode 100644 index 4eaa0d6443..0000000000 --- a/desktop/xfce/addon/thunar-vfs/files/tr-po.patch +++ /dev/null @@ -1,191 +0,0 @@ -diff -Naur thunar-vfs-1.2.0.orig//po/tr.po thunar-vfs-1.2.0//po/tr.po ---- thunar-vfs-1.2.0.orig//po/tr.po 2011-01-16 18:48:38.000000000 +0200 -+++ thunar-vfs-1.2.0//po/tr.po 2011-03-30 16:14:31.133000008 +0300 -@@ -2,120 +2,122 @@ - # Turkish translation of the thunar package. - # Copyright (C) 2004-2007 Benedikt Meurer. - # This file is distributed under the same license as the thunar package. --# -+# - # Gökmen Görgen , 2008, 2009. - # Eren Türkay , 2007, 2008. - # Cem Ünal , 2007. - # Türker SEZER , 2007. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: tr\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2011-01-16 17:48+0100\n" -+"POT-Creation-Date: 2011-03-22 18:58+0000\n" - "PO-Revision-Date: 2009-02-11 04:39+0200\n" - "Last-Translator: Gökmen Görgen \n" - "Language-Team: Turkish \n" --"Language: tr\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: tr\n" - "Plural-Forms: nplurals=2; plural=0;\n" - "X-Generator: KBabel 1.11.4\n" - - #: ../thunar-vfs/exo-hal.c:434 - #, c-format - msgid "External %s Drive" --msgstr "" -+msgstr "Harici %s Sürücü" - - #: ../thunar-vfs/exo-hal.c:436 - #, c-format - msgid "%s Drive" --msgstr "" -+msgstr "%s Sürücü" - - #: ../thunar-vfs/exo-hal.c:445 - msgid "External Floppy Drive" --msgstr "" -+msgstr "Harici Disket Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:447 - msgid "Floppy Drive" --msgstr "" -+msgstr "Disket Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:451 - msgid "Compact Flash Drive" --msgstr "" -+msgstr "Flash Bellek Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:455 - msgid "Memory Stick Drive" --msgstr "" -+msgstr "Hafıza Kartı Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:459 - msgid "Smart Media Drive" --msgstr "" -+msgstr "Smart Media Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:463 - msgid "SD/MMC Drive" --msgstr "" -+msgstr "SD/MMC Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:467 - msgid "Zip Drive" --msgstr "" -+msgstr "Zip Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:471 - msgid "Jaz Drive" --msgstr "" -+msgstr "Jaz Sürücüsü" - - #: ../thunar-vfs/exo-hal.c:475 - msgid "Pen Drive" --msgstr "" -+msgstr "Pen Sürücüsü" - --#. TRANSLATORS: This string requires special care as %s may be the empty string. Trailing/leading whitespace will be removed. -+#. TRANSLATORS: This string requires special care as %s may be the empty -+#. string. Trailing/leading whitespace will be removed. - #: ../thunar-vfs/exo-hal.c:484 - #, c-format - msgid "%s Music Player" --msgstr "" -+msgstr "%s Müzik Oynatıcı" - --#. TRANSLATORS: This string requires special care as %s may be the empty string. Trailing/leading whitespace will be removed. -+#. TRANSLATORS: This string requires special care as %s may be the empty -+#. string. Trailing/leading whitespace will be removed. - #: ../thunar-vfs/exo-hal.c:499 - #, c-format - msgid "%s Digital Camera" --msgstr "" -+msgstr "%s Dijital Kamera" - - #. last fallback to "Drive" - #: ../thunar-vfs/exo-hal.c:522 - msgid "Drive" --msgstr "" -+msgstr "Sürücü" - - #: ../thunar-vfs/exo-hal.c:739 - #, c-format - msgid "Blank %s Disc" --msgstr "" -+msgstr "Boş %s Disk" - - #: ../thunar-vfs/exo-hal.c:741 - #, c-format - msgid "%s Disc" --msgstr "" -+msgstr "%s Disk" - - #. special case for pure audio disc - #: ../thunar-vfs/exo-hal.c:746 - msgid "Audio CD" --msgstr "" -+msgstr "Ses CD'si" - - #: ../thunar-vfs/exo-hal.c:782 - #, c-format - msgid "%s Removable Volume" --msgstr "" -+msgstr "%s Çıkarılabilir Hacim" - - #: ../thunar-vfs/exo-hal.c:784 - #, c-format - msgid "%s Volume" --msgstr "" -+msgstr "%s Hacim" - - #: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247 - #: ../thunar-vfs/exo-mount-point.c:435 --#, fuzzy, c-format -+#, c-format - msgid "Failed to open file \"%s\": %s" --msgstr "\"%s\" dosyası açılamadı" -+msgstr "\"%s\" dosyası açılamadı: %s" - - #. base directory not readable - #: ../thunar-vfs/thunar-vfs-deep-count-job.c:233 -@@ -128,13 +130,15 @@ - msgid "Unknown error" - msgstr "Bilinmeyen hata" - --#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it as-is. -+#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it -+#. as-is. - #: ../thunar-vfs/thunar-vfs-info.c:390 - #, c-format - msgid "No Exec field specified" - msgstr ".desktop dosyasında \"Exec\" alanı tanımlanmamış" - --#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it as-is. -+#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it -+#. as-is. - #: ../thunar-vfs/thunar-vfs-info.c:409 - #, c-format - msgid "No URL field specified" -@@ -283,7 +287,8 @@ - msgid "Failed to create directory \"%s\"" - msgstr "%s dizini oluşturulamadı" - --#. TRANSLATORS: FIFO is an acronym for First In, First Out. You can replace the word with `pipe'. -+#. TRANSLATORS: FIFO is an acronym for First In, First Out. You can replace -+#. the word with `pipe'. - #: ../thunar-vfs/thunar-vfs-io-local-xfer.c:519 - #, c-format - msgid "Failed to create named fifo \"%s\"" -@@ -433,7 +438,8 @@ - msgid "Operation not supported" - msgstr "İşlem desteklenmiyor" - --#. TRANSLATORS: This error indicates that an URI contains an invalid escaped character (RFC 2396) -+#. TRANSLATORS: This error indicates that an URI contains an invalid escaped -+#. character (RFC 2396) - #: ../thunar-vfs/thunar-vfs-private.c:335 - #, c-format - msgid "Invalidly escaped characters" diff --git a/desktop/xfce/addon/thunar-vfs/pspec.xml b/desktop/xfce/addon/thunar-vfs/pspec.xml deleted file mode 100644 index bc05034901..0000000000 --- a/desktop/xfce/addon/thunar-vfs/pspec.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - thunar-vfs - http://xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - Virtual filesystem for Thunar - thunar-vfs is a virtual filesystem shipped with the Thunar 1.0 and earlier releases. - http://archive.xfce.org/src/xfce/thunar-vfs/1.2/thunar-vfs-1.2.0.tar.bz2 - - libxfce4util-devel - exo-devel - dbus-glib-devel - startup-notification-devel - freetype-devel - libjpeg-turbo-devel - libpng-devel - intltool - gettext - gtk-doc - desktop-file-utils - - - tr-po.patch - - - - - thunar-vfs - - exo - gtk2 - glib2 - libX11 - libpng - freetype - gdk-pixbuf - libxfce4util - libjpeg-turbo - startup-notification - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share - - - - - thunar-vfs-devel - - thunar-vfs - glib2-devel - exo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - - 2015-03-02 - 1.2.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/thunar-vfs/translations.xml b/desktop/xfce/addon/thunar-vfs/translations.xml deleted file mode 100644 index 22aa095a39..0000000000 --- a/desktop/xfce/addon/thunar-vfs/translations.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - thunar-vfs - Thunar için sanal dosya sistemi - thunar-vfs, Thunar için yazılmış sanal dosya sistemidir. - - - - thunar-vfs-devel - thunar-vfs geliştirme dosyaları - - diff --git a/desktop/xfce/addon/xfburn/actions.py b/desktop/xfce/addon/xfburn/actions.py deleted file mode 100644 index ccd48d28b0..0000000000 --- a/desktop/xfce/addon/xfburn/actions.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --enable-gstreamer") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/desktop/xfce/addon/xfburn/files/xfburn-fix-missing-include.patch b/desktop/xfce/addon/xfburn/files/xfburn-fix-missing-include.patch deleted file mode 100644 index dbdc952e5e..0000000000 --- a/desktop/xfce/addon/xfburn/files/xfburn-fix-missing-include.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: xfburn-0.4.3/xfburn/xfburn-settings.h -=================================================================== ---- xfburn-0.4.3.orig/xfburn/xfburn-settings.h -+++ xfburn-0.4.3/xfburn/xfburn-settings.h -@@ -24,6 +24,7 @@ - #endif /* !HAVE_CONFIG_H */ - - #include -+#include - - G_BEGIN_DECLS - diff --git a/desktop/xfce/addon/xfburn/pspec.xml b/desktop/xfce/addon/xfburn/pspec.xml deleted file mode 100644 index d3662a3927..0000000000 --- a/desktop/xfce/addon/xfburn/pspec.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - xfburn - http://goodies.xfce.org/projects/applications/xfburn - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A simple CD/DVD burning tool - Xfburn is a simple CD/DVD burning tool based on libburnia libraries. - http://archive.xfce.org/src/apps/xfburn/0.5/xfburn-0.5.2.tar.bz2 - - libxfce4ui-devel - thunar-vfs-devel - libburn-devel - libisofs-devel - dbus-glib-devel - exo-devel - librsvg-devel - gstreamer-devel - gst-plugins-base-devel - gtk2-devel - gettext - intltool - desktop-file-utils - - - - - xfburn - - exo - gtk2 - glib2 - libburn - libisofs - gstreamer - gdk-pixbuf - libxfce4ui - libxfce4util - gst-plugins-base - - - /usr/bin - /usr/share/locale - /usr/share/man - /usr/share - - - - - - 2015-03-04 - 0.5.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/xfburn/translations.xml b/desktop/xfce/addon/xfburn/translations.xml deleted file mode 100644 index 04959348c5..0000000000 --- a/desktop/xfce/addon/xfburn/translations.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - xfburn - Basit bir CD/DVD yazma aracı - Xfburn libburnia kitaplıklarını kullanan basit bir CD/DVD yazma aracıdır. - - - diff --git a/desktop/xfce/addon/xfce4-cpufreq-plugin/actions.py b/desktop/xfce/addon/xfce4-cpufreq-plugin/actions.py deleted file mode 100644 index 703bf64a00..0000000000 --- a/desktop/xfce/addon/xfce4-cpufreq-plugin/actions.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. - -from pisi.actionsapi import autotools -from pisi.actionsapi import get -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure() - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") - diff --git a/desktop/xfce/addon/xfce4-cpufreq-plugin/pspec.xml b/desktop/xfce/addon/xfce4-cpufreq-plugin/pspec.xml deleted file mode 100644 index 18794abb8b..0000000000 --- a/desktop/xfce/addon/xfce4-cpufreq-plugin/pspec.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - xfce4-cpufreq-plugin - http://goodies.xfce.org/projects/panel-plugins/es/xfce4-cpufreq-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - CPU Frequency plugin for Xfce4 - xfce4-cpufreq-plugin shows CPU frequency in the Xfce Panel. - http://archive.xfce.org/src/panel-plugins/xfce4-cpufreq-plugin/1.1/xfce4-cpufreq-plugin-1.1.1.tar.bz2 - - xfce4-panel-devel - xfce4-dev-tools - intltool - libxfce4ui-devel - - - - - xfce4-cpufreq-plugin - - xfce4-panel - gtk2 - cairo - gdk-pixbuf - libxfcegui4 - libxfce4util - atk - pango - fontconfig - libxfce4ui - - - /usr/libexec - /usr/lib/xfce4/panel/plugins - /usr/share/doc - /usr/share/xfce4 - /usr/share/icons - /usr/share/locale - - - - - - 2015-03-04 - 1.1.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/xfce4-cpufreq-plugin/translations.xml b/desktop/xfce/addon/xfce4-cpufreq-plugin/translations.xml deleted file mode 100644 index 85eb410325..0000000000 --- a/desktop/xfce/addon/xfce4-cpufreq-plugin/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - xfce4-cpufreq-plugin - Xfce4 için CPU frekans eklentisi - xfce4-cpufreq-plugin, Xfce panelinde CPU frekansını gösterir. - - diff --git a/desktop/xfce/addon/xfce4-screenshooter/actions.py b/desktop/xfce/addon/xfce4-screenshooter/actions.py deleted file mode 100644 index 4f2cd9fb43..0000000000 --- a/desktop/xfce/addon/xfce4-screenshooter/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. - -from pisi.actionsapi import autotools -from pisi.actionsapi import get -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure("--disable-dependency-tracking") - - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/desktop/xfce/addon/xfce4-screenshooter/pspec.xml b/desktop/xfce/addon/xfce4-screenshooter/pspec.xml deleted file mode 100644 index c11a2a7aee..0000000000 --- a/desktop/xfce/addon/xfce4-screenshooter/pspec.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - xfce4-screenshooter - http://goodies.xfce.org/projects/applications/xfce4-screenshooter - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A plugin allows you to capture the entire screen - This application allows you to capture the entire screen, the active window or a selected region. - http://archive.xfce.org/src/apps/xfce4-screenshooter/1.8/xfce4-screenshooter-1.8.2.tar.bz2 - - intltool - xfce4-panel-devel - libxfce4ui-devel - libsoup-devel - exo-devel - - - - - - xfce4-screenshooter - - exo - gtk2 - cairo - glib2 - libX11 - libXext - libsoup - libxml2 - libXfixes - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /etc - /usr/bin - /usr/libexec - /usr/include - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - - - - 2015-03-05 - 1.8.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/xfce4-screenshooter/translations.xml b/desktop/xfce/addon/xfce4-screenshooter/translations.xml deleted file mode 100644 index 1e7449ed3d..0000000000 --- a/desktop/xfce/addon/xfce4-screenshooter/translations.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - xfce4-screenshooter - Ekran görüntüsü alma eklentisi - xfce4-screenshooter ekranın bir kısmının, tamamının ya da sadece aktif pencerenin ekran görüntüsünü almanızı sağlar. - - - diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/actions.py b/desktop/xfce/addon/xfce4-whiskermenu-plugin/actions.py deleted file mode 100644 index 868abe97cd..0000000000 --- a/desktop/xfce/addon/xfce4-whiskermenu-plugin/actions.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - cmaketools.configure("-DCMAKE_BUILD_TYPE=release \ - -DCMAKE_INSTALL_LIBDIR=lib", installPrefix="/usr") - -def build(): - cmaketools.make() - -def install(): - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("ChangeLog", "COPYING", "NEWS", "README") \ No newline at end of file diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/scalable.svg b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/scalable.svg deleted file mode 100644 index e7cb0a0420..0000000000 --- a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/scalable.svg +++ /dev/null @@ -1,668 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu128.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu128.png deleted file mode 100644 index b4f9f1c6de..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu128.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu16.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu16.png deleted file mode 100644 index a041cffe25..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu16.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu22.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu22.png deleted file mode 100644 index c1e2960ef5..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu22.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu24.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu24.png deleted file mode 100644 index 859583bfa6..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu24.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu256.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu256.png deleted file mode 100644 index 82374628f7..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu256.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu32.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu32.png deleted file mode 100644 index 0856454e6b..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu32.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu48.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu48.png deleted file mode 100644 index 179a56272e..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu48.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu64.png b/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu64.png deleted file mode 100644 index d67019aa9a..0000000000 Binary files a/desktop/xfce/addon/xfce4-whiskermenu-plugin/files/xfce4-whiskermenu64.png and /dev/null differ diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/pspec.xml b/desktop/xfce/addon/xfce4-whiskermenu-plugin/pspec.xml deleted file mode 100644 index 5e0c163b1b..0000000000 --- a/desktop/xfce/addon/xfce4-whiskermenu-plugin/pspec.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - xfce4-whiskermenu-plugin - http://gottcode.org/xfce4-whiskermenu-plugin/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app - Alternate Xfce menu - Whisker Menu is an alternate application launcher for Xfce. - http://gottcode.org/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-1.5.0-src.tar.bz2 - - exo-devel - gtk2-devel - cairo-devel - garcon-devel - xfconf-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - cmake - intltool - - - - - xfce4-whiskermenu-plugin - - exo - gtk2 - cairo - garcon - gdk-pixbuf - xfconf - libxfce4ui - xfce4-panel - libxfce4util - - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/locale - /usr/share/xfce4/panel/plugins/ - - - scalable.svg - xfce4-whiskermenu16.png - xfce4-whiskermenu22.png - xfce4-whiskermenu24.png - xfce4-whiskermenu32.png - xfce4-whiskermenu48.png - xfce4-whiskermenu64.png - xfce4-whiskermenu128.png - xfce4-whiskermenu256.png - - - - - - 2015-03-02 - 1.5.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/xfce4-whiskermenu-plugin/translations.xml b/desktop/xfce/addon/xfce4-whiskermenu-plugin/translations.xml deleted file mode 100644 index fa22569483..0000000000 --- a/desktop/xfce/addon/xfce4-whiskermenu-plugin/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - xfce-whiskermenu-plugin - Alternatif Xfce menüsü - Whiskermenu Xfce masaüstü ortamı için alternatif uygulama başlatıcıdır. - - diff --git a/desktop/xfce/addon/xfwm4-themes/actions.py b/desktop/xfce/addon/xfwm4-themes/actions.py deleted file mode 100644 index 7b904a5ca0..0000000000 --- a/desktop/xfce/addon/xfwm4-themes/actions.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure() - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.dodoc("TODO", "README", "NEWS", "ChangeLog", "AUTHORS") diff --git a/desktop/xfce/addon/xfwm4-themes/pspec.xml b/desktop/xfce/addon/xfwm4-themes/pspec.xml deleted file mode 100644 index 11c0ea7877..0000000000 --- a/desktop/xfce/addon/xfwm4-themes/pspec.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - xfwm4-themes - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - data - Xfce window manager themes - Xfce4-themes is a set of additional themes for the Xfwm window manager. - http://archive.xfce.org/src/art/xfwm4-themes/4.10/xfwm4-themes-4.10.0.tar.bz2 - - - - xfwm4-themes - - xfwm4 - - - /usr/share - /usr/share/doc - - - - - - 2015-03-04 - 4.10.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/addon/xfwm4-themes/translations.xml b/desktop/xfce/addon/xfwm4-themes/translations.xml deleted file mode 100644 index 83936e2a3d..0000000000 --- a/desktop/xfce/addon/xfwm4-themes/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - xfwm4-themes - Xfwm pencere yöneticisi temaları - Bu paket, Xfce masaüstü yönetici pencereleri için ek temalar içerir. - - diff --git a/desktop/xfce/base/Terminal/actions.py b/desktop/xfce/base/Terminal/actions.py deleted file mode 100644 index f6add04d24..0000000000 --- a/desktop/xfce/base/Terminal/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "HACKING", "NEWS", "README", "THANKS", "TODO") diff --git a/desktop/xfce/base/Terminal/pspec.xml b/desktop/xfce/base/Terminal/pspec.xml deleted file mode 100644 index 64f394aa23..0000000000 --- a/desktop/xfce/base/Terminal/pspec.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - Terminal - http://goodies.xfce.org/projects/applications/terminal - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - terminal - app:gui - Terminal for Xfce - Terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more. - http://archive.xfce.org/src/apps/xfce4-terminal/0.6/xfce4-terminal-0.6.3.tar.bz2 - - icon-theme-hicolor - libxfce4ui-devel - vte-devel - intltool - - - - - Terminal - - vte - atk - gtk2 - pango - libxfce4ui - libxfce4util - gdk-pixbuf - - - - /etc - /usr/bin - /usr/libexec - /usr/share/doc - /usr/share - /usr/share/pixmaps - /usr/share/icons - /usr/share/applications - /usr/share/Terminal/colorschemes - /usr/share/locale - /usr/share/man - /usr/share/gnome-control-center - - - - - - 2015-03-04 - 0.6.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/Terminal/translations.xml b/desktop/xfce/base/Terminal/translations.xml deleted file mode 100644 index 94ce99b979..0000000000 --- a/desktop/xfce/base/Terminal/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - Terminal - Xfce için uçbirim öykünücüsü - Terminal çağdaş, hafif ve az bellek harcayan; sekmeli ve çoklu pencereyi destekleyen, Xfce masaüstü ortamı için yazılmış bir uçbirim öykünücüsüdür. Renkler, görünüm, kısayol tuşları ve daha fazlası için kişiselleştirmeye izin verir. - - diff --git a/desktop/xfce/base/Thunar/actions.py b/desktop/xfce/base/Thunar/actions.py deleted file mode 100644 index d14d4da17f..0000000000 --- a/desktop/xfce/base/Thunar/actions.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --enable-gio-unix \ - --enable-dbus \ - --enable-startup-notification \ - --enable-gudev \ - --enable-notifications \ - --enable-exif \ - --enable-pcre \ - --disable-debug") - - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "FAQ", "HACKING", "NEWS", "README", "THANKS", "TODO") diff --git a/desktop/xfce/base/Thunar/files/f4-open-panel.patch b/desktop/xfce/base/Thunar/files/f4-open-panel.patch deleted file mode 100644 index f19e14ae07..0000000000 --- a/desktop/xfce/base/Thunar/files/f4-open-panel.patch +++ /dev/null @@ -1,93 +0,0 @@ ---- Thunar-1.6.3.orig/thunar/thunar-window.c 2013-05-05 19:37:23.000000000 +0300 -+++ Thunar-1.6.3/thunar/thunar-window.c 2014-02-03 00:01:12.216902722 +0200 -@@ -64,7 +64,8 @@ - - #include - -- -+#include -+#include - - /* Property identifiers */ - enum -@@ -79,6 +80,7 @@ - /* Signal identifiers */ - enum - { -+ OPEN_TERMHERE, - BACK, - RELOAD, - TOGGLE_SIDEPANE, -@@ -102,6 +104,7 @@ - guint prop_id, - const GValue *value, - GParamSpec *pspec); -+static gboolean thunar_window_open_term (ThunarWindow *window); - static gboolean thunar_window_back (ThunarWindow *window); - static gboolean thunar_window_reload (ThunarWindow *window); - static gboolean thunar_window_toggle_sidepane (ThunarWindow *window); -@@ -255,6 +258,7 @@ - GtkWindowClass __parent__; - - /* internal action signals */ -+ gboolean (*open_term) (ThunarWindow *window); - gboolean (*back) (ThunarWindow *window); - gboolean (*reload) (ThunarWindow *window); - gboolean (*toggle_sidepane) (ThunarWindow *window); -@@ -395,6 +399,21 @@ - G_DEFINE_TYPE_WITH_CODE (ThunarWindow, thunar_window, GTK_TYPE_WINDOW, - G_IMPLEMENT_INTERFACE (THUNAR_TYPE_BROWSER, NULL)) - -+static gboolean thunar_window_open_term(ThunarWindow *window) { -+ -+ char *argv[6] = { -+ "exo-open", -+ "--launch", -+ "TerminalEmulator", -+ "--working-directory" -+ }; -+ -+ GFile *file = thunar_file_get_file (window->current_directory); -+ argv[4] = g_file_get_path(file); -+ argv[5] = NULL; -+ -+ return g_spawn_async (NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL); -+} - - - static void -@@ -416,6 +435,8 @@ - gtkwidget_class->unrealize = thunar_window_unrealize; - gtkwidget_class->configure_event = thunar_window_configure_event; - -+ -+ klass->open_term = thunar_window_open_term; - klass->back = thunar_window_back; - klass->reload = thunar_window_reload; - klass->toggle_sidepane = thunar_window_toggle_sidepane; -@@ -481,6 +502,17 @@ - THUNAR_TYPE_ZOOM_LEVEL, - THUNAR_ZOOM_LEVEL_NORMAL, - EXO_PARAM_READWRITE)); -+ -+ window_signals[OPEN_TERMHERE] = -+ g_signal_new (I_("open_term"), -+ G_TYPE_FROM_CLASS (klass), -+ G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, -+ G_STRUCT_OFFSET (ThunarWindowClass, open_term), -+ g_signal_accumulator_true_handled, NULL, -+ _thunar_marshal_BOOLEAN__VOID, -+ G_TYPE_BOOLEAN, 0); -+ -+ - - /** - * ThunarWindow::back: -@@ -618,6 +650,7 @@ - - /* setup the key bindings for the windows */ - binding_set = gtk_binding_set_by_class (klass); -+ gtk_binding_entry_add_signal (binding_set, GDK_F4, 0, "open_term", 0); - gtk_binding_entry_add_signal (binding_set, GDK_BackSpace, 0, "back", 0); - gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, "reload", 0); - gtk_binding_entry_add_signal (binding_set, GDK_F9, 0, "toggle-sidepane", 0); diff --git a/desktop/xfce/base/Thunar/files/tr.patch b/desktop/xfce/base/Thunar/files/tr.patch deleted file mode 100644 index 9109fcce5d..0000000000 --- a/desktop/xfce/base/Thunar/files/tr.patch +++ /dev/null @@ -1,872 +0,0 @@ ---- po/tr.po.orig 2013-05-05 19:37:23.000000000 +0300 -+++ po/tr.po 2014-01-18 16:52:00.382750685 +0200 -@@ -9,20 +9,21 @@ - # Cem Ünal , 2007. - # Türker SEZER , 2007. - # Ayhan YALÇINSOY , 2010. -+# Serdar Soytetir , 2014. - msgid "" - msgstr "" - "Project-Id-Version: tr\n" - "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2012-12-05 19:56+0100\n" --"PO-Revision-Date: 2010-05-14 16:24+0300\n" --"Last-Translator: Ayhan YALÇINSOY \n" -+"PO-Revision-Date: 2014-01-18 16:52+0200\n" -+"Last-Translator: Serdar Soytetir \n" - "Language-Team: Turkish \n" - "Language: tr\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=2; plural=0;\n" --"X-Generator: Lokalize 1.0\n" -+"X-Generator: Lokalize 1.5\n" - - #: ../thunar/main.c:62 - msgid "Open the bulk rename dialog" -@@ -652,7 +653,7 @@ - - #: ../thunar/thunar-dialogs.c:445 - msgid "Copy _Anyway" --msgstr "" -+msgstr "Yine de _Kopyala" - - #: ../thunar/thunar-dialogs.c:468 - msgid "_Cancel" -@@ -737,15 +738,16 @@ - "The desktop file \"%s\" is in an insecure location and not marked as " - "executable. If you do not trust this program, click Cancel." - msgstr "" -+"\"%s\" desktop dosyası güvenli olmayan bir konumda ve çalıştırılabilir olarak " -+"işaretlenmiş. Eğer bu uygulamaya güvenmiyorsanız İptal'e tıklayın." - - #: ../thunar/thunar-dialogs.c:777 - msgid "_Launch Anyway" --msgstr "" -+msgstr "_Yine de Çalıştır" - - #: ../thunar/thunar-dialogs.c:779 --#, fuzzy - msgid "Mark _Executable" --msgstr "Ç_alıştır" -+msgstr "Ç_alıştırılabilir Olarak İşaretle" - - #: ../thunar/thunar-dnd.c:72 - msgid "_Copy here" -@@ -794,7 +796,7 @@ - - #: ../thunar/thunar-enum-types.c:95 - msgid "MIME Type" --msgstr "MIME Türü" -+msgstr "MIME Tipi" - - #: ../thunar/thunar-enum-types.c:96 ../thunar/thunar-renamer-dialog.c:420 - #: ../thunarx/thunarx-renamer.c:145 -@@ -845,9 +847,8 @@ - - #. if the .desktop file is not secure, ask user what to do - #: ../thunar/thunar-file.c:1450 --#, fuzzy - msgid "Untrusted application launcher" --msgstr "Hiçbir uygulama seçilmedi" -+msgstr "Güvenilmeyen uygulama çalıştırıcı" - - #: ../thunar/thunar-file.c:1475 - #, c-format -@@ -857,7 +858,7 @@ - #. if the .desktop file is not secure, ask user what to do - #: ../thunar/thunar-file.c:1484 - msgid "Untrusted link launcher" --msgstr "" -+msgstr "Güvenilmeyen bağlantı çalıştırıcı" - - #: ../thunar/thunar-file.c:1500 - #, c-format -@@ -872,18 +873,18 @@ - #: ../thunar/thunar-gio-extensions.c:317 - #, c-format - msgid "%s on %s" --msgstr "" -+msgstr "%s , %s üzerinde" - - #. free disk space string - #: ../thunar/thunar-gio-extensions.c:427 - #, c-format - msgid "%s of %s (%d%% used)" --msgstr "" -+msgstr "%s, toplam %s (%d%% kullanılıyor))" - - #. extend history tooltip with function of the button - #: ../thunar/thunar-history-action.c:372 - msgid "Right-click or pull down to show history" --msgstr "" -+msgstr "Geçmişi göstermek için sağ tıklayın ya da menüyü açın" - - #. create the "back" action - #: ../thunar/thunar-history.c:163 -@@ -905,12 +906,12 @@ - - #: ../thunar/thunar-history.c:352 - msgid "The item will be removed from the history" --msgstr "" -+msgstr "Bu öge geçmişten silinecek" - - #: ../thunar/thunar-history.c:355 --#, fuzzy, c-format -+#, c-format - msgid "Could not find \"%s\"" --msgstr "\"%s\" ögesi geri getirilemedi" -+msgstr "\"%s\" ögesi bulunamadı" - - #: ../thunar/thunar-icon-view.c:164 - msgid "Icon based directory listing" -@@ -938,7 +939,7 @@ - #. tell the user that we're preparing to unlink the files - #: ../thunar/thunar-io-jobs.c:423 - msgid "Preparing..." --msgstr "Yapılıyor..." -+msgstr "Hazırlanıyor..." - - #: ../thunar/thunar-io-jobs.c:496 - #, c-format -@@ -1002,14 +1003,14 @@ - - #. Fallback copy/link name for n >= 4 - #: ../thunar/thunar-io-jobs-util.c:42 --#, fuzzy, c-format -+#, c-format - msgid "%uth copy of %s" --msgstr "%s üçüncü kopyası" -+msgstr "%s ögesinin %u. kopyası" - - #: ../thunar/thunar-io-jobs-util.c:42 --#, fuzzy, c-format -+#, c-format - msgid "%uth link to %s" --msgstr "%s konumuna üçüncü bağlantı" -+msgstr "%s ögesine %u. bağlantı" - - #: ../thunar/thunar-job.c:254 - #, c-format -@@ -1039,6 +1040,8 @@ - "There is not enough space on the destination. Try to remove files to make " - "space." - msgstr "" -+"Hedefte yeterince boş alan yok. Alan açmak için bazı dosyaları silmeyi " -+"deneyin." - - #. * CASE 1: nothing selected or atleast one directory in the selection - #. ** -@@ -1055,16 +1058,14 @@ - #. append the "Open in New Tab" menu action - #: ../thunar/thunar-launcher.c:177 ../thunar/thunar-launcher.c:858 - #: ../thunar/thunar-tree-view.c:1117 --#, fuzzy - msgid "Open in New _Tab" --msgstr "Yeni Pencerede Aç" -+msgstr "Yeni _Sekmede Aç" - - #. append the "Open in New Window" menu action - #: ../thunar/thunar-launcher.c:178 ../thunar/thunar-launcher.c:852 - #: ../thunar/thunar-tree-view.c:1124 --#, fuzzy - msgid "Open in New _Window" --msgstr "Yeni Pencerede Aç" -+msgstr "Yeni _Pencerede Aç" - - #: ../thunar/thunar-launcher.c:179 ../thunar/thunar-launcher.c:181 - msgid "Open With Other _Application..." -@@ -1108,11 +1109,11 @@ - - #. turn "Open New Window" into "Open in n New Windows" - #: ../thunar/thunar-launcher.c:825 --#, fuzzy, c-format -+#, c-format - msgid "Open in %d New _Window" - msgid_plural "Open in %d New _Windows" --msgstr[0] "%d adet Yeni Pencere içerisinde aç" --msgstr[1] "%d Yeni Pencere içinde Aç" -+msgstr[0] "%d Yeni _Pencerede Aç" -+msgstr[1] "%d Yeni _Pencerede Aç" - - #: ../thunar/thunar-launcher.c:826 - #, c-format -@@ -1123,33 +1124,31 @@ - - #. turn "Open in New Tab" into "Open in x New Tabs" - #: ../thunar/thunar-launcher.c:837 --#, fuzzy, c-format -+#, c-format - msgid "Open in %d New _Tab" - msgid_plural "Open in %d New _Tabs" --msgstr[0] "%d adet Yeni Pencere içerisinde aç" --msgstr[1] "%d Yeni Pencere içinde Aç" -+msgstr[0] "%d Yeni Sekmede _Aç" -+msgstr[1] "%d Yeni Sekmede _Aç" - - #: ../thunar/thunar-launcher.c:838 --#, fuzzy, c-format -+#, c-format - msgid "Open the selected directory in %d new tab" - msgid_plural "Open the selected directories in %d new tabs" --msgstr[0] "Seçilen dizini %d yeni pencere içerisinde aç" --msgstr[1] "Seçilen dizinleri %d yeni pencere içerisinde aç" -+msgstr[0] "Seçilen dizini %d yeni sekmede içerisinde aç" -+msgstr[1] "Seçilen dizini %d yeni sekmede içerisinde aç" - - #: ../thunar/thunar-launcher.c:853 - msgid "Open the selected directory in a new window" - msgstr "Seçilen dizini yeni pencerede aç" - - #: ../thunar/thunar-launcher.c:859 --#, fuzzy - msgid "Open the selected directory in a new tab" --msgstr "Seçilen dizini yeni pencerede aç" -+msgstr "Seçilen dizini yeni sekmede aç" - - #. set tooltip that makes sence - #: ../thunar/thunar-launcher.c:863 --#, fuzzy - msgid "Open the selected directory" --msgstr "Seçilen dosyayı aç" -+msgstr "Seçilen dizini aç" - - #: ../thunar/thunar-launcher.c:884 - msgid "Open the selected file" -@@ -1244,7 +1243,7 @@ - msgid "%d item" - msgid_plural "%d items" - msgstr[0] "%d öge" --msgstr[1] "%d ögeleri" -+msgstr[1] "%d öge" - - #: ../thunar/thunar-list-model.c:2224 - #, c-format -@@ -1274,7 +1273,7 @@ - - #. I18N, first %s is the display name of the file, second the content type - #: ../thunar/thunar-list-model.c:2255 --#, fuzzy, c-format -+#, c-format - msgid "\"%s\" %s" - msgstr "\"%s\" %s" - -@@ -1288,11 +1287,11 @@ - - #. item count if there are also folders in the selection - #: ../thunar/thunar-list-model.c:2302 --#, fuzzy, c-format -+#, c-format - msgid "%d other item selected (%s)" - msgid_plural "%d other items selected (%s)" --msgstr[0] "%d öge seçildi (%s)" --msgstr[1] "%d ögeleri seçildi (%s)" -+msgstr[0] "%d başka öge seçildi (%s)" -+msgstr[1] "%d başka öge seçildi (%s)" - - #. only non-folders are selected - #: ../thunar/thunar-list-model.c:2309 -@@ -1303,11 +1302,11 @@ - msgstr[1] "%d ögeleri seçildi (%s)" - - #: ../thunar/thunar-list-model.c:2323 --#, fuzzy, c-format -+#, c-format - msgid "%d folder selected" - msgid_plural "%d folders selected" --msgstr[0] "%d öge seçildi" --msgstr[1] "%d ögeleri seçildi" -+msgstr[0] "%d dizin seçildi" -+msgstr[1] "%d dizin seçildi" - - #. This is marked for translation in case a localizer - #. * needs to change ", " to something else. The comma -@@ -1316,7 +1315,7 @@ - #: ../thunar/thunar-list-model.c:2342 - #, c-format - msgid "%s, %s" --msgstr "" -+msgstr "%s, %s" - - #. append the "Open in New Window" menu action - #: ../thunar/thunar-location-buttons.c:169 -@@ -1450,23 +1449,20 @@ - msgstr "Sahibi:" - - #: ../thunar/thunar-permissions-chooser.c:237 --#, fuzzy - msgid "_Access:" --msgstr "Erişim:" -+msgstr "_Erişim:" - - #: ../thunar/thunar-permissions-chooser.c:261 - msgid "Gro_up:" --msgstr "" -+msgstr "Gr_up:" - - #: ../thunar/thunar-permissions-chooser.c:280 --#, fuzzy - msgid "Acce_ss:" --msgstr "Erişim:" -+msgstr "_Erişim:" - - #: ../thunar/thunar-permissions-chooser.c:304 --#, fuzzy - msgid "O_thers:" --msgstr "Diğerleri:" -+msgstr "_Diğerleri:" - - #: ../thunar/thunar-permissions-chooser.c:328 - msgid "Program:" -@@ -1493,9 +1489,8 @@ - "bu dizindeki dosyalarla çalışamayabilirsiniz." - - #: ../thunar/thunar-permissions-chooser.c:382 --#, fuzzy - msgid "Correct _folder permissions..." --msgstr "Doğru dizin izinleri..." -+msgstr "Dizin _izinlerini düzelt..." - - #: ../thunar/thunar-permissions-chooser.c:383 - msgid "Click here to automatically fix the folder permissions." -@@ -1516,7 +1511,7 @@ - - #: ../thunar/thunar-permissions-chooser.c:540 - msgid "Apply recursively?" --msgstr "Öz yinelemeli uygula?" -+msgstr "Öz yinelemeli uygulansın mı?" - - #: ../thunar/thunar-permissions-chooser.c:546 - msgid "" -@@ -1541,9 +1536,8 @@ - "kullanabilirsiniz." - - #: ../thunar/thunar-permissions-chooser.c:914 --#, fuzzy - msgid "Mixed file owners" --msgstr "Bilinmeyen dosya sahibi" -+msgstr "Karışık dosya sahipleri" - - #: ../thunar/thunar-permissions-chooser.c:914 - msgid "Unknown file owner" -@@ -1570,16 +1564,15 @@ - - #: ../thunar/thunar-permissions-chooser.c:999 - msgid "Varying (no change)" --msgstr "" -+msgstr "Değişken (değişiklik yok))" - - #: ../thunar/thunar-permissions-chooser.c:1131 - msgid "Correct folder permissions automatically?" - msgstr "Dizin izinlerini otomatik olarak düzelt?" - - #: ../thunar/thunar-permissions-chooser.c:1133 --#, fuzzy - msgid "Correct _folder permissions" --msgstr "Dizin izinlerini düzelt" -+msgstr "Dizin _izinlerini düzelt" - - #: ../thunar/thunar-permissions-chooser.c:1135 - msgid "" -@@ -1627,21 +1620,20 @@ - msgstr "Önceki Aktif Görünüm" - - #: ../thunar/thunar-preferences-dialog.c:281 --#, fuzzy - msgid "Show thumbnails:" --msgstr "Küçük _resimleri göster" -+msgstr "Küçük resimleri göster:" - - #: ../thunar/thunar-preferences-dialog.c:287 - msgid "Never" --msgstr "" -+msgstr "Asla" - - #: ../thunar/thunar-preferences-dialog.c:288 - msgid "Local Files Only" --msgstr "" -+msgstr "Sadece Yerel Dosyalar" - - #: ../thunar/thunar-preferences-dialog.c:289 - msgid "Always" --msgstr "" -+msgstr "Her Zaman" - - #: ../thunar/thunar-preferences-dialog.c:297 - msgid "Sort _folders before files" -@@ -1697,7 +1689,7 @@ - #: ../thunar/thunar-preferences-dialog.c:391 - #: ../thunar/thunar-preferences-dialog.c:433 - msgid "Smaller" --msgstr "Küçük" -+msgstr "Daha Küçük" - - #: ../thunar/thunar-preferences-dialog.c:392 - #: ../thunar/thunar-preferences-dialog.c:434 -@@ -1717,7 +1709,7 @@ - #: ../thunar/thunar-preferences-dialog.c:395 - #: ../thunar/thunar-preferences-dialog.c:437 - msgid "Larger" --msgstr "Büyük" -+msgstr "Daha Büyük" - - #: ../thunar/thunar-preferences-dialog.c:396 - #: ../thunar/thunar-preferences-dialog.c:438 -@@ -1810,17 +1802,15 @@ - - #: ../thunar/thunar-preferences-dialog.c:557 - msgid "Middle Click" --msgstr "" -+msgstr "Orta Tıklama" - - #: ../thunar/thunar-preferences-dialog.c:567 --#, fuzzy - msgid "Open folder in new _window" --msgstr "\"%s\" ögesini yeni pencerede aç" -+msgstr "Dizini yeni _pencerede aç" - - #: ../thunar/thunar-preferences-dialog.c:572 --#, fuzzy - msgid "Open folder in new _tab" --msgstr "Dizini Thunar'la Aç" -+msgstr "Dizini yeni _sekmede aç" - - #. - #. Advanced -@@ -1904,9 +1894,8 @@ - msgstr "_Ad:" - - #: ../thunar/thunar-properties-dialog.c:291 --#, fuzzy - msgid "Names:" --msgstr "İsim:" -+msgstr "İsimler:" - - #. - #. Second box (kind, open with, link target) -@@ -1916,18 +1905,16 @@ - msgstr "Tür:" - - #: ../thunar/thunar-properties-dialog.c:332 --#, fuzzy - msgid "_Open With:" --msgstr "Birlikte Aç:" -+msgstr "_Birlikte Aç:" - - #: ../thunar/thunar-properties-dialog.c:346 - msgid "Link Target:" - msgstr "Bağlantı Hedefi:" - - #: ../thunar/thunar-properties-dialog.c:378 --#, fuzzy - msgid "Location:" --msgstr "_Konum:" -+msgstr "Konum:" - - #. - #. Third box (deleted, modified, accessed) -@@ -1984,13 +1971,12 @@ - - #. update the properties dialog title - #: ../thunar/thunar-properties-dialog.c:1103 --#, fuzzy - msgid "Properties" --msgstr "Özel_likler..." -+msgstr "Özellikler" - - #: ../thunar/thunar-properties-dialog.c:1203 - msgid "mixed" --msgstr "" -+msgstr "karışık" - - #: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:335 - msgid "_File" -@@ -2050,7 +2036,7 @@ - - #: ../thunar/thunar-renamer-dialog.c:438 - msgid "New Name" --msgstr "Yeni Ad" -+msgstr "Yeni İsim" - - #: ../thunar/thunar-renamer-dialog.c:501 - msgid "Click here to view the documentation for the selected rename operation." -@@ -2163,28 +2149,27 @@ - msgstr "Çöp boş" - - #: ../thunar/thunar-shortcuts-model.c:604 --#, fuzzy, c-format -+#, c-format - msgid "Trash contains %d file" - msgid_plural "Trash contains %d files" --msgstr[0] "Çöp dolu" --msgstr[1] "Çöp dolu" -+msgstr[0] "Çöpte %d dosya var" -+msgstr[1] "Çöpte %d dosya var" - - #: ../thunar/thunar-shortcuts-model.c:833 - msgid "DEVICES" --msgstr "" -+msgstr "AYGITLAR" - - #: ../thunar/thunar-shortcuts-model.c:879 - msgid "NETWORK" --msgstr "" -+msgstr "AĞ" - - #: ../thunar/thunar-shortcuts-model.c:885 --#, fuzzy - msgid "Browse Network" --msgstr "Ağı tara" -+msgstr "Ağı Tara" - - #: ../thunar/thunar-shortcuts-model.c:906 - msgid "PLACES" --msgstr "" -+msgstr "KONUMLAR" - - #: ../thunar/thunar-shortcuts-pane.c:393 - msgid "Side Pane (Create Shortcut)" -@@ -2200,21 +2185,18 @@ - - #. append the "Open in New Tab" menu action - #: ../thunar/thunar-shortcuts-view.c:1087 --#, fuzzy - msgid "Open in New Tab" --msgstr "Yeni Pencerede Aç" -+msgstr "Yeni Sekmede Aç" - - #. append the "Mount" item - #. append the "Mount" menu action - #: ../thunar/thunar-shortcuts-view.c:1107 ../thunar/thunar-tree-view.c:1140 --#, fuzzy - msgid "_Mount" - msgstr "_Bağla" - - #. append the "Unmount" item - #. append the "Unmount" menu action - #: ../thunar/thunar-shortcuts-view.c:1113 ../thunar/thunar-tree-view.c:1146 --#, fuzzy - msgid "_Unmount" - msgstr "_Ayır" - -@@ -2222,19 +2204,18 @@ - #. append the "Eject" menu action - #: ../thunar/thunar-shortcuts-view.c:1119 ../thunar/thunar-tree-view.c:1152 - msgid "_Eject" --msgstr "" -+msgstr "_Çıkart" - - #. append the "Disconnect" item - #: ../thunar/thunar-shortcuts-view.c:1136 --#, fuzzy - msgid "Create _Shortcut" --msgstr "Kısa Yolu Yeniden A_dlandır" -+msgstr "Kısayol _Oluştur" - - #. append the "Disconnect" item - #. append the "Mount Volume" menu action - #: ../thunar/thunar-shortcuts-view.c:1157 ../thunar/thunar-tree-view.c:1161 - msgid "Disconn_ect" --msgstr "" -+msgstr "Bağlantıyı _Kes" - - #: ../thunar/thunar-shortcuts-view.c:1237 - msgid "_Remove Shortcut" -@@ -2292,15 +2273,13 @@ - #. TRANSLATORS: this is shows if during the deep count size - #. * directories were not accessible - #: ../thunar/thunar-size-label.c:385 --#, fuzzy - msgid "(some contents unreadable)" --msgstr "İçeriği daha detaylı göster" -+msgstr "(içeriğin bir kısmı okunabilir değil)" - - #. nothing was readable, so permission was denied - #: ../thunar/thunar-size-label.c:396 --#, fuzzy - msgid "Permission denied" --msgstr "İzinler" -+msgstr "İzin verilmedi" - - #: ../thunar/thunar-standard-view.c:386 - msgid "Folder Context Menu" -@@ -2332,9 +2311,8 @@ - - #. append the "Move to Tash" menu action - #: ../thunar/thunar-standard-view.c:392 ../thunar/thunar-tree-view.c:1265 --#, fuzzy - msgid "Mo_ve to Trash" --msgstr "Çöpü _Boşalt" -+msgstr "Çöp _Kutusuna Taşı" - - #. append the "Delete" menu action - #: ../thunar/thunar-standard-view.c:393 ../thunar/thunar-tree-view.c:1277 -@@ -2367,11 +2345,11 @@ - - #: ../thunar/thunar-standard-view.c:397 - msgid "_Invert Selection" --msgstr "" -+msgstr "_Seçimi Tersine Çevir" - - #: ../thunar/thunar-standard-view.c:397 - msgid "Select all and only the items that are not currently selected" --msgstr "" -+msgstr "Şu anda seçili olan ögeler dışındaki tüm ögeleri seç" - - #: ../thunar/thunar-standard-view.c:398 - msgid "Du_plicate" -@@ -2424,7 +2402,7 @@ - - #: ../thunar/thunar-standard-view.c:2572 - msgid "_Pattern:" --msgstr "_Kalıp:" -+msgstr "_Desen:" - - #. tell the user that the file name provided by the X Direct Save source is invalid - #: ../thunar/thunar-standard-view.c:3078 -@@ -2455,18 +2433,16 @@ - msgstr[1] "Seçilen dosyaları yapıştır komutu ile kopyalanacak şekilde hazırla" - - #: ../thunar/thunar-standard-view.c:4164 --#, fuzzy - msgid "Move the selected file to the Trash" - msgid_plural "Move the selected files to the Trash" --msgstr[0] "Seçilen dosyayı \"%s\" konumuna gönder" --msgstr[1] "Seçilen dosyaları \"%s\" konumuna gönder" -+msgstr[0] "Seçilen dosyayı Çöp Kutusuna taşı" -+msgstr[1] "Seçilen dosyaları Çöp Kutusuna taşı" - - #: ../thunar/thunar-standard-view.c:4172 --#, fuzzy - msgid "Permanently delete the selected file" - msgid_plural "Permanently delete the selected files" --msgstr[0] "Seçilen dosyayı sil" --msgstr[1] "Seçilen dosyaları sil" -+msgstr[0] "Seçilen dosyayı kalıcı olarak sil" -+msgstr[1] "Seçilen dosyaları kalıcı olarak sil" - - #: ../thunar/thunar-standard-view.c:4186 - msgid "Duplicate the selected file" -@@ -2503,11 +2479,12 @@ - "Error while copying to \"%s\": %s more space is required to copy to the " - "destination" - msgstr "" -+"\"%s\" kopyalanamadı: Hedefe kopyalayabilmek için %s alan daha gerekiyor" - - #: ../thunar/thunar-transfer-job.c:744 - #, c-format - msgid "Error while copying to \"%s\": The destination is read-only" --msgstr "" -+msgstr "\"%s\" kopyalanamadı: Hedef salt-okunur" - - #: ../thunar/thunar-transfer-job.c:787 - msgid "Collecting files..." -@@ -2546,30 +2523,30 @@ - msgstr "\"%s\" doğrudan taşınamadı. Kopyalamak için dosyalar toplanıyor..." - - #: ../thunar/thunar-transfer-job.c:1084 --#, fuzzy, c-format -+#, c-format - msgid "%s of %s" --msgstr "%s kopyası" -+msgstr "%s - %s" - - #: ../thunar/thunar-transfer-job.c:1104 --#, fuzzy, c-format -+#, c-format - msgid "%lu hour remaining (%s/sec)" - msgid_plural "%lu hours remaining (%s/sec)" --msgstr[0] "%lu saat kaldı" --msgstr[1] "%lu saat kaldı" -+msgstr[0] "%lu saat kaldı (%s/sn)" -+msgstr[1] "%lu saat kaldı (%s/sn)" - - #: ../thunar/thunar-transfer-job.c:1112 --#, fuzzy, c-format -+#, c-format - msgid "%lu minute remaining (%s/sec)" - msgid_plural "%lu minutes remaining (%s/sec)" --msgstr[0] "%lu dakika kaldı" --msgstr[1] "%lu dakika kaldı" -+msgstr[0] "%lu dakika kaldı (%s/sn)" -+msgstr[1] "%lu dakika kaldı (%s/sn)" - - #: ../thunar/thunar-transfer-job.c:1119 --#, fuzzy, c-format -+#, c-format - msgid "%lu second remaining (%s/sec)" - msgid_plural "%lu seconds remaining (%s/sec)" --msgstr[0] "%lu saniye kaldı" --msgstr[1] "%lu saniye kaldı" -+msgstr[0] "%lu saniye kaldı (%s/sn)" -+msgstr[1] "%lu saniye kaldı (%s/sn)" - - #: ../thunar/thunar-trash-action.c:105 - msgid "T_rash" -@@ -2638,19 +2615,16 @@ - msgstr "%x, %X" - - #: ../thunar/thunar-window.c:336 --#, fuzzy - msgid "New _Tab" --msgstr "Yeni Ad" -+msgstr "Yeni _Sekme" - - #: ../thunar/thunar-window.c:336 --#, fuzzy - msgid "Open a new tab for the displayed location" --msgstr "Görüntülenen yer için yeni Thunar penceresi aç" -+msgstr "Görüntülenen konum için yeni bir pencere aç" - - #: ../thunar/thunar-window.c:337 --#, fuzzy - msgid "New _Window" --msgstr "Yeni _Pencere Aç" -+msgstr "Ye_ni Pencere" - - #: ../thunar/thunar-window.c:337 - msgid "Open a new Thunar window for the displayed location" -@@ -2658,12 +2632,11 @@ - - #: ../thunar/thunar-window.c:340 - msgid "Detac_h Tab" --msgstr "" -+msgstr "Sekmeyi _Ayır" - - #: ../thunar/thunar-window.c:340 --#, fuzzy - msgid "Open current folder in a new window" --msgstr "\"%s\" ögesini yeni pencerede aç" -+msgstr "Geçerli dizini yeni bir pencerede aç" - - #: ../thunar/thunar-window.c:341 - msgid "Close _All Windows" -@@ -2674,19 +2647,16 @@ - msgstr "Tüm Thunar Pencerelerini K_apat" - - #: ../thunar/thunar-window.c:342 --#, fuzzy - msgid "C_lose Tab" --msgstr "Ka_pat" -+msgstr "Sekmeyi _Kapat" - - #: ../thunar/thunar-window.c:342 --#, fuzzy - msgid "Close this folder" --msgstr "Bu pencereyi kapat" -+msgstr "Bu dizini kapat" - - #: ../thunar/thunar-window.c:343 --#, fuzzy - msgid "_Close Window" --msgstr "Tüm Pencereleri _Kapat" -+msgstr "Pencereyi _Kapat" - - #: ../thunar/thunar-window.c:343 - msgid "Close this window" -@@ -2773,14 +2743,12 @@ - msgstr "Dosya sisteminde gezin" - - #: ../thunar/thunar-window.c:358 --#, fuzzy - msgid "B_rowse Network" --msgstr "Ağı tara" -+msgstr "Ağı _Tara" - - #: ../thunar/thunar-window.c:358 --#, fuzzy - msgid "Browse local network connections" --msgstr "Ağı tara" -+msgstr "Yerel ağa gözat" - - #: ../thunar/thunar-window.c:359 - msgid "T_emplates" -@@ -2864,12 +2832,11 @@ - - #: ../thunar/thunar-window.c:374 - msgid "_Menubar" --msgstr "" -+msgstr "_Menü Çubuğu" - - #: ../thunar/thunar-window.c:374 --#, fuzzy - msgid "Change the visibility of this window's menubar" --msgstr "Bu pencerenin durum çubuğunun görünürlüğünü değiştir" -+msgstr "Pencerenin menü çubuğunun görünürlüğünü değiştir" - - #. - #. * add view options -@@ -2906,14 +2873,13 @@ - "verebilirsiniz." - - #: ../thunar/thunar-window.c:1684 --#, fuzzy - msgid "Close tab" --msgstr "Ka_pat" -+msgstr "Sekmeyi kapat" - - #: ../thunar/thunar-window.c:1947 --#, fuzzy, c-format -+#, c-format - msgid "Open the location \"%s\"" --msgstr "Konum Aç" -+msgstr "\"%s\" konumunu aç" - - #: ../thunar/thunar-window.c:2145 - #, c-format -@@ -2927,7 +2893,7 @@ - #: ../thunar/thunar-window.c:2793 - #, c-format - msgid "The directory \"%s\" does not exist. Do you want to create it?" --msgstr "" -+msgstr "\"%s\" dizini yok. Oluşturmak ister misiniz?" - - #. display the "About Templates" dialog - #: ../thunar/thunar-window.c:2875 -@@ -3042,12 +3008,11 @@ - - #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:197 - msgid "Working Directory:" --msgstr "" -+msgstr "Çalışma Dizini:" - - #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:204 --#, fuzzy - msgid "The working directory for the program." --msgstr "Çalışma dizini tam bir dizin olmalıdır" -+msgstr "Uygulama için bir çalışma dizini." - - #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:219 - msgid "URL:" -@@ -3222,7 +3187,7 @@ - - #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:96 - msgid "Sentence case" --msgstr "" -+msgstr "Cümle şartı" - - #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:102 - msgid "Insert" -@@ -3700,7 +3665,6 @@ - msgstr "Di_ğer Dosyalar" - - #: ../plugins/thunar-uca/thunar-uca-editor.c:445 --#, fuzzy - msgid "" - "This page lists the conditions under which the\n" - "action will appear in the file managers context\n" -@@ -3713,10 +3677,10 @@ - "action should only appear for certain kinds of\n" - "files." - msgstr "" --"Bu sayfa dosya yöneticisi sağ tuş menüsünde\n" -+"Bu sayfa, dosya yöneticisi sağ tuş menüsünde\n" - "eylemlerin hangi durumlarda gösterileceğini listeler.\n" --"Dosya desenleri noktalı virgülle ayrılmış basit dosya\n" --"desenlerinin bir listesi olarak tanımlanmıştır.\n" -+"Dosya desenleri noktalı virgülle ayrılmış ve basit dosya\n" -+"desenlerinin bir listesi olarak tanımlanmıştır (*.txt;*.doc gibi).\n" - "Bir eylemin sağ tuş menüsünde görünmesi için en az bir desenin\n" - "dosya veya dizin adı ile eşleşmesi gerekir.\n" - "Ayrıca sadece bir belli dosya türlerinde gösterilecek\n" diff --git a/desktop/xfce/base/Thunar/pspec.xml b/desktop/xfce/base/Thunar/pspec.xml deleted file mode 100644 index 96cf29f2a3..0000000000 --- a/desktop/xfce/base/Thunar/pspec.xml +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - Thunar - http://thunar.xfce.org - - Alper Tekinalp - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - Thunar - app:gui - Xfce file manager - Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant. - mirrors://xfce/src/xfce/thunar/1.6/Thunar-1.6.10.tar.bz2 - - dbus-glib-devel - desktop-file-utils - libICE-devel - libxfce4ui-devel - exo-devel - startup-notification-devel - libnotify-devel - xfce4-panel-devel - libexif-devel - intltool - gtk-doc - libxslt-devel - libpcre-devel - freetype-devel - libpng-devel - gettext - - - f4-open-panel.patch - - - - - Thunar - - gtk2 - pango - cairo - glib2 - gdk-pixbuf - atk - libxfce4util - exo - dbus - libnotify - libxfce4ui - xfce4-panel - libexif - libpcre - dbus-glib - xfconf - polkit-gnome - - - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share/icons - /usr/share/pixmaps - /usr/share/dbus-1 - /usr/share/applications - /usr/share/appdata - /usr/share/xfce4 - /usr/share/Thunar - /usr/share/thumbnailers - /usr/share/polkit-1/actions/org.xfce.thunar.policy - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - - Thunar-devel - library - Thunar development files - - Thunar - gtk2-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - Thunar-docs - data:doc - Thunar reference documents - - Thunar - - - /usr/share/doc/Thunar/html - /usr/share/gtk-doc - - - - - - 2015-10-03 - 1.6.10 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/Thunar/translations.xml b/desktop/xfce/base/Thunar/translations.xml deleted file mode 100644 index 1dae96fdce..0000000000 --- a/desktop/xfce/base/Thunar/translations.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - Thunar - Xfce dosya yöneticisi - Menedżer plików dla Xfce - Thunar, baştan başa hızlı olmak ve kolay kullanım için tasarlanmıştır. Kullanıcı arayüzü temiz ve çabuk anlaşılabilir; diğer taraftan karışık ve kullanışsız hiçbir seçenek içermiyor. Thunar açılırken ve dizin çağırırken hızlıdır. Ayrıca Thunar'a yardımcı teknolojilerle de erişilebilir ve standartlara tam uyumludur. - Thunar to menedżer plików zaprojektowany jako domyślny w Xfce 4.6 oraz by był szybkim i prostym w użyciu. - - - - Thunar-devel - Thunar geliştirme dosyaları - Pliki nagłówkowe Thunar - - - - Thunar-docs - Thunar referans belgeleri - - diff --git a/desktop/xfce/base/component.xml b/desktop/xfce/base/component.xml deleted file mode 100644 index 2a282d6839..0000000000 --- a/desktop/xfce/base/component.xml +++ /dev/null @@ -1,3 +0,0 @@ - - desktop.xfce.base - diff --git a/desktop/xfce/base/exo/actions.py b/desktop/xfce/base/exo/actions.py deleted file mode 100644 index 20e9c5963d..0000000000 --- a/desktop/xfce/base/exo/actions.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-gtk-doc \ - --disable-debug") - - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "NEWS", "README", "THANKS", "TODO") diff --git a/desktop/xfce/base/exo/pspec.xml b/desktop/xfce/base/exo/pspec.xml deleted file mode 100644 index d5af51c82b..0000000000 --- a/desktop/xfce/base/exo/pspec.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - exo - http://www.xfce.org - - Ayhan Yalcinsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - library - Xfce extension library - exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development. - mirrors://xfce/src/xfce/exo/0.10/exo-0.10.7.tar.bz2 - - libxfce4ui-devel - gtk2-devel - glib2-devel - intltool - perl-URI - - - - - exo - - libxfce4ui - atk - cairo - glib2 - gtk2 - pango - libX11 - gdk-pixbuf - libxfce4util - - - /etc - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/pygtk - /usr/share/xfce4/doc - /usr/share/xfce4 - /usr/share/man - /usr/share/doc - - - - - exo-devel - Development files for exo - - exo - libxfce4util-devel - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - exo-docs - data:doc - Documentation for exo library - - exo - - - /usr/share/gtk-doc - /usr/share/doc/exo/html - - - - - - 2015-10-03 - 0.10.7 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/exo/translations.xml b/desktop/xfce/base/exo/translations.xml deleted file mode 100644 index c28870d761..0000000000 --- a/desktop/xfce/base/exo/translations.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - exo - Xfce eklenti kitaplığı - exo, os-cillation tarafından geliştirilen Xfce eklenti kitaplığıdır. Xfce masaüstü ortamını hedefleyen az kitaplıkla gelirken, exo uygulama geliştirmeyi hedefliyor. - - - - exo-devel - exo geliştirme dosyaları - - - - exo-docs - exo belgeleri - - diff --git a/desktop/xfce/base/garcon/actions.py b/desktop/xfce/base/garcon/actions.py deleted file mode 100644 index 8a9606e0a8..0000000000 --- a/desktop/xfce/base/garcon/actions.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.dodoc('AUTHORS', 'ChangeLog', 'COPYING', 'HACKING', 'NEWS', 'README', 'STATUS', 'THANKS', 'TODO') \ No newline at end of file diff --git a/desktop/xfce/base/garcon/pspec.xml b/desktop/xfce/base/garcon/pspec.xml deleted file mode 100644 index 72f7087e10..0000000000 --- a/desktop/xfce/base/garcon/pspec.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - garcon - http://xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - library - Menu library for Xfce - garcon is an implementation of the freedesktop.org menu specification replacing the former Xfce menu library libxfce4menu. It is based on GLib/GIO only and aims at covering the entire specification except for legacy menus. - http://archive.xfce.org/src/xfce/garcon/0.4/garcon-0.4.0.tar.bz2 - - glib2-devel - intltool - xfce4-dev-tools - libxfce4util-devel - gtk2-devel - libxfce4ui-devel - - - - - garcon - - atk - gtk2 - cairo - glib2 - pango - freetype - fontconfig - gdk-pixbuf - libxfce4ui - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - - - garcon-devel - garcon development files - - garcon - gtk2-devel - libxfce4ui-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - garcon-docs - garcon documentation files - - garcon - - - /usr/share/gtk-doc - - - - - - 2015-03-02 - 0.4.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/garcon/translations.xml b/desktop/xfce/base/garcon/translations.xml deleted file mode 100644 index d690b86d0c..0000000000 --- a/desktop/xfce/base/garcon/translations.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - garcon - Xfce menü kitaplığı - garcon, Xfce'nin eski menü kitaplığı olan libxfce4menu'nun freedesktop.org menü standartlarına uygun hale getirilmiş, Xfce'nin yeni menü kitaplığıdır. Sadece GLib/GIO kullanılarak yazılmıştır ve eski menüler hariç tüm özellikleri kapsamayı amaçlamaktadır. - - - - garcon-devel - garcon geliştirme dosyaları - - - - garcon-docs - garcon belgeleri - - diff --git a/desktop/xfce/base/libxfce4ui/actions.py b/desktop/xfce/base/libxfce4ui/actions.py deleted file mode 100644 index cb1bb304bb..0000000000 --- a/desktop/xfce/base/libxfce4ui/actions.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-gtk-doc \ - --enable-gladeui \ - --disable-debug \ - --with-vendor-info='Pisi Linux'") - - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall('DESTDIR=%s' % get.installDIR()) - pisitools.dodoc('NEWS', 'COPYING', 'README', 'TODO', 'ChangeLog', 'AUTHORS', 'THANKS') diff --git a/desktop/xfce/base/libxfce4ui/pspec.xml b/desktop/xfce/base/libxfce4ui/pspec.xml deleted file mode 100644 index 5005766d74..0000000000 --- a/desktop/xfce/base/libxfce4ui/pspec.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - libxfce4ui - http://xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - library - Xfce gui library - libxfce4ui is a various GTK+ widgets for Xfce desktop environment. - http://archive.xfce.org/src/xfce/libxfce4ui/4.12/libxfce4ui-4.12.1.tar.bz2 - - gobject-introspection-devel - gtk2-devel - gtk3-devel - xfconf-devel - xfce4-dev-tools - libxfce4util-devel - startup-notification-devel - intltool - - - - - libxfce4ui - - atk - gtk2 - gtk3 - cairo - glib2 - pango - libX11 - xfconf - gdk-pixbuf - libxfce4util - startup-notification - - - /etc - /usr/share - /usr/lib - /usr/libexec - /usr/share/doc - /usr/bin - /usr/share/locale - - - - - libxfce4ui-devel - - libxfce4ui - gtk2-devel - xfconf-devel - libxfce4util-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - - 2015-03-24 - 4.12.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/libxfce4ui/translations.xml b/desktop/xfce/base/libxfce4ui/translations.xml deleted file mode 100644 index a9f9223a61..0000000000 --- a/desktop/xfce/base/libxfce4ui/translations.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - libxfce4ui - Xfce arayüz kitaplığı - libxfce4ui, Xfce masaüstü ortamı için çeşitli GTK+ eklentileri içeren kitaplıktır. - - - - libxfce4ui-devel - libxfce4ui geliştirme dosyaları - - diff --git a/desktop/xfce/base/libxfce4util/actions.py b/desktop/xfce/base/libxfce4util/actions.py deleted file mode 100644 index a7afb5f858..0000000000 --- a/desktop/xfce/base/libxfce4util/actions.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --sbindir=/usr/bin \ - --localstatedir=/var \ - --disable-static \ - --disable-gtk-doc \ - --disable-debug") - - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dosym("/usr/lib/libxfce4util.so.7.0.0", "/usr/lib/libxfce4util.so.6") - pisitools.dodoc("AUTHORS", "ChangeLog*", "COPYING", "NEWS", "README*", "THANKS", "TODO") diff --git a/desktop/xfce/base/libxfce4util/pspec.xml b/desktop/xfce/base/libxfce4util/pspec.xml deleted file mode 100644 index 04a6c4fdaf..0000000000 --- a/desktop/xfce/base/libxfce4util/pspec.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - libxfce4util - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - Xfce basic utility library - Libxfce4util is a basic utility non-GUI functions for Xfce desktop environment. - http://archive.xfce.org/src/xfce/libxfce4util/4.12/libxfce4util-4.12.1.tar.bz2 - - intltool - glib2-devel - - - - - libxfce4util - - glib2 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/doc - - - - - libxfce4util-devel - library - data:doc - Libxfce4util development files - - libxfce4util - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc - - - - - - 2015-03-12 - 4.12.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/libxfce4util/translations.xml b/desktop/xfce/base/libxfce4util/translations.xml deleted file mode 100644 index fb5a3d6a54..0000000000 --- a/desktop/xfce/base/libxfce4util/translations.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - libxfce4util - Xfce için basit yardımcı uygulama kitaplığı - libxfce4util, grafik arayüz fonksiyonlarını içermeyen, Xfce masaüstü yöneticisi için yazılmış basit bir uygulama kitaplığıdır. - - - - libxfce4util-devel - libxfce4util geliştirme dosyaları - - diff --git a/desktop/xfce/base/libxfcegui4/actions.py b/desktop/xfce/base/libxfcegui4/actions.py deleted file mode 100644 index 5c55706018..0000000000 --- a/desktop/xfce/base/libxfcegui4/actions.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug \ - --disable-gladeui \ - --enable-startup-notification") - - # for fix unused dependency - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - #pisitools.removeDir("/etc") - - pisitools.dodoc("COPYING*", "NEWS", "README", "TODO", "ChangeLog", "AUTHORS") diff --git a/desktop/xfce/base/libxfcegui4/files/libxfcegui4-4.10.0-no-xfce_setenv.patch b/desktop/xfce/base/libxfcegui4/files/libxfcegui4-4.10.0-no-xfce_setenv.patch deleted file mode 100644 index 23458139b1..0000000000 --- a/desktop/xfce/base/libxfcegui4/files/libxfcegui4-4.10.0-no-xfce_setenv.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- libxfcegui4/xfce-exec.c -+++ libxfcegui4/xfce-exec.c -@@ -79,7 +79,7 @@ - #ifndef G_OS_WIN32 - gchar *dpyname = user_data; - -- xfce_setenv ("DISPLAY", dpyname, TRUE); -+ g_setenv ("DISPLAY", dpyname, TRUE); - #endif - } \ No newline at end of file diff --git a/desktop/xfce/base/libxfcegui4/pspec.xml b/desktop/xfce/base/libxfcegui4/pspec.xml deleted file mode 100644 index 7a397e9bff..0000000000 --- a/desktop/xfce/base/libxfcegui4/pspec.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - libxfcegui4 - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalçınsoy@pisilinux.org - - GPLv2 - LGPLv2.1 - library - Xfce GUI library - Libxfcegui4 is a various GTK+ widgets for Xfce desktop environment. - http://archive.xfce.org/src/xfce/libxfcegui4/4.10/libxfcegui4-4.10.0.tar.bz2 - - intltool - atk-devel - gdk-pixbuf-devel - gtk2-devel - pango-devel - libxfce4util-devel - xfce4-dev-tools - libICE-devel - libSM-devel - libglade-devel - startup-notification-devel - xfconf-devel - - - libxfcegui4-4.10.0-no-xfce_setenv.patch - - - - - libxfcegui4 - - atk - gdk-pixbuf - gtk2 - pango - libxfce4util - libICE - libSM - startup-notification - libglade - - - /etc - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/icons - /usr/share/doc - - - - - libxfcegui4-devel - library - data:doc - Development files for libxfcegui4 - - libxfcegui4 - xfconf-devel - gtk2-devel - libxfce4util-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc - - - - - - 2015-09-19 - 4.10.0 - Frist relase - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/libxfcegui4/translations.xml b/desktop/xfce/base/libxfcegui4/translations.xml deleted file mode 100644 index 53374e6a8d..0000000000 --- a/desktop/xfce/base/libxfcegui4/translations.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - libxfcegui4 - Xfce arayüz kitaplığı - Libxfcegui4, Xfce masaüstü yöneticisi için tasarlanmış farklı GTK+ parçacıkları kitaplığıdır. - - - - libxfcegui4-devel - Libxfcegui4 geliştirme dosyaları - - - - glade-xfce - Glade için Xfce eklentileri - - diff --git a/desktop/xfce/base/pisilinux-default-settings-xfce/actions.py b/desktop/xfce/base/pisilinux-default-settings-xfce/actions.py deleted file mode 100644 index 6759afd43a..0000000000 --- a/desktop/xfce/base/pisilinux-default-settings-xfce/actions.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import pythonmodules -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - - -def install(): - pythonmodules.install() diff --git a/desktop/xfce/base/pisilinux-default-settings-xfce/comar/package.py b/desktop/xfce/base/pisilinux-default-settings-xfce/comar/package.py deleted file mode 100644 index 0002d6b837..0000000000 --- a/desktop/xfce/base/pisilinux-default-settings-xfce/comar/package.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -from pisi import api as pisiapi -import platform -import os - -def postInstall(fromVersion, fromRelease, toVersion, toRelease): - - fileassociations = open("/usr/share/applications/mimeapps.list","a") - fileassociations.write("application/pdf=evince.desktop;\n") - fileassociations.write("application/zip=file-roller.desktop;\n") - fileassociations.write("application/x-rar=file-roller.desktop;\n") - fileassociations.write("application/x-compressed-tar=file-roller.desktop;\n") - fileassociations.write("application/x-tar=file-roller.desktop;\n") - fileassociations.write("application/x-bzip-compressed-tar=file-roller.desktop;\n") - fileassociations.write("image/jpeg=ristretto.desktop;\n") - fileassociations.write("image/png=ristretto.desktop;\n") - fileassociations.write("image/gif=ristretto.desktop;\n") - fileassociations.write("image/x-ms-bmp=ristretto.desktop;\n") - fileassociations.write("text/plain=medit.desktop;\n") - fileassociations.write("application/x-pisi=package-manager.desktop;\n") - fileassociations.close() - - - #FIXME: - try: - os.unlink("/usr/share/xsessions/openbox-gnome.desktop") - except: - pass - try: - os.unlink("/usr/share/xsessions/openbox-kde.desktop") - except: - pass diff --git a/desktop/xfce/base/pisilinux-default-settings-xfce/pspec.xml b/desktop/xfce/base/pisilinux-default-settings-xfce/pspec.xml deleted file mode 100644 index 7ecb5e4370..0000000000 --- a/desktop/xfce/base/pisilinux-default-settings-xfce/pspec.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - pisilinux-default-settings-xfce - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - data - PisiLinux default settings for xfce - This package contains the xfce default settings for Pisilinux. - https://sourceforge.net/projects/pisi-source/files/PisiLinux-xfce/pisilinux-default-settings-xfce-0.2.1.tar.xz - - - - pisilinux-default-settings-xfce - - xfce4-settings - polkit-gnome - gvfs - medit - file-roller - evince - network-manager-applet - - - /usr/share/backgrounds/xfce - /usr/share/icons/* - /usr/share/themes/* - /etc/xdg/xfce4/xfconf/xfce-perchannel-xml - /etc/xdg/xfce4/terminal - - - System.Package - - - - - - 2016-09-10 - 0.2.1 - Release Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-10 - 0.2.1 - First release - Ergün Salman - poyraz76@pisilinux.org - - - diff --git a/desktop/xfce/base/pisilinux-default-settings-xfce/translations.xml b/desktop/xfce/base/pisilinux-default-settings-xfce/translations.xml deleted file mode 100644 index 7a829dcc27..0000000000 --- a/desktop/xfce/base/pisilinux-default-settings-xfce/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - pisilinux-default-settings-xfce - Pisilinux xfce öntanımlı ayarları - Bu paket, PisiLinux xfce için öntanımlı ayarları içerir. - - diff --git a/desktop/xfce/base/thunar-volman/actions.py b/desktop/xfce/base/thunar-volman/actions.py deleted file mode 100644 index 918b06c419..0000000000 --- a/desktop/xfce/base/thunar-volman/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README") diff --git a/desktop/xfce/base/thunar-volman/pspec.xml b/desktop/xfce/base/thunar-volman/pspec.xml deleted file mode 100644 index 52ad506513..0000000000 --- a/desktop/xfce/base/thunar-volman/pspec.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - thunar-volman - http://archive.xfce.org/xfce/4.10/src - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - A extension for the Xfce Thunar File Manager - thunar-volman is an extension for the Thunar File Manager, which enables automatic management of removable drives and media. For example, if -thunar-volman is installed and configured properly, and you plug in your digical camera, it will automatically spawn your preferred photo application and import the new pictures from your camera. - http://archive.xfce.org/xfce/4.12/src/thunar-volman-0.8.1.tar.bz2 - > - xfconf-devel - libxfce4util-devel - libxfce4ui-devel - Thunar-devel - exo-devel - gtk2-devel - exo-devel - icon-theme-hicolor - libnotify-devel - gtk-doc - docbook-xml - docbook-xsl - intltool - libgudev-devel - eudev-devel - - - - - - - - thunar-volman - - xfconf - libxfce4util - libxfce4ui - pango - gtk2 - exo - libnotify - - - /usr/share/doc - /usr/bin - /usr/share/locale - /usr/share/ - /usr/libexec - - - - - - 2015-03-02 - 0.8.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/thunar-volman/translations.xml b/desktop/xfce/base/thunar-volman/translations.xml deleted file mode 100644 index 05b10f8d62..0000000000 --- a/desktop/xfce/base/thunar-volman/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - thunar-volman - Xfce dosya yöneticisi Thunar için bir eklenti - thunar-volman çıkarılabilir sürücüler ve medyanın otomatik olarak yönetimini sağlayan, Xfce dosya yöneticisi Thunar için bir eklentidir.Örneğin, Thunar-Volman doğru şekilde kurulup yapılandırıldığında, sayısal kameranızdan resim almanızı sağlayacaktır. - - diff --git a/desktop/xfce/base/tumbler/actions.py b/desktop/xfce/base/tumbler/actions.py deleted file mode 100644 index ac4a9f2dc4..0000000000 --- a/desktop/xfce/base/tumbler/actions.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug \ - --disable-gstreamer-thumbnailer") - - pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("README", "COPYING", "ChangeLog", "AUTHORS") diff --git a/desktop/xfce/base/tumbler/pspec.xml b/desktop/xfce/base/tumbler/pspec.xml deleted file mode 100644 index 95cb0205be..0000000000 --- a/desktop/xfce/base/tumbler/pspec.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - tumbler - http://www.xfce.org/projects/thunar/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - A thumbnail service - Tumbler is a thumbnail service for the filemanager of Xfce desktop environment. - http://archive.xfce.org/src/xfce/tumbler/0.1/tumbler-0.1.31.tar.bz2 - - dbus-glib-devel - gdk-pixbuf-devel - freetype-devel - intltool - poppler-glib-devel - libgsf-devel - libjpeg-turbo-devel - - - - - tumbler - - cairo - libgsf - gdk-pixbuf - poppler-glib - libjpeg-turbo - - - /usr/lib - /usr/libexec - /usr/share/ - /usr/share/doc - /usr/bin - /usr/share/locale - /etc/xdg/tumbler/tumbler.rc - - - - - tumbler-devel - Development files for tumbler - - tumbler - - - /usr/include - /usr/lib/pkgconfig - - - - - - 2015-03-02 - 0.1.31 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/tumbler/translations.xml b/desktop/xfce/base/tumbler/translations.xml deleted file mode 100644 index 96098da500..0000000000 --- a/desktop/xfce/base/tumbler/translations.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - tumbler - Bir önizleme servisi - Tumbler Xfce masaüstü ortamının dosya yöneticisi için bir önizleme servisidir. - - - - tumbler-devel - tumbler için geliştirme dosyaları - - - diff --git a/desktop/xfce/base/xfce4-appfinder/actions.py b/desktop/xfce/base/xfce4-appfinder/actions.py deleted file mode 100644 index eb256902c5..0000000000 --- a/desktop/xfce/base/xfce4-appfinder/actions.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.install() - - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfce4-appfinder/pspec.xml b/desktop/xfce/base/xfce4-appfinder/pspec.xml deleted file mode 100644 index de711a71fd..0000000000 --- a/desktop/xfce/base/xfce4-appfinder/pspec.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - xfce4-appfinder - http://www.xfce.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - xfce4-appfinder - app:gui - Xfce application finder - Xfce4-appfinder is a useful software that permits you to find every application in the system supporting desktop entry format. - http://archive.xfce.org/src/xfce/xfce4-appfinder/4.12/xfce4-appfinder-4.12.0.tar.bz2 - - dbus-glib-devel - xfconf-devel - libxfce4ui-devel - garcon-devel - gettext - intltool - - - - - xfce4-appfinder - - gdk-pixbuf - gtk2 - glib2 - libxfce4util - xfconf - libxfce4ui - garcon - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/xfce4/doc - /usr/share/applications - /usr/share/icons - /usr/share/appdata/ - /usr/libexec - - - - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-appfinder/translations.xml b/desktop/xfce/base/xfce4-appfinder/translations.xml deleted file mode 100644 index 49459953af..0000000000 --- a/desktop/xfce/base/xfce4-appfinder/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfce4-appfinder - Xfce uygulama bulucu - Wyszukiwarka aplikacji dla środowiska Xfce - Xfce4-appfinder, kullanıcının sisteminde yüklü, masastünde doğrudan çalışabilen her uygulamayı bulmasını sağlayan, kullanışlı bir uygulama bulucudur. - Wyszukiwanie aplikacji dla środowiska graficznego Xfce4. Wyszukuje zainstalowane w systemie aplikacje. - - diff --git a/desktop/xfce/base/xfce4-dev-tools/actions.py b/desktop/xfce/base/xfce4-dev-tools/actions.py deleted file mode 100644 index 760c57c0ad..0000000000 --- a/desktop/xfce/base/xfce4-dev-tools/actions.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure("--prefix=/usr") - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.dodoc("README", "COPYING", "NEWS", "HACKING", "ChangeLog", "AUTHORS") diff --git a/desktop/xfce/base/xfce4-dev-tools/pspec.xml b/desktop/xfce/base/xfce4-dev-tools/pspec.xml deleted file mode 100644 index 2990553f3a..0000000000 --- a/desktop/xfce/base/xfce4-dev-tools/pspec.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - xfce4-dev-tools - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - Xfce developer tools - Xfce4-dev-tools contains common tools required by Xfce developers and people that want to build Xfce from SVN. In addition, this package contains the Xfce developer's handbook. - http://archive.xfce.org/xfce/4.12/src/xfce4-dev-tools-4.12.0.tar.bz2 - - glib2-devel - - - - - xfce4-dev-tools - - glib2 - - - /usr/bin - /usr/share/doc - /usr/share - /usr/libexec - - - - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-dev-tools/translations.xml b/desktop/xfce/base/xfce4-dev-tools/translations.xml deleted file mode 100644 index 27ccc67047..0000000000 --- a/desktop/xfce/base/xfce4-dev-tools/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - xfce4-dev-tools - Xfce geliştirme araçları - Xfce4-dev-tools paketi, Xfce geliştiricileri ve SVN'den Xfce inşa edecek kullanıcılar için gerekli temel araçları içine alır. Buna ek olarak pakette Xfce geliştiricileri için el kitabı da yer almaktadır. - - diff --git a/desktop/xfce/base/xfce4-mixer/actions.py b/desktop/xfce/base/xfce4-mixer/actions.py deleted file mode 100644 index 8a0fd1d9a2..0000000000 --- a/desktop/xfce/base/xfce4-mixer/actions.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-debug") - - # for fix unused dependency - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/desktop/xfce/base/xfce4-mixer/pspec.xml b/desktop/xfce/base/xfce4-mixer/pspec.xml deleted file mode 100644 index 280748112f..0000000000 --- a/desktop/xfce/base/xfce4-mixer/pspec.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - xfce4-mixer - http://git.xfce.org/apps/xfce4-mixer - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - xfce-sound - app:gui - Xfce sound mixer application - Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project. - http://archive.xfce.org/src/apps/xfce4-mixer/4.10/xfce4-mixer-4.10.0.tar.bz2 - - intltool - libxfce4util-devel - libxfce4ui-devel - xfconf-devel - gstreamer-devel - libunique-devel - gst-plugins-base-devel - xfce4-panel-devel - - - - - xfce4-mixer - - gtk2 - cairo - glib2 - xfconf - dbus-glib - gstreamer - libunique - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - gst-plugins-base - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/pixmaps - /usr/share/applications - /usr/share/xfce4-mixer - /usr/share/xfce4 - /usr/share/doc - /usr/share/man - - - - - - 2015-03-03 - 4.10.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-mixer/translations.xml b/desktop/xfce/base/xfce4-mixer/translations.xml deleted file mode 100644 index 70725c48c7..0000000000 --- a/desktop/xfce/base/xfce4-mixer/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfce4-mixer - Xfce ses ayar uygulaması - Mikser dźwięku dla Xfce - Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler. - Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce - - diff --git a/desktop/xfce/base/xfce4-panel/actions.py b/desktop/xfce/base/xfce4-panel/actions.py deleted file mode 100644 index fc9c6440e9..0000000000 --- a/desktop/xfce/base/xfce4-panel/actions.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools - -def setup(): - autotools.configure("--prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-static \ - --enable-gio-unix \ - --enable-gtk-doc \ - --enable-gtk3 \ - --disable-debug") - - #pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""') - #pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE") - #pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.remove("/usr/share/icons/hicolor/icon-theme.cache") - - pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfce4-panel/files/time.patch b/desktop/xfce/base/xfce4-panel/files/time.patch deleted file mode 100644 index eb1ab77f96..0000000000 --- a/desktop/xfce/base/xfce4-panel/files/time.patch +++ /dev/null @@ -1,590 +0,0 @@ -From 5a9e94ab7bd628f5bf6b46ea7ea91cf40b4aee98 Mon Sep 17 00:00:00 2001 -From: Matt Thirtytwo -Date: Mon, 2 Mar 2015 21:18:41 +0100 -Subject: Fix compiler warning in clock plugin about shadowed 'time' variable - - -diff --git a/plugins/clock/clock-analog.c b/plugins/clock/clock-analog.c -index 2e96a09..910450d 100644 ---- a/plugins/clock/clock-analog.c -+++ b/plugins/clock/clock-analog.c -@@ -216,7 +216,7 @@ xfce_clock_analog_expose_event (GtkWidget *widget, - gdouble xc, yc; - gdouble angle, radius; - cairo_t *cr; -- GDateTime *time; -+ GDateTime *date_time; - - panel_return_val_if_fail (XFCE_CLOCK_IS_ANALOG (analog), FALSE); - -@@ -239,7 +239,7 @@ xfce_clock_analog_expose_event (GtkWidget *widget, - cairo_clip (cr); - - /* get the local time */ -- time = clock_time_get_time (analog->time); -+ date_time = clock_time_get_time (analog->time); - - /* set the line properties */ - cairo_set_line_width (cr, 1); -@@ -251,20 +251,20 @@ xfce_clock_analog_expose_event (GtkWidget *widget, - if (analog->show_seconds) - { - /* second pointer */ -- angle = TICKS_TO_RADIANS (g_date_time_get_second (time)); -+ angle = TICKS_TO_RADIANS (g_date_time_get_second (date_time)); - xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.7, TRUE); - } - - /* minute pointer */ -- angle = TICKS_TO_RADIANS (g_date_time_get_minute (time)); -+ angle = TICKS_TO_RADIANS (g_date_time_get_minute (date_time)); - xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.8, FALSE); - - /* hour pointer */ -- angle = HOURS_TO_RADIANS (g_date_time_get_hour (time), g_date_time_get_minute (time)); -+ angle = HOURS_TO_RADIANS (g_date_time_get_hour (date_time), g_date_time_get_minute (date_time)); - xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.5, FALSE); - - /* cleanup */ -- g_date_time_unref (time); -+ g_date_time_unref (date_time); - cairo_destroy (cr); - } - -@@ -347,12 +347,12 @@ xfce_clock_analog_draw_pointer (cairo_t *cr, - - static gboolean - xfce_clock_analog_update (XfceClockAnalog *analog, -- ClockTime *time) -+ ClockTime *clock_time) - { - GtkWidget *widget = GTK_WIDGET (analog); - - panel_return_val_if_fail (XFCE_CLOCK_IS_ANALOG (analog), FALSE); -- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), FALSE); -+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), FALSE); - - /* update if the widget if visible */ - if (G_LIKELY (GTK_WIDGET_VISIBLE (widget))) -@@ -364,11 +364,11 @@ xfce_clock_analog_update (XfceClockAnalog *analog, - - - GtkWidget * --xfce_clock_analog_new (ClockTime *time) -+xfce_clock_analog_new (ClockTime *clock_time) - { - XfceClockAnalog *analog = g_object_new (XFCE_CLOCK_TYPE_ANALOG, NULL); - -- analog->time = time; -+ analog->time = clock_time; - analog->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE, - analog->time, - G_CALLBACK (xfce_clock_analog_update), analog); -diff --git a/plugins/clock/clock-binary.c b/plugins/clock/clock-binary.c -index 4751c51..46b852c 100644 ---- a/plugins/clock/clock-binary.c -+++ b/plugins/clock/clock-binary.c -@@ -262,7 +262,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary, - GtkAllocation *alloc) - { - GdkColor *active, *inactive; -- GDateTime *time; -+ GDateTime *date_time; - gint row, rows; - static gint binary_table[] = { 32, 16, 8, 4, 2, 1 }; - gint col, cols = G_N_ELEMENTS (binary_table); -@@ -282,7 +282,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary, - active = &(GTK_WIDGET (binary)->style->dark[GTK_STATE_SELECTED]); - } - -- time = clock_time_get_time (binary->time); -+ date_time = clock_time_get_time (binary->time); - - /* init sizes */ - remain_h = alloc->height; -@@ -293,11 +293,11 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary, - { - /* get the time this row represents */ - if (row == 0) -- ticks = g_date_time_get_hour (time); -+ ticks = g_date_time_get_hour (date_time); - else if (row == 1) -- ticks = g_date_time_get_minute (time); -+ ticks = g_date_time_get_minute (date_time); - else -- ticks = g_date_time_get_second (time); -+ ticks = g_date_time_get_second (date_time); - - /* reset sizes */ - remain_w = alloc->width; -@@ -336,7 +336,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary, - offset_y += h; - } - -- g_date_time_unref (time); -+ g_date_time_unref (date_time); - } - - -@@ -348,7 +348,7 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary, - { - GdkColor *active, *inactive; - static gint binary_table[] = { 80, 40, 20, 10, 8, 4, 2, 1 }; -- GDateTime *time; -+ GDateTime *date_time; - gint row, rows = G_N_ELEMENTS (binary_table) / 2; - gint col, cols; - gint digit; -@@ -368,7 +368,7 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary, - active = &(GTK_WIDGET (binary)->style->dark[GTK_STATE_SELECTED]); - } - -- time = clock_time_get_time (binary->time); -+ date_time = clock_time_get_time (binary->time); - - remain_w = alloc->width; - offset_x = alloc->x; -@@ -379,11 +379,11 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary, - { - /* get the time this row represents */ - if (col == 0) -- ticks = g_date_time_get_hour (time); -+ ticks = g_date_time_get_hour (date_time); - else if (col == 2) -- ticks = g_date_time_get_minute (time); -+ ticks = g_date_time_get_minute (date_time); - else if (col == 4) -- ticks = g_date_time_get_second (time); -+ ticks = g_date_time_get_second (date_time); - - /* reset sizes */ - remain_h = alloc->height; -@@ -520,7 +520,7 @@ xfce_clock_binary_expose_event (GtkWidget *widget, - - static gboolean - xfce_clock_binary_update (XfceClockBinary *binary, -- ClockTime *time) -+ ClockTime *clock_time) - { - GtkWidget *widget = GTK_WIDGET (binary); - -@@ -536,11 +536,11 @@ xfce_clock_binary_update (XfceClockBinary *binary, - - - GtkWidget * --xfce_clock_binary_new (ClockTime *time) -+xfce_clock_binary_new (ClockTime *clock_time) - { - XfceClockBinary *binary = g_object_new (XFCE_CLOCK_TYPE_BINARY, NULL); - -- binary->time = time; -+ binary->time = clock_time; - binary->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE, - binary->time, - G_CALLBACK (xfce_clock_binary_update), binary); -diff --git a/plugins/clock/clock-digital.c b/plugins/clock/clock-digital.c -index c293ed2..34e7019 100644 ---- a/plugins/clock/clock-digital.c -+++ b/plugins/clock/clock-digital.c -@@ -194,12 +194,12 @@ xfce_clock_digital_finalize (GObject *object) - - static gboolean - xfce_clock_digital_update (XfceClockDigital *digital, -- ClockTime *time) -+ ClockTime *clock_time) - { - gchar *string; - - panel_return_val_if_fail (XFCE_CLOCK_IS_DIGITAL (digital), FALSE); -- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), FALSE); -+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), FALSE); - - /* set time string */ - string = clock_time_strdup_strftime (digital->time, digital->format); -@@ -212,11 +212,11 @@ xfce_clock_digital_update (XfceClockDigital *digital, - - - GtkWidget * --xfce_clock_digital_new (ClockTime *time) -+xfce_clock_digital_new (ClockTime *clock_time) - { - XfceClockDigital *digital = g_object_new (XFCE_CLOCK_TYPE_DIGITAL, NULL); - -- digital->time = time; -+ digital->time = clock_time; - digital->timeout = clock_time_timeout_new (clock_time_interval_from_format (digital->format), - digital->time, - G_CALLBACK (xfce_clock_digital_update), digital); -diff --git a/plugins/clock/clock-fuzzy.c b/plugins/clock/clock-fuzzy.c -index 7b0aa41..4b361dd 100644 ---- a/plugins/clock/clock-fuzzy.c -+++ b/plugins/clock/clock-fuzzy.c -@@ -275,7 +275,7 @@ xfce_clock_fuzzy_finalize (GObject *object) - - static gboolean - xfce_clock_fuzzy_update (XfceClockFuzzy *fuzzy, -- ClockTime *time) -+ ClockTime *clock_time) - { - GDateTime *date_time; - gint sector; -@@ -353,11 +353,11 @@ xfce_clock_fuzzy_update (XfceClockFuzzy *fuzzy, - - - GtkWidget * --xfce_clock_fuzzy_new (ClockTime *time) -+xfce_clock_fuzzy_new (ClockTime *clock_time) - { - XfceClockFuzzy *fuzzy = g_object_new (XFCE_CLOCK_TYPE_FUZZY, NULL); - -- fuzzy->time = time; -+ fuzzy->time = clock_time; - fuzzy->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE, - fuzzy->time, - G_CALLBACK (xfce_clock_fuzzy_update), fuzzy); -diff --git a/plugins/clock/clock-lcd.c b/plugins/clock/clock-lcd.c -index 84e74e6..b180d30 100644 ---- a/plugins/clock/clock-lcd.c -+++ b/plugins/clock/clock-lcd.c -@@ -285,7 +285,7 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - gint ticks, i; - gdouble size; - gdouble ratio; -- GDateTime *time; -+ GDateTime *date_time; - - panel_return_val_if_fail (XFCE_CLOCK_IS_LCD (lcd), FALSE); - -@@ -317,10 +317,10 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - cairo_set_line_width (cr, MAX (size * 0.05, 1.5)); - - /* get the local time */ -- time = clock_time_get_time (lcd->time); -+ date_time = clock_time_get_time (lcd->time); - - /* draw the hours */ -- ticks = g_date_time_get_hour (time); -+ ticks = g_date_time_get_hour (date_time); - - /* convert 24h clock to 12h clock */ - if (!lcd->show_military && ticks > 12) -@@ -333,8 +333,8 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - * because we might miss the exact second (due to slightly delayed - * timeout) we queue a resize the first 3 seconds or anything in - * the first minute */ -- if ((ticks == 10 || ticks == 0) && g_date_time_get_minute (time) == 0 -- && (!lcd->show_seconds || g_date_time_get_second (time) < 3)) -+ if ((ticks == 10 || ticks == 0) && g_date_time_get_minute (date_time) == 0 -+ && (!lcd->show_seconds || g_date_time_get_second (date_time) < 3)) - g_object_notify (G_OBJECT (lcd), "size-ratio"); - - if (ticks >= 10) -@@ -352,7 +352,7 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - if (i == 0) - { - /* get the minutes */ -- ticks = g_date_time_get_minute (time); -+ ticks = g_date_time_get_minute (date_time); - } - else - { -@@ -361,11 +361,11 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - break; - - /* get the seconds */ -- ticks = g_date_time_get_second (time); -+ ticks = g_date_time_get_second (date_time); - } - - /* draw the dots */ -- if (lcd->flash_separators && (g_date_time_get_second (time) % 2) == 1) -+ if (lcd->flash_separators && (g_date_time_get_second (date_time) % 2) == 1) - offset_x += size * RELATIVE_SPACE * 2; - else - offset_x = xfce_clock_lcd_draw_dots (cr, size, offset_x, offset_y); -@@ -380,14 +380,14 @@ xfce_clock_lcd_expose_event (GtkWidget *widget, - if (lcd->show_meridiem) - { - /* am or pm? */ -- ticks = g_date_time_get_hour (time) >= 12 ? 11 : 10; -+ ticks = g_date_time_get_hour (date_time) >= 12 ? 11 : 10; - - /* draw the digit */ - offset_x = xfce_clock_lcd_draw_digit (cr, ticks, size, offset_x, offset_y); - } - - /* drop the pushed group */ -- g_date_time_unref (time); -+ g_date_time_unref (date_time); - cairo_pop_group_to_source (cr); - cairo_paint (cr); - cairo_destroy (cr); -@@ -403,16 +403,16 @@ xfce_clock_lcd_get_ratio (XfceClockLcd *lcd) - { - gdouble ratio; - gint ticks; -- GDateTime *time; -+ GDateTime *date_time; - - /* get the local time */ -- time = clock_time_get_time (lcd->time); -+ date_time = clock_time_get_time (lcd->time); - - /* 8:8(space)8 */ - ratio = (3 * RELATIVE_DIGIT) + RELATIVE_DOTS + RELATIVE_SPACE; - -- ticks = g_date_time_get_hour (time); -- g_date_time_unref (time); -+ ticks = g_date_time_get_hour (date_time); -+ g_date_time_unref (date_time); - - if (!lcd->show_military && ticks > 12) - ticks -= 12; -@@ -584,7 +584,7 @@ xfce_clock_lcd_draw_digit (cairo_t *cr, - - static gboolean - xfce_clock_lcd_update (XfceClockLcd *lcd, -- ClockTime *time) -+ ClockTime *clock_time) - { - GtkWidget *widget = GTK_WIDGET (lcd); - -@@ -600,11 +600,11 @@ xfce_clock_lcd_update (XfceClockLcd *lcd, - - - GtkWidget * --xfce_clock_lcd_new (ClockTime *time) -+xfce_clock_lcd_new (ClockTime *clock_time) - { - XfceClockLcd *lcd = g_object_new (XFCE_CLOCK_TYPE_LCD, NULL); - -- lcd->time = time; -+ lcd->time = clock_time; - lcd->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE, - lcd->time, - G_CALLBACK (xfce_clock_lcd_update), lcd); -diff --git a/plugins/clock/clock-time.c b/plugins/clock/clock-time.c -index 16b0f89..b015b13 100644 ---- a/plugins/clock/clock-time.c -+++ b/plugins/clock/clock-time.c -@@ -107,10 +107,10 @@ clock_time_class_init (ClockTimeClass *klass) - - - static void --clock_time_init (ClockTime *time) -+clock_time_init (ClockTime *clock_time) - { -- time->timezone_name = g_strdup (DEFAULT_TIMEZONE); -- time->timezone = g_time_zone_new_local (); -+ clock_time->timezone_name = g_strdup (DEFAULT_TIMEZONE); -+ clock_time->timezone = g_time_zone_new_local (); - } - - -@@ -118,11 +118,11 @@ clock_time_init (ClockTime *time) - static void - clock_time_finalize (GObject *object) - { -- ClockTime *time = XFCE_CLOCK_TIME (object); -+ ClockTime *clock_time = XFCE_CLOCK_TIME (object); - -- g_free (time->timezone_name); -+ g_free (clock_time->timezone_name); - -- g_time_zone_unref (time->timezone); -+ g_time_zone_unref (clock_time->timezone); - - G_OBJECT_CLASS (clock_time_parent_class)->finalize (object); - } -@@ -135,12 +135,12 @@ clock_time_get_property (GObject *object, - GValue *value, - GParamSpec *pspec) - { -- ClockTime *time = XFCE_CLOCK_TIME (object); -+ ClockTime *clock_time = XFCE_CLOCK_TIME (object); - - switch (prop_id) - { - case PROP_TIMEZONE: -- g_value_set_string (value, time->timezone_name); -+ g_value_set_string (value, clock_time->timezone_name); - break; - - default: -@@ -157,29 +157,29 @@ clock_time_set_property (GObject *object, - const GValue *value, - GParamSpec *pspec) - { -- ClockTime *time = XFCE_CLOCK_TIME (object); -+ ClockTime *clock_time = XFCE_CLOCK_TIME (object); - const gchar *str_value; - - switch (prop_id) - { - case PROP_TIMEZONE: - str_value = g_value_get_string (value); -- if (g_strcmp0 (time->timezone_name, str_value) != 0) -+ if (g_strcmp0 (clock_time->timezone_name, str_value) != 0) - { -- g_free (time->timezone_name); -- g_time_zone_unref (time->timezone); -+ g_free (clock_time->timezone_name); -+ g_time_zone_unref (clock_time->timezone); - if (str_value == NULL || g_strcmp0 (str_value, "") == 0) - { -- time->timezone_name = g_strdup (DEFAULT_TIMEZONE); -- time->timezone = g_time_zone_new_local (); -+ clock_time->timezone_name = g_strdup (DEFAULT_TIMEZONE); -+ clock_time->timezone = g_time_zone_new_local (); - } - else - { -- time->timezone_name = g_strdup (str_value); -- time->timezone = g_time_zone_new (str_value); -+ clock_time->timezone_name = g_strdup (str_value); -+ clock_time->timezone = g_time_zone_new (str_value); - } - -- g_signal_emit (G_OBJECT (time), clock_time_signals[TIME_CHANGED], 0); -+ g_signal_emit (G_OBJECT (clock_time), clock_time_signals[TIME_CHANGED], 0); - } - break; - -@@ -192,14 +192,14 @@ clock_time_set_property (GObject *object, - - - GDateTime * --clock_time_get_time (ClockTime *time) -+clock_time_get_time (ClockTime *clock_time) - { - GDateTime *date_time; - -- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL); -+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL); - -- if (time->timezone != NULL) -- date_time = g_date_time_new_now (time->timezone); -+ if (clock_time->timezone != NULL) -+ date_time = g_date_time_new_now (clock_time->timezone); - else - date_time = g_date_time_new_now_local (); - -@@ -209,15 +209,15 @@ clock_time_get_time (ClockTime *time) - - - gchar * --clock_time_strdup_strftime (ClockTime *time, -+clock_time_strdup_strftime (ClockTime *clock_time, - const gchar *format) - { - GDateTime *date_time; - gchar *str; - -- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL); -+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL); - -- date_time = clock_time_get_time (time); -+ date_time = clock_time_get_time (clock_time); - str = g_date_time_format (date_time, format); - - g_date_time_unref (date_time); -@@ -262,7 +262,7 @@ static gboolean - clock_time_timeout_running (gpointer user_data) - { - ClockTimeTimeout *timeout = user_data; -- GDateTime *time; -+ GDateTime *date_time; - - g_signal_emit (G_OBJECT (timeout->time), clock_time_signals[TIME_CHANGED], 0); - -@@ -270,8 +270,8 @@ clock_time_timeout_running (gpointer user_data) - if (timeout->interval == CLOCK_INTERVAL_MINUTE) - { - /* sync again when we don't run on time */ -- time = clock_time_get_time (timeout->time); -- timeout->restart = (g_date_time_get_second (time) != 0); -+ date_time = clock_time_get_time (timeout->time); -+ timeout->restart = (g_date_time_get_second (date_time) != 0); - } - - return !timeout->restart; -@@ -312,13 +312,13 @@ clock_time_timeout_sync (gpointer user_data) - - ClockTimeTimeout * - clock_time_timeout_new (guint interval, -- ClockTime *time, -+ ClockTime *clock_time, - GCallback c_handler, - gpointer gobject) - { - ClockTimeTimeout *timeout; - -- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL); -+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL); - - panel_return_val_if_fail (interval > 0, NULL); - -@@ -326,10 +326,10 @@ clock_time_timeout_new (guint interval, - timeout->interval = 0; - timeout->timeout_id = 0; - timeout->restart = FALSE; -- timeout->time = time; -+ timeout->time = clock_time; - - timeout->time_changed_id = -- g_signal_connect_swapped (G_OBJECT (time), "time-changed", -+ g_signal_connect_swapped (G_OBJECT (clock_time), "time-changed", - c_handler, gobject); - - g_object_ref (G_OBJECT (timeout->time)); -@@ -345,7 +345,7 @@ void - clock_time_timeout_set_interval (ClockTimeTimeout *timeout, - guint interval) - { -- GDateTime *time; -+ GDateTime *date_time; - guint next_interval; - gboolean restart; - -@@ -372,8 +372,8 @@ clock_time_timeout_set_interval (ClockTimeTimeout *timeout, - /* get the seconds to the next internal */ - if (interval == CLOCK_INTERVAL_MINUTE) - { -- time = clock_time_get_time (timeout->time); -- next_interval = 60 - g_date_time_get_second (time); -+ date_time = clock_time_get_time (timeout->time); -+ next_interval = 60 - g_date_time_get_second (date_time); - } - else - { -diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c -index 6c80978..e07c17b 100644 ---- a/plugins/clock/clock.c -+++ b/plugins/clock/clock.c -@@ -1113,17 +1113,17 @@ static void - clock_plugin_calendar_show_event (GtkWidget *calendar_window, - ClockPlugin *plugin) - { -- GDateTime *time; -+ GDateTime *date_time; - - panel_return_if_fail (XFCE_IS_PANEL_PLUGIN (plugin)); - - clock_plugin_reposition_calendar (plugin); - -- time = clock_time_get_time (plugin->time); -- gtk_calendar_select_month (GTK_CALENDAR (plugin->calendar), g_date_time_get_month (time) - 1, -- g_date_time_get_year (time)); -- gtk_calendar_select_day (GTK_CALENDAR (plugin->calendar), g_date_time_get_day_of_month (time)); -- g_date_time_unref (time); -+ date_time = clock_time_get_time (plugin->time); -+ gtk_calendar_select_month (GTK_CALENDAR (plugin->calendar), g_date_time_get_month (date_time) - 1, -+ g_date_time_get_year (date_time)); -+ gtk_calendar_select_day (GTK_CALENDAR (plugin->calendar), g_date_time_get_day_of_month (date_time)); -+ g_date_time_unref (date_time); - } - - --- -cgit v0.10.1 - diff --git a/desktop/xfce/base/xfce4-panel/pspec.xml b/desktop/xfce/base/xfce4-panel/pspec.xml deleted file mode 100644 index ff2e16437b..0000000000 --- a/desktop/xfce/base/xfce4-panel/pspec.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - xfce4-panel - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - LGPLv2 - xfce4-panel - library - app:gui - Xfce panel - The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels. - http://archive.xfce.org/src/xfce/xfce4-panel/4.12/xfce4-panel-4.12.0.tar.bz2 - - intltool - gtk3-devel - libxfce4ui-devel - xfconf-devel - startup-notification-devel - exo-devel - garcon-devel - libwnck2-devel - gtk3-docs - gettext - desktop-file-utils - libxml2-devel - libxslt-devel - gtk-doc - docbook-xml - docbook-xsl - - - - - - - - xfce4-panel - - atk - exo - dbus - gtk2 - cairo - glib2 - pango - gdk-pixbuf - garcon - libX11 - xfconf - libXext - freetype - libwnck2 - dbus-glib - fontconfig - libxfce4ui - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/xfce4/doc - /usr/share/xfce4 - /usr/share/applications - /usr/share/icons - - - - - xfce4-panel-devel - library - data:doc - Development files for Xfce4 Panel - - xfce4-panel - gtk2-devel - glib2-devel - libxfce4util-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc - /usr/share/gtk-doc - - - - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-panel/translations.xml b/desktop/xfce/base/xfce4-panel/translations.xml deleted file mode 100644 index 763bd6725f..0000000000 --- a/desktop/xfce/base/xfce4-panel/translations.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - xfce4-panel - Xfce paneli - Panel środowiska graficznego Xfce - Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir. - Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. - - - - xfce4-panel-devel - Xfce paneli geliştirme dosyaları - Pliki nagłówkowe dla xfce4-panel - - diff --git a/desktop/xfce/base/xfce4-power-manager/actions.py b/desktop/xfce/base/xfce4-power-manager/actions.py deleted file mode 100644 index e3777d15eb..0000000000 --- a/desktop/xfce/base/xfce4-power-manager/actions.py +++ /dev/null @@ -1,27 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get -from pisi.actionsapi import shelltools -def setup(): - shelltools.export("GTK3","/usr/bin/gtk-launch") - autotools.configure("--prefix=/usr \ - --sysconfdir=/etc \ - --sbindir=/usr/bin \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-network-manager \ - --enable-polkit \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-change-brightness-level-from-glong-to-gint32.patch b/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-change-brightness-level-from-glong-to-gint32.patch deleted file mode 100644 index 5cb4fdb0b1..0000000000 --- a/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-change-brightness-level-from-glong-to-gint32.patch +++ /dev/null @@ -1,306 +0,0 @@ -From 05d12e12596512f7a31d3cdb4845a69dc2d4c611 Mon Sep 17 00:00:00 2001 -From: Martin Matuska -Date: Tue, 23 Jul 2013 09:27:41 +0000 -Subject: Change brightness level from glong to gint32 - -The "Backlight" RandR property is a 32-bit integer. This means that the int32 (gint32) type should be used to represent brightness levels. The attached patch does nothing else than changing the brightness level representation from glong to gint32. This fixes the screen auto-dimming issue and brightness panel plugin issue. ---- -diff --git a/common/xfpm-brightness.c b/common/xfpm-brightness.c -index aa1ef33..f1524cb 100644 ---- a/common/xfpm-brightness.c -+++ b/common/xfpm-brightness.c -@@ -92,11 +92,11 @@ out: - } - - static gboolean --xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, long *current) -+xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, gint32 *current) - { - unsigned long nitems; - unsigned long bytes_after; -- long *prop; -+ gint32 *prop; - Atom actual_type; - int actual_format; - gboolean ret = FALSE; -@@ -124,7 +124,7 @@ xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, l - } - - static gboolean --xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, long level) -+xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, gint32 level) - { - gboolean ret = TRUE; - -@@ -137,7 +137,7 @@ xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, l - - if ( gdk_error_trap_pop () ) - { -- g_warning ("failed to XRRChangeOutputProperty for brightness %li", level); -+ g_warning ("failed to XRRChangeOutputProperty for brightness %d", level); - ret = FALSE; - } - -@@ -225,11 +225,11 @@ xfpm_brightness_setup_xrandr (XfpmBrightness *brightness) - } - - static gboolean --xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level) -+xfpm_brightness_xrand_up (XfpmBrightness *brightness, gint32 *new_level) - { -- long hw_level; -+ gint32 hw_level; - gboolean ret = FALSE; -- long set_level; -+ gint32 set_level; - - ret = xfpm_brightness_xrandr_get_level (brightness, brightness->priv->output, &hw_level); - -@@ -250,14 +250,14 @@ xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level) - - if ( !ret ) - { -- g_warning ("xfpm_brightness_xrand_up failed for %li", set_level); -+ g_warning ("xfpm_brightness_xrand_up failed for %d", set_level); - return FALSE; - } - - /* Nothing changed in the hardware*/ - if ( *new_level == hw_level ) - { -- g_warning ("xfpm_brightness_xrand_up did not change the hw level to %li", set_level); -+ g_warning ("xfpm_brightness_xrand_up did not change the hw level to %d", set_level); - return FALSE; - } - -@@ -265,11 +265,11 @@ xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level) - } - - static gboolean --xfpm_brightness_xrand_down (XfpmBrightness *brightness, long *new_level) -+xfpm_brightness_xrand_down (XfpmBrightness *brightness, gint32 *new_level) - { -- long hw_level; -+ gint32 hw_level; - gboolean ret; -- long set_level; -+ gint32 set_level; - - ret = xfpm_brightness_xrandr_get_level (brightness, brightness->priv->output, &hw_level); - -@@ -290,14 +290,14 @@ xfpm_brightness_xrand_down (XfpmBrightness *brightness, long *new_level) - - if ( !ret ) - { -- g_warning ("xfpm_brightness_xrand_down failed for %li", set_level); -+ g_warning ("xfpm_brightness_xrand_down failed for %d", set_level); - return FALSE; - } - - /* Nothing changed in the hardware*/ - if ( *new_level == hw_level ) - { -- g_warning ("xfpm_brightness_xrand_down did not change the hw level to %li", set_level); -+ g_warning ("xfpm_brightness_xrand_down did not change the hw level to %d", set_level); - return FALSE; - } - -@@ -361,7 +361,7 @@ xfpm_brightness_setup_helper (XfpmBrightness *brightness) - } - - static gboolean --xfpm_brightness_helper_get_level (XfpmBrightness *brg, glong *level) -+xfpm_brightness_helper_get_level (XfpmBrightness *brg, gint32 *level) - { - int ret; - -@@ -406,11 +406,11 @@ out: - } - - static gboolean --xfpm_brightness_helper_up (XfpmBrightness *brightness, glong *new_level) -+xfpm_brightness_helper_up (XfpmBrightness *brightness, gint32 *new_level) - { -- glong hw_level; -+ gint32 hw_level; - gboolean ret = FALSE; -- gint set_level; -+ gint32 set_level; - - ret = xfpm_brightness_helper_get_level (brightness, &hw_level); - -@@ -446,11 +446,11 @@ xfpm_brightness_helper_up (XfpmBrightness *brightness, glong *new_level) - } - - static gboolean --xfpm_brightness_helper_down (XfpmBrightness *brightness, glong *new_level) -+xfpm_brightness_helper_down (XfpmBrightness *brightness, gint32 *new_level) - { -- glong hw_level; -+ gint32 hw_level; - gboolean ret; -- gint set_level; -+ gint32 set_level; - - ret = xfpm_brightness_helper_get_level (brightness, &hw_level); - -@@ -572,7 +572,7 @@ xfpm_brightness_setup (XfpmBrightness *brightness) - return FALSE; - } - --gboolean xfpm_brightness_up (XfpmBrightness *brightness, glong *new_level) -+gboolean xfpm_brightness_up (XfpmBrightness *brightness, gint32 *new_level) - { - gboolean ret = FALSE; - -@@ -589,7 +589,7 @@ gboolean xfpm_brightness_up (XfpmBrightness *brightness, glong *new_level) - return ret; - } - --gboolean xfpm_brightness_down (XfpmBrightness *brightness, glong *new_level) -+gboolean xfpm_brightness_down (XfpmBrightness *brightness, gint32 *new_level) - { - gboolean ret = FALSE; - -@@ -618,7 +618,7 @@ gint xfpm_brightness_get_max_level (XfpmBrightness *brightness) - return brightness->priv->max_level; - } - --gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, glong *level) -+gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, gint32 *level) - { - gboolean ret = FALSE; - -@@ -632,7 +632,7 @@ gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, glong *level) - return ret; - } - --gboolean xfpm_brightness_set_level (XfpmBrightness *brightness, glong level) -+gboolean xfpm_brightness_set_level (XfpmBrightness *brightness, gint32 level) - { - gboolean ret = FALSE; - -diff --git a/common/xfpm-brightness.h b/common/xfpm-brightness.h -index 0c4e3ed..26b3dbe 100644 ---- a/common/xfpm-brightness.h -+++ b/common/xfpm-brightness.h -@@ -51,20 +51,20 @@ XfpmBrightness *xfpm_brightness_new (void); - gboolean xfpm_brightness_setup (XfpmBrightness *brightness); - - gboolean xfpm_brightness_up (XfpmBrightness *brightness, -- glong *new_level); -+ gint32 *new_level); - - gboolean xfpm_brightness_down (XfpmBrightness *brightness, -- glong *new_level); -+ gint32 *new_level); - - gboolean xfpm_brightness_has_hw (XfpmBrightness *brightness); - - gint xfpm_brightness_get_max_level (XfpmBrightness *brightness); - - gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, -- glong *level); -+ gint32 *level); - - gboolean xfpm_brightness_set_level (XfpmBrightness *brightness, -- glong level); -+ gint32 level); - - gboolean xfpm_brightness_dim_down (XfpmBrightness *brightness); - -diff --git a/panel-plugins/brightness/brightness-button.c b/panel-plugins/brightness/brightness-button.c -index 6e60c29..bd466c9 100644 ---- a/panel-plugins/brightness/brightness-button.c -+++ b/panel-plugins/brightness/brightness-button.c -@@ -186,7 +186,7 @@ static gboolean - brightness_button_popup_win (GtkWidget *widget, GdkEvent *ev, guint32 ev_time) - { - gint x, y; -- glong current_level = 0; -+ gint32 current_level = 0; - GdkDisplay *display; - GdkScreen *screen; - BrightnessButton *button; -@@ -342,7 +342,7 @@ plus_clicked (GtkWidget *widget, BrightnessButton *button) - static void - range_value_changed (GtkWidget *widget, BrightnessButton *button) - { -- glong range_level, hw_level; -+ gint32 range_level, hw_level; - - range_level = (gint) gtk_range_get_value (GTK_RANGE (button->priv->range)); - -@@ -428,8 +428,8 @@ brightness_button_create_popup (BrightnessButton *button) - static void - brightness_button_up (BrightnessButton *button) - { -- glong level; -- glong max_level; -+ gint32 level; -+ gint32 max_level; - - xfpm_brightness_get_level (button->priv->brightness, &level); - max_level = xfpm_brightness_get_max_level (button->priv->brightness); -@@ -443,7 +443,7 @@ brightness_button_up (BrightnessButton *button) - static void - brightness_button_down (BrightnessButton *button) - { -- glong level; -+ gint32 level; - xfpm_brightness_get_level (button->priv->brightness, &level); - - if ( level != 0 ) -diff --git a/src/xfpm-backlight.c b/src/xfpm-backlight.c -index baeeb43..45c990f 100644 ---- a/src/xfpm-backlight.c -+++ b/src/xfpm-backlight.c -@@ -63,8 +63,8 @@ struct XfpmBacklightPrivate - gboolean has_hw; - gboolean on_battery; - -- glong last_level; -- glong max_level; -+ gint32 last_level; -+ gint32 max_level; - - gboolean dimmed; - gboolean block; -@@ -79,7 +79,7 @@ xfpm_backlight_dim_brightness (XfpmBacklight *backlight) - - if (xfpm_power_get_mode (backlight->priv->power) == XFPM_POWER_MODE_NORMAL ) - { -- glong dim_level; -+ gint32 dim_level; - - g_object_get (G_OBJECT (backlight->priv->conf), - backlight->priv->on_battery ? BRIGHTNESS_LEVEL_ON_BATTERY : BRIGHTNESS_LEVEL_ON_AC, &dim_level, -@@ -101,7 +101,7 @@ xfpm_backlight_dim_brightness (XfpmBacklight *backlight) - **/ - if (backlight->priv->last_level > dim_level) - { -- XFPM_DEBUG ("Current brightness level before dimming : %li, new %li", backlight->priv->last_level, dim_level); -+ XFPM_DEBUG ("Current brightness level before dimming : %d, new %d", backlight->priv->last_level, dim_level); - backlight->priv->dimmed = xfpm_brightness_set_level (backlight->priv->brightness, dim_level); - } - } -@@ -182,7 +182,7 @@ xfpm_backlight_reset_cb (EggIdletime *idle, XfpmBacklight *backlight) - { - if ( !backlight->priv->block) - { -- XFPM_DEBUG ("Alarm reset, setting level to %li", backlight->priv->last_level); -+ XFPM_DEBUG ("Alarm reset, setting level to %d", backlight->priv->last_level); - xfpm_brightness_set_level (backlight->priv->brightness, backlight->priv->last_level); - } - backlight->priv->dimmed = FALSE; -@@ -192,7 +192,7 @@ xfpm_backlight_reset_cb (EggIdletime *idle, XfpmBacklight *backlight) - static void - xfpm_backlight_button_pressed_cb (XfpmButton *button, XfpmButtonKey type, XfpmBacklight *backlight) - { -- glong level; -+ gint32 level; - gboolean ret = TRUE; - - gboolean enable_brightness, show_popup; --- -cgit v0.9.2 diff --git a/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-update-translations.patch b/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-update-translations.patch deleted file mode 100644 index 8dc0790758..0000000000 --- a/desktop/xfce/base/xfce4-power-manager/files/xfce4-power-manager-1.2.0-update-translations.patch +++ /dev/null @@ -1,10271 +0,0 @@ -diff --git a/po/ar.po b/po/ar.po -index 5fe8409..5fd913c 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -1,20 +1,22 @@ - # SOME DESCRIPTIVE TITLE. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# -+# محمد الحرقان , 2012. - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2011-08-08 22:07+0000\n" --"PO-Revision-Date: 2011-08-09 04:15-0000\n" --"Last-Translator: كريم أولاد الشلحة \n" --"Language-Team: Arabic Xfce Translation Team \n" -+"POT-Creation-Date: 2012-11-08 07:33+0000\n" -+"PO-Revision-Date: 2012-11-08 13:24+0300\n" -+"Last-Translator: محمد الحرقان \n" -+"Language-Team: http://www.vertaal.com.ar/files/factory/ar/list/\n" -+"Language: ar\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=utf-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=2; plural=1;\n" -+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -+"X-Generator: Virtaal 0.7.1\n" - "X-Poedit-Language: Arabic\n" - "X-Poedit-Country: Morocco\n" - -@@ -44,17 +46,13 @@ msgstr "إجراءات" - - #: ../data/interfaces/xfpm-settings.ui.h:7 - msgid "Consider the computer on low power at:" --msgstr "إعتبار الحاسوب يستهلك طاقة قليلة عنذ:" -+msgstr "إعتبار الحاسوب يعمل على طاقة منخفضة عند:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 --#: ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 --#: ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 --#: ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 --#: ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "إسبات" -@@ -65,24 +63,20 @@ msgstr "مستوى:" - - #: ../data/interfaces/xfpm-settings.ui.h:10 - msgid "Lock screen when going for suspend/hibernate" --msgstr "قفل الشاشة عند الذهاب للتعليق / إسبات" -+msgstr "قفل الشاشة عند الذهاب للتعليق/الإسبات" - --#: ../data/interfaces/xfpm-settings.ui.h:11 --#: ../src/xfpm-power-common.c:132 -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 - msgid "Monitor" - msgstr "مراقب" - - #: ../data/interfaces/xfpm-settings.ui.h:12 - msgid "Monitor power management control" --msgstr "متحطم في إدارة مراقب الطاقة" -- --#: ../data/interfaces/xfpm-settings.ui.h:13 --#: ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 --#: ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 --#: ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+msgstr "متحكم في إدارة مراقب الطاقة" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "لا شيء" - -@@ -96,11 +90,11 @@ msgstr "يفضل توفير الطاقة على حساب الأداء" - - #: ../data/interfaces/xfpm-settings.ui.h:16 - msgid "Put display to sleep when computer is inactive for:" --msgstr "ضع العرض على وضع النوم عندما يكون الكمبيوتر غير نشط لمدة :" -+msgstr "ضع العرض بوضع النوم عندما يكون الكمبيوتر غير نشط لمدة:" - - #: ../data/interfaces/xfpm-settings.ui.h:17 - msgid "Put the computer to sleep when inactive for:" --msgstr "ضع الكمبيوتر على وضع النوم عندما يكون غير نشط لمدة:" -+msgstr "ضع الكمبيوتر بوضع النوم عندما يكون غير نشط لمدة:" - - #: ../data/interfaces/xfpm-settings.ui.h:18 - msgid "Reduce screen brightness when computer is inactive for:" -@@ -112,7 +106,7 @@ msgstr "تعيين وضع النوم وخمول الكمبيوتر:" - - #: ../data/interfaces/xfpm-settings.ui.h:20 - msgid "Set monitor sleep mode:" --msgstr "ضبط مراقبة وضع السكون :" -+msgstr "ضبط مراقبة وضع السكون:" - - #: ../data/interfaces/xfpm-settings.ui.h:21 - msgid "Show notifications to notify about the battery state" -@@ -127,54 +121,48 @@ msgid "Standby" - msgstr "الإستعداد" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 --#: ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 --#: ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 --#: ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 --#: ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "تعليق" - - #: ../data/interfaces/xfpm-settings.ui.h:25 - msgid "Switch off display when computer is inactive for:" --msgstr "إيقاف العرض عندما الكمبيوتر غير نشط من أجل :" -+msgstr "إيقاف الشاشة عندما الكمبيوتر غير نشط لمدة:" - - #: ../data/interfaces/xfpm-settings.ui.h:26 - msgid "System tray icon: " --msgstr "رمز علبة النظام :" -+msgstr "رمز علبة النظام: " - - #: ../data/interfaces/xfpm-settings.ui.h:27 - msgid "When battery power is critical:" --msgstr "عندما تكون البطارية في وضع حرج :" -+msgstr "عندما تكون البطارية في وضع حرج:" - - #: ../data/interfaces/xfpm-settings.ui.h:28 - msgid "When hibernate button is pressed:" --msgstr "عند الضغط على زر السبات :" -+msgstr "عند الضغط على زر السبات:" - - #: ../data/interfaces/xfpm-settings.ui.h:29 - msgid "When laptop lid is closed:" --msgstr "عند إغلاق غطاء الكمبيوتر المحمول :" -+msgstr "عند إغلاق غطاء الكمبيوتر المحمول:" - - #: ../data/interfaces/xfpm-settings.ui.h:30 - msgid "When power button is pressed:" --msgstr "عند ضغط زر الطاقة :" -+msgstr "عند ضغط زر الطاقة:" - - #: ../data/interfaces/xfpm-settings.ui.h:31 - msgid "When sleep button is pressed:" --msgstr "عند الضغط على زر النوم :" -+msgstr "عند الضغط على زر النوم:" - - #: ../data/interfaces/xfpm-settings.ui.h:32 --#: ../settings/xfpm-settings-main.c:121 --#: ../src/xfpm-main.c:413 -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 - msgid "Xfce Power Manager" - msgstr "مدير طاقة إكسفس" - --#: ../settings/xfpm-settings.c:567 --#: ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 - #: ../settings/xfpm-settings.c:609 - msgid "Never" - msgstr "أبدا" -@@ -183,30 +171,24 @@ msgstr "أبدا" - msgid "One minute" - msgstr "دقيقة واحدة" - --#: ../settings/xfpm-settings.c:572 --#: ../settings/xfpm-settings.c:584 -+#: ../settings/xfpm-settings.c:572 ../settings/xfpm-settings.c:584 - msgid "Minutes" - msgstr "دقائق" - --#: ../settings/xfpm-settings.c:586 --#: ../settings/xfpm-settings.c:593 --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:595 -+#: ../settings/xfpm-settings.c:586 ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:595 - msgid "One hour" - msgstr "ساعة واحدة" - --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:598 - msgid "one minute" - msgstr "دقيقة واحدة" - --#: ../settings/xfpm-settings.c:595 --#: ../settings/xfpm-settings.c:599 -+#: ../settings/xfpm-settings.c:595 ../settings/xfpm-settings.c:599 - msgid "minutes" - msgstr "دقائق" - --#: ../settings/xfpm-settings.c:597 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:597 ../settings/xfpm-settings.c:598 - #: ../settings/xfpm-settings.c:599 - msgid "hours" - msgstr "ساعات" -@@ -215,130 +197,121 @@ msgstr "ساعات" - msgid "Seconds" - msgstr "ثوان" - --#: ../settings/xfpm-settings.c:789 --#: ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "الإسابات وتعليق العمليات غير مدعوم" - --#: ../settings/xfpm-settings.c:794 --#: ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" --msgstr "السبات ووقف العمليات غير مسموح" -+msgstr "الإسبات ووقف العمليات غير مسموح" - --#: ../settings/xfpm-settings.c:823 --#: ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "اطفئ" - --#: ../settings/xfpm-settings.c:827 --#: ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 --#: ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" --msgstr "تطلب" -+msgstr "اسأل" - --#: ../settings/xfpm-settings.c:889 --#: ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "قفل الشاشة" - --#: ../settings/xfpm-settings.c:957 --#: ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "تقليل دوران القرص عند عدم الحاجة" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "عرض الرمز دائماً" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "عند وجود البطارية" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "عند شحن البطارية أو تفريغها" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "لا تعرض الأيقونة ابداً" - --#: ../settings/xfpm-settings.c:1182 --msgid "Disable Display Power Management Signaling (DPMS), e.g don't attempt to switch off the display or put it in sleep mode." --msgstr "تعطيل إشارة إدارة طاقة الشاشة(DPMS)، مثلاً لا تعطل الشاشة، أو تضعها في وضع السكون." -+#: ../settings/xfpm-settings.c:1185 -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." -+msgstr "" -+"تعطيل إشارة إدارة طاقة الشاشة (DPMS)، مثلاً لا تعطل الشاشة، أو تضعها في وضع " -+"السكون." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" --msgstr "تعليق عملية غير معتمد" -+msgstr "عملية التعليق غير معتمدة" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" --msgstr "تعليق عملية غير مسموح" -+msgstr "عملية التعليق غير مسموحة" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" --msgstr "عملية سبات غير معتمدة" -+msgstr "عملية الإسبات غير معتمدة" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "لا يسمح بعملية السبات" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "عندما تصل جميع مصادر طاقة الكمبيوتر لمستوى الشحن هذا" - --#: ../settings/xfpm-settings.c:1543 --#: ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "عام" - --#: ../settings/xfpm-settings.c:1557 --#: ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "على الكهرباء" - --#: ../settings/xfpm-settings.c:1572 --#: ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "على البطارية" - --#: ../settings/xfpm-settings.c:1586 --#: ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "ممدد" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "تحقق من تثبيت إدارة الطاقة" - - #: ../settings/xfpm-settings-main.c:78 - msgid "Settings manager socket" --msgstr "مدير ضبط المأخذ" -+msgstr "مفبس مدير الإعدادات" - - #: ../settings/xfpm-settings-main.c:78 - msgid "SOCKET ID" - msgstr "معرف المنفذ" - --#: ../settings/xfpm-settings-main.c:89 --#: ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." --msgstr "اكتب '%s --help' لدليل المستخدم" -+msgstr "اكتب '%s --help' لدليل المستخدم." - - #: ../settings/xfpm-settings-main.c:123 - msgid "Failed to load power manager configuration, using defaults" --msgstr "فشل تحميل إدارة الطاقة، استخدم الافتراضات" -+msgstr "فشل تحميل إدارة الطاقة، استخدم الافتراضي" - - #: ../settings/xfpm-settings-main.c:148 - msgid "Unable to connect to Xfce Power Manager" - msgstr "غير قادر على الاتصال بمدير طاقة إكسفس" - --#: ../settings/xfpm-settings-main.c:190 --#: ../src/xfpm-main.c:329 -+#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:329 - #, c-format - msgid "Xfce power manager is not running" - msgstr "مدير طاقة إكسفس لا يعمل خاليا" -@@ -349,17 +322,12 @@ msgstr "تشغيل" - - #: ../settings/xfpm-settings-main.c:196 - msgid "Xfce4 Power Manager is not running, do you want to launch it now?" --msgstr "مدير طاقة إكسفس ليس قيد التشغيل، تريد تشغيله الآن؟" -+msgstr "مدير طاقة إكسفس4 لا يعمل، تريد تشغيله الآن؟" - - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 --#: ../src/xfpm-power.c:307 --#: ../src/xfpm-power.c:595 --#: ../src/xfpm-power.c:730 --#: ../src/xfpm-power.c:766 --#: ../src/xfpm-power.c:935 --#: ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:349 --#: ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "مدير الطاقة" - -@@ -369,30 +337,38 @@ msgstr "إعدادات مدير طاقة إكسفس" - - #: ../common/xfpm-common.c:155 - msgid "translator-credits" -+msgstr "كريم اولاد الشلحة ومحمد الحرقان" -+ -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_إسبات" -+ -+#: ../src/xfpm-power.c:329 -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" --"Arabic Xfce Translation Team (فريق تعريب إكسفس)\n" --" Karim Oulad Chalha (كريم اولاد الشلحة) \n" --" Mohamed Al Hargan(محمد الحرقان) " -+"قام تطبيق بتعطيل الاسبات التلقائي الآن. القيام بهذا الآن قد يؤدي إلى تعطيل " -+"حالة عمل هذا التطبيق." - --#: ../src/xfpm-power.c:330 --msgid "An application is currently disabling the automatic sleep, doing this action now may damage the working state of this application, are you sure you want to hibernate the system?" --msgstr "عطل تطبيق الآن النوم التلقائي، القيام بهذا الآن قد يؤدي إلى تعطيل حالة عمل من هذا التطبيق، متأكد أنك تريد إسبات النظام؟" -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "أمتأكد أنك ترغب في اسبات النظام؟" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "خروج" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "سيغلق جميع حالات إدارة الطاقة التي تعمل" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "الخروج من مدير الطاقة؟" - - #. Power information --#: ../src/xfpm-power.c:534 --#: ../src/xfpm-power-info.c:818 -+#: ../src/xfpm-power.c:534 ../src/xfpm-power-info.c:818 - msgid "Power Information" - msgstr "معلومات الطاقة" - -@@ -426,8 +402,7 @@ msgstr "تعليق نظام" - msgid "Shutdown the system" - msgstr "إيقاف تشغيل النظام" - --#: ../src/xfpm-power.c:725 --#: ../src/xfpm-power.c:763 -+#: ../src/xfpm-power.c:725 ../src/xfpm-power.c:763 - msgid "System is running on low power. Save your work to avoid losing data" - msgstr "النظام يعمل على الطاقة المنخفضة. احفظ أعمالك لتجنب فقدان البيانات" - -@@ -442,41 +417,33 @@ msgid "" - "Estimated time left %s" - msgstr "" - "مستوى %s الشحن منخفض\n" --" الوقت المتبقي %s" -+"الوقت المتبقي %s" - --#: ../src/xfpm-power.c:1158 --#: ../src/xfpm-power.c:1163 -+#: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 - msgid "Adaptor is offline" - msgstr "المحول غير متصل" - --#: ../src/xfpm-power.c:1159 --#: ../src/xfpm-power.c:1164 --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "محول متصل" - --#: ../src/xfpm-power.c:1617 --#: ../src/xfpm-power.c:1638 --#: ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1617 ../src/xfpm-power.c:1638 ../src/xfpm-power.c:1653 - #: ../src/xfpm-power.c:1676 - #, c-format - msgid "Permission denied" - msgstr "رفض الإذن" - --#: ../src/xfpm-power.c:1661 --#: ../src/xfpm-power.c:1684 -+#: ../src/xfpm-power.c:1661 ../src/xfpm-power.c:1684 - #, c-format - msgid "Suspend not supported" - msgstr "التعليق غير معتمد" - --#: ../src/xfpm-power-common.c:122 --#: ../src/xfpm-power-common.c:141 -+#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 - msgid "Battery" - msgstr "بطارية" - --#: ../src/xfpm-power-common.c:124 --#: ../src/xfpm-battery.c:824 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "UPS" - -@@ -500,10 +467,8 @@ msgstr "PDA" - msgid "Phone" - msgstr "هاتف" - --#: ../src/xfpm-power-common.c:138 --#: ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 --#: ../src/xfpm-battery.c:842 -+#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "غير معروف" - -@@ -531,18 +496,18 @@ msgstr "Nickel cadmium" - msgid "Nickel metal hybride" - msgstr "Nickel metal hybride" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "زمن غير محدد" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i دقيقة" - msgstr[1] "%i دقائق" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -551,36 +516,34 @@ msgstr[1] "%i ساعات" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "ساعة" - msgstr[1] "ساعات" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "دقيقة" - msgstr[1] "دقائق" - --#: ../src/xfpm-battery.c:209 --#: ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "البطارية %s مشحونة بالكامل" - --#: ../src/xfpm-battery.c:212 --#: ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "البطارية %s تشحن" - --#: ../src/xfpm-battery.c:222 -+#: ../src/xfpm-battery.c:224 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -589,36 +552,36 @@ msgstr "" - "%s (%i%%)\n" - "%s حتى يكتمل الشحن." - --#: ../src/xfpm-battery.c:230 --#: ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "بطاريتك %s لا تشحن" - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "النظام يعمل على %s طاقة" - --#: ../src/xfpm-battery.c:242 -+#: ../src/xfpm-battery.c:244 - #, c-format - msgid "" - "%s (%i%%)\n" - "Estimated time left is %s." --msgstr "%s (%i%%)\\الوقت المقدر للإنتهاء %s." -+msgstr "" -+"%s (%i%%)\n" -+"الوقت المقدر للإنتهاء %s." - --#: ../src/xfpm-battery.c:248 --#: ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "بطاريتك %s فارغة" - --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "النظام يعمل على طاقة البطارية" - --#: ../src/xfpm-battery.c:415 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -629,16 +592,16 @@ msgstr "" - "بطاريتك %s مشحونة بالكامل(%i%%).\n" - "لديك وقت %s تشغيل" - --#: ../src/xfpm-battery.c:424 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" - "Your %s is fully charged (%i%%)." - msgstr "" - "%s\n" --"بطاريتك %s تكم شحنها (%i%%)." -+"البطارية %s اكتمل شحنها (%i%%)." - --#: ../src/xfpm-battery.c:435 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -646,19 +609,19 @@ msgid "" - "%s until is fully charged." - msgstr "" - "%s\n" --"Your %sيُشحن (%i%%)\n" -+"بطاريتك %s تشحن (%i%%)\n" - "%s حتى النهاية." - --#: ../src/xfpm-battery.c:444 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" - "Your %s is charging (%i%%)." - msgstr "" - "%s\n" --"Your %s يُشحن (%i%%)." -+"بطاريتك %s تشحن (%i%%)." - --#: ../src/xfpm-battery.c:455 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -669,25 +632,25 @@ msgstr "" - "بطاريتك %s غير مشحونة (%i%%)\n" - "الزمن المتبقي %s." - --#: ../src/xfpm-battery.c:464 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" - "Your %s is discharging (%i%%)." - msgstr "" - "%s\n" --"Your %sيُفَرغ (%i%%)." -+"بطاريتك %s تفرغ (%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" - "%s waiting to discharge (%i%%)." - msgstr "" - "%s\n" --"%s ينتظر التفريغ (%i%%)." -+"%s ينتظر تفريغ (%i%%)." - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -696,41 +659,40 @@ msgstr "" - "%s\n" - "%sينتظر الشحن (%i%%)." - --#: ../src/xfpm-battery.c:481 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" - "Your %s is empty" - msgstr "" - "%s\n" --"Your %s فارغ" -+"بطاريتك %s فارغة" - --#: ../src/xfpm-battery.c:821 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "بطارية" - --#: ../src/xfpm-battery.c:827 -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" - msgstr "مراقبة البطارية" - --#: ../src/xfpm-battery.c:830 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" --msgstr "البطارية الفارة" -+msgstr "بطارية الفارة" - --#: ../src/xfpm-battery.c:833 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" --msgstr "البطارية لوحة المفاتيح" -+msgstr "بطارية لوحة المفاتيح" - --#: ../src/xfpm-battery.c:836 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" --msgstr "البطارية PDA" -+msgstr "بطارية PDA" - --#: ../src/xfpm-battery.c:839 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "بطارية الهاتف" - --#: ../src/xfpm-main.c:53 --#: ../src/xfpm-power-info.c:93 -+#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:93 - #, c-format - msgid "" - "\n" -@@ -751,13 +713,11 @@ msgstr "" - "تحت رخصة GNU GPL.\n" - "\n" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "True" - msgstr "صحيح" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "False" - msgstr "خاطئ" - -@@ -793,11 +753,11 @@ msgstr "بدون دعم DPMS\n" - - #: ../src/xfpm-main.c:141 - msgid "Can suspend" --msgstr "يمكن تعليق" -+msgstr "يمكن تعليقه" - - #: ../src/xfpm-main.c:143 - msgid "Can hibernate" --msgstr "يمكن السبات" -+msgstr "يمكن اسباته" - - #: ../src/xfpm-main.c:145 - msgid "Can spin down hard disks" -@@ -805,11 +765,11 @@ msgstr "يمكن أن تعطل دوران الأقراص الصلبة" - - #: ../src/xfpm-main.c:147 - msgid "Authorized to suspend" --msgstr "تصريح بتعليق" -+msgstr "تصريح بالتعليق" - - #: ../src/xfpm-main.c:149 - msgid "Authorized to hibernate" --msgstr "تصريح بلبسات" -+msgstr "تصريح بالابسات" - - #: ../src/xfpm-main.c:151 - msgid "Authorized to shutdown" -@@ -821,31 +781,31 @@ msgstr "تصريح بتدور الأقراص الصلبة" - - #: ../src/xfpm-main.c:155 - msgid "Has battery" --msgstr "البطارية" -+msgstr "لديه بطارية" - - #: ../src/xfpm-main.c:157 - msgid "Has brightness panel" --msgstr "لوحة السطوع" -+msgstr "لديه لوحة السطوع" - - #: ../src/xfpm-main.c:159 - msgid "Has power button" --msgstr "زر الطاقة" -+msgstr "لديه زر الطاقة" - - #: ../src/xfpm-main.c:161 - msgid "Has hibernate button" --msgstr "زر السبات" -+msgstr "لديه زر السبات" - - #: ../src/xfpm-main.c:163 - msgid "Has sleep button" --msgstr "زر النوم" -+msgstr "لديه زر نوم" - - #: ../src/xfpm-main.c:165 - msgid "Has LID" --msgstr "Has LID" -+msgstr "لديه LID" - - #: ../src/xfpm-main.c:264 - msgid "Do not daemonize" --msgstr "عدم جعل البرنامج خفي" -+msgstr "بدون برنامجة خفية" - - #: ../src/xfpm-main.c:265 - msgid "Enable debugging" -@@ -857,24 +817,23 @@ msgstr "تفريغ جميع المعلومات" - - #: ../src/xfpm-main.c:267 - msgid "Restart the running instance of Xfce power manager" --msgstr "إعادة تشغيل مثيل مدير الطاقة إكسفس" -+msgstr "إعادة تشغيل مثيل مدير طاقة إكسفس" - - #: ../src/xfpm-main.c:268 - msgid "Show the configuration dialog" --msgstr "عرض حوار التكوين" -+msgstr "عرض حوار الإعداد" - - #: ../src/xfpm-main.c:269 - msgid "Quit any running xfce power manager" - msgstr "خروج من أية مدير طاقة اكسفس قيد العمل" - --#: ../src/xfpm-main.c:270 --#: ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "معلومات الإصدار" - - #: ../src/xfpm-main.c:320 - msgid "Unable to get connection to the message bus session" --msgstr "عدم التمكين الحصول على إتصال برسالة جلسة bus" -+msgstr "عدم تمكين الحصول على إتصال برسالة جلسة bus" - - #: ../src/xfpm-main.c:414 - msgid "Another power manager is already running" -@@ -901,8 +860,7 @@ msgid "No data" - msgstr "لا توجد بيانات" - - #. TRANSLATORS: kernel module, usually a device driver --#: ../src/xfpm-power-info.c:125 --#: ../src/xfpm-power-info.c:130 -+#: ../src/xfpm-power-info.c:125 ../src/xfpm-power-info.c:130 - msgid "Kernel module" - msgstr "وحدة النواة" - -@@ -947,10 +905,8 @@ msgid "Intel wireless adaptor" - msgstr "اللاسلكي المحمول لأنتل" - - #. TRANSLATORS: a timer is something that fires periodically --#: ../src/xfpm-power-info.c:206 --#: ../src/xfpm-power-info.c:209 --#: ../src/xfpm-power-info.c:212 --#: ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:206 ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 ../src/xfpm-power-info.c:215 - #: ../src/xfpm-power-info.c:218 - #, c-format - msgid "Timer %s" -@@ -975,8 +931,7 @@ msgid "Wait %s" - msgstr "إنتظار %s" - - #. TRANSLATORS: a work queue is a list of work that has to be done --#: ../src/xfpm-power-info.c:230 --#: ../src/xfpm-power-info.c:233 -+#: ../src/xfpm-power-info.c:230 ../src/xfpm-power-info.c:233 - #, c-format - msgid "Work queue %s" - msgstr "قائمة الأعمال %s" -@@ -1021,8 +976,7 @@ msgstr "قيمة" - msgid "Device" - msgstr "جهاز" - --#: ../src/xfpm-power-info.c:363 --#: ../src/xfpm-power-info.c:739 -+#: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739 - msgid "Type" - msgstr "نوع" - -@@ -1039,8 +993,7 @@ msgid "Technology" - msgstr "تكنولوجيا" - - #. TRANSLATORS: Unit here is What hour --#: ../src/xfpm-power-info.c:414 --#: ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428 - #: ../src/xfpm-power-info.c:442 - msgid "Wh" - msgstr "Wh" -@@ -1102,14 +1055,13 @@ msgstr "مدير الطاقة لواجهة إكسفس" - #: ../panel-plugins/brightness/brightness-button.c:180 - #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2 - msgid "Control your LCD brightness" --msgstr "تحكم في لمعان LCD خاصتك" -+msgstr "تحكم في سطوع شاشة LCD" - - #: ../panel-plugins/brightness/brightness-button.c:182 - msgid "No device found" --msgstr "لم يتم العثور على أي جهاز" -+msgstr "لم يتم العثور على أجهزة" - - #: ../panel-plugins/brightness/brightness-button.c:649 - #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 - msgid "Brightness plugin" - msgstr "ملحق السطوع" -- -diff --git a/po/bg.po b/po/bg.po -index ee4d11d..5e3c085 100644 ---- a/po/bg.po -+++ b/po/bg.po -@@ -1,24 +1,24 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. --# -+# Bulgarian translation of xfce4-power-manager -+# Copyright (C) 2008-2009 Ali Abdallah -+# This file is distributed under the same license as the xfce4-power-manager package. -+# Milen Milev , 2009. -+# Kiril Kirilov (Cybercop) , 2012. - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2011-12-29 15:03+0000\n" --"PO-Revision-Date: 2011-12-29 22:24+0200\n" --"Last-Translator: Milen Milev \n" --"Language-Team: BULGARIAN\n" --"Language: BULGARIAN\n" -+"POT-Creation-Date: 2013-02-04 14:09+0000\n" -+"PO-Revision-Date: 2013-02-04 18:26+0200\n" -+"Last-Translator: Kiril Kirilov (Cybercop) \n" -+"Language-Team: Bulgarian\n" -+"Language: bg\n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=utf-8\n" -+"Content-Type: text/plain; charset=UTF-8\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%100<10 || n%100>=20) ? 1 : 2)\n" - "X-Poedit-Language: Bulgarian\n" - "X-Poedit-Country: BULGARIA\n" --"X-Poedit-SourceCharset: utf-8\n" --"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -+"X-Generator: KBabel 1.11.4\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 - msgid "Actions" -@@ -50,12 +50,12 @@ msgstr "Компютърът е с изтощена батерия при:" - - #. Hibernate menu option - #: ../data/interfaces/xfpm-settings.ui.h:8 --#: ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 --#: ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 --#: ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 -+#: ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 -+#: ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 -+#: ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 - #: ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" -@@ -79,12 +79,12 @@ msgid "Monitor power management control" - msgstr "Контрол на управлението на захранването на монитора" - - #: ../data/interfaces/xfpm-settings.ui.h:13 --#: ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 --#: ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 --#: ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 -+#: ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 -+#: ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Нищо" - -@@ -130,12 +130,12 @@ msgstr "В готовност" - - #. Suspend menu option - #: ../data/interfaces/xfpm-settings.ui.h:24 --#: ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 --#: ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 --#: ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 -+#: ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 -+#: ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 -+#: ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 - #: ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" -@@ -217,102 +217,102 @@ msgstr "часа" - msgid "Seconds" - msgstr "Секунди" - --#: ../settings/xfpm-settings.c:789 --#: ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 -+#: ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Приспиване и Дълбоко приспиване не се поддържат" - --#: ../settings/xfpm-settings.c:794 --#: ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 -+#: ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Приспиване и Дълбоко приспиване не са разрешени" - --#: ../settings/xfpm-settings.c:823 --#: ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 -+#: ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Изключи" - --#: ../settings/xfpm-settings.c:827 --#: ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 --#: ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 -+#: ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 -+#: ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Питай" - --#: ../settings/xfpm-settings.c:889 --#: ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 -+#: ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Заключи екрана" - --#: ../settings/xfpm-settings.c:957 --#: ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 -+#: ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Изключването на твърдите дискове е забранено" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Винаги показвай икона" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Когато има батерия" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Когато батерията се зарежда/разрежда" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Никога не показвай икона" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "Disable Display Power Management Signaling (DPMS), e.g don't attempt to switch off the display or put it in sleep mode." - msgstr "Изключи Сигнализация на управлението на захранването на монитора (DPMS), т.е. да не се опитва изключване на монитора." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Приспиването не се поддържа" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Приспиването не е разрешено" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Дълбокото приспиване не се поддържа" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Дълбокото приспиване не е разрешено" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "Когато всички източници на захранване на компютъра достигнат до това ниво" - --#: ../settings/xfpm-settings.c:1543 --#: ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 -+#: ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Общи" - --#: ../settings/xfpm-settings.c:1557 --#: ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 -+#: ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "При работа на захранване" - --#: ../settings/xfpm-settings.c:1572 --#: ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 -+#: ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "При работа на батерия" - --#: ../settings/xfpm-settings.c:1586 --#: ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 -+#: ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Разширени" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Проверете инсталацията на управлението на захранването" - -@@ -326,7 +326,7 @@ msgstr "SOCKET ID" - - #: ../settings/xfpm-settings-main.c:89 - #: ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Въведи '%s --help' за начин на употреба." -@@ -360,7 +360,7 @@ msgstr "Управлението на захранването не работи - #: ../src/xfpm-power.c:766 - #: ../src/xfpm-power.c:935 - #: ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:349 -+#: ../src/xfpm-battery.c:351 - #: ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "Управление на захранването" -@@ -373,19 +373,27 @@ msgstr "Настройки на Xfce управление на захранва - msgid "translator-credits" - msgstr "Милен Милев " - --#: ../src/xfpm-power.c:330 --msgid "An application is currently disabling the automatic sleep, doing this action now may damage the working state of this application, are you sure you want to hibernate the system?" --msgstr "Програма е изключила автоматичното приспиване. Изпълняването на това действие може да наруши работното състояние на програмата. Наистина ли искате дълбоко приспиване на системата?" -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "Дълбоко приспиване" -+ -+#: ../src/xfpm-power.c:329 -+msgid "An application is currently disabling the automatic sleep. Doing this action now may damage the working state of this application." -+msgstr "Програма е изключила автоматичното приспиване. Изпълняването на това действие може да наруши работното състояние на програмата." - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Наистина ли искате да приспите системата дълбоко?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Изход" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Всички работещи копия на управление на захранването ще се изключат" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Изход от управление на захранването?" - -@@ -450,7 +458,7 @@ msgstr "Захранването е изключено" - - #: ../src/xfpm-power.c:1159 - #: ../src/xfpm-power.c:1164 --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "Захранването е включено" -@@ -475,7 +483,7 @@ msgid "Battery" - msgstr "Батерия" - - #: ../src/xfpm-power-common.c:124 --#: ../src/xfpm-battery.c:824 -+#: ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "UPS" - -@@ -502,84 +510,88 @@ msgstr "Телефон" - #: ../src/xfpm-power-common.c:138 - #: ../src/xfpm-power-common.c:153 - #: ../src/xfpm-power-common.c:168 --#: ../src/xfpm-battery.c:842 -+#: ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "Непознат" - - #: ../src/xfpm-power-common.c:155 - msgid "Lithium ion" --msgstr "Литий-йон" -+msgstr "Литиево-йонна" - - #: ../src/xfpm-power-common.c:157 - msgid "Lithium polymer" --msgstr "Литий полимер" -+msgstr "Литиево-полимерна" - - #: ../src/xfpm-power-common.c:159 - msgid "Lithium iron phosphate" --msgstr "Литий желязо фосфат" -+msgstr "Литиево-желязо-фосфатна" - - #: ../src/xfpm-power-common.c:161 - msgid "Lead acid" --msgstr "Оловен ацетат" -+msgstr "Оловна" - - #: ../src/xfpm-power-common.c:163 - msgid "Nickel cadmium" --msgstr "Никел кадмии" -+msgstr "Никел-кадмиева" - - #: ../src/xfpm-power-common.c:165 - msgid "Nickel metal hybride" --msgstr "Никел метал хибрид" -+msgstr "Никел-метал-хидридна" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "Неустановено време" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i минута" - msgstr[1] "%i минути" -+msgstr[2] "%i минути" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" - msgstr[0] "%i час" - msgstr[1] "%i часа" -+msgstr[2] "%i часа" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "час" - msgstr[1] "часа" -+msgstr[2] "часа" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "минута" - msgstr[1] "минути" -+msgstr[2] "минути" - --#: ../src/xfpm-battery.c:209 --#: ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 -+#: ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "Вашата %s е напълно заредена" - --#: ../src/xfpm-battery.c:212 --#: ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 -+#: ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "Вашата %s се зарежда" - --#: ../src/xfpm-battery.c:222 -+#: ../src/xfpm-battery.c:224 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -588,18 +600,18 @@ msgstr "" - "%s (%i%%)\n" - "%s до пълно зареждане" - --#: ../src/xfpm-battery.c:230 --#: ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "Вашата %s се разрежда" - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "Системата работи на %s" - --#: ../src/xfpm-battery.c:242 -+#: ../src/xfpm-battery.c:244 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -608,18 +620,18 @@ msgstr "" - "%s (%i%%)\n" - "Оставащо време %s." - --#: ../src/xfpm-battery.c:248 --#: ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:250 -+#: ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "Вашата %s е изтощена" - --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "Системата работи на батерия" - --#: ../src/xfpm-battery.c:415 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -630,7 +642,7 @@ msgstr "" - "Вашата %s е напълно заредена (%i%%).\n" - "Разполагате с %s време за работа." - --#: ../src/xfpm-battery.c:424 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" -@@ -639,7 +651,7 @@ msgstr "" - "%s\n" - "Вашата %s е напълно заредена (%i%%)." - --#: ../src/xfpm-battery.c:435 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -650,7 +662,7 @@ msgstr "" - "Вашата %s се зарежда (%i%%)\n" - "%s до пълно зареждане." - --#: ../src/xfpm-battery.c:444 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" -@@ -659,7 +671,7 @@ msgstr "" - "%s\n" - "Вашата %s се зарежда (%i%%)." - --#: ../src/xfpm-battery.c:455 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -670,7 +682,7 @@ msgstr "" - "Вашата %s се разрежда (%i%%)\n" - "Оставащо време %s." - --#: ../src/xfpm-battery.c:464 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" -@@ -679,7 +691,7 @@ msgstr "" - "%s\n" - "Вашата %s се разрежда (%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" -@@ -688,7 +700,7 @@ msgstr "" - "%s\n" - "%s очаква разреждане (%i%%)." - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -697,7 +709,7 @@ msgstr "" - "%s\n" - "%s очаква зареждане (%i%%)." - --#: ../src/xfpm-battery.c:481 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" -@@ -706,27 +718,27 @@ msgstr "" - "%s\n" - "Вашата %s е изтощена" - --#: ../src/xfpm-battery.c:821 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "батерия" - --#: ../src/xfpm-battery.c:827 -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" - msgstr "батерия на монитора" - --#: ../src/xfpm-battery.c:830 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" - msgstr "батерия на мишката" - --#: ../src/xfpm-battery.c:833 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" - msgstr "батерия на клавиатурата" - --#: ../src/xfpm-battery.c:836 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" - msgstr "батерия на PDA" - --#: ../src/xfpm-battery.c:839 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "батерия на телефона" - -@@ -869,7 +881,7 @@ msgid "Quit any running xfce power manager" - msgstr "Изключи работещите xfce управления на захранването" - - #: ../src/xfpm-main.c:270 --#: ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Инфо за версията" - -diff --git a/po/ca.po b/po/ca.po -index cbfd33b..b2eb421 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -4,23 +4,23 @@ - # This file is distributed under the same license as the xfce4-power-manager - # package. - # Carles Muñoz Gorriz , 2008-2011. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2011-12-18 10:39+0000\n" -+"POT-Creation-Date: 2012-07-28 13:12+0000\n" - "PO-Revision-Date: 2011-12-18 13:58+0100\n" - "Last-Translator: Carles Muñoz Gorriz \n" - "Language-Team: Catalan\n" --"Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: \n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - "X-Poedit-Language: Catalan\n" --"X-Poedit-Country: SPAIN\n" - "X-Poedit-SourceCharset: utf-8\n" -+"X-Poedit-Country: SPAIN\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 - msgid "Actions" -@@ -51,10 +51,10 @@ msgid "Consider the computer on low power at:" - msgstr "Considera que el nivell de baixa energia comença a:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Hiberna" -@@ -75,10 +75,10 @@ msgstr "Pantalla" - msgid "Monitor power management control" - msgstr "Controlador de gestió d'energia de la pantalla" - --#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Res" - -@@ -123,10 +123,10 @@ msgid "Standby" - msgstr "En espera" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Suspèn" -@@ -199,51 +199,51 @@ msgstr "hores" - msgid "Seconds" - msgstr "Segons" - --#: ../settings/xfpm-settings.c:789 ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Les accions d'hibernació i suspensió no son compatible" - --#: ../settings/xfpm-settings.c:794 ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "No es permet ni hibernar ni suspendre el sistema" - --#: ../settings/xfpm-settings.c:823 ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Atura" - --#: ../settings/xfpm-settings.c:827 ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Pregunta" - --#: ../settings/xfpm-settings.c:889 ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Bloca la pantalla" - --#: ../settings/xfpm-settings.c:957 ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "S'ha denegat el permís per baixar les revolucions dels discs" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Mostra sempre la icona" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Quan hi ha alguna bateria" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Quan s'està carregant o descarregant la bateria" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Nom mostris mai la icona" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." -@@ -251,45 +251,45 @@ msgstr "" - "Desactivar DPMS (Display Power Management Signaling). No permet apagar ni " - "adormir la pantalla." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "L'acció de suspensió no és compatible" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "No es permet suspendre el sistema" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "L'acció d'hibernació no és compatible" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "No es permet hivernar el sistema" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "" - "Quan totes les fonts d'energia de l'ordinador assoleixin aquest valor de " - "càrrega" - --#: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "General" - --#: ../settings/xfpm-settings.c:1557 ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "Xarxa elèctrica" - --#: ../settings/xfpm-settings.c:1572 ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "Bateria" - --#: ../settings/xfpm-settings.c:1586 ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Avançades" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Comprova la instaŀlació del gestor d'energia" - -@@ -302,7 +302,7 @@ msgid "SOCKET ID" - msgstr "SÒCOL ID" - - #: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Feu «%s --help» per veure l'ús." -@@ -334,7 +334,7 @@ msgstr "" - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 - #: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 - #: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:349 ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "Gestor d'energia" - -@@ -346,25 +346,32 @@ msgstr "Ajustaments del gestor d'energia de Xfce" - msgid "translator-credits" - msgstr "Carles Muñoz Gorriz , 2008-2010." - --#: ../src/xfpm-power.c:330 -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Hiberna" -+ -+#: ../src/xfpm-power.c:329 - msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" - "Alguna aplicació no permet l'adormiment automàtic, fer-ho ara podria " --"malmetre l'estat d'aquesta aplicació, esteu segur que voleu hibernar el " -+"malmetre l'estat d'aquesta aplicació, esteu segur que voleu suspendre el " - "sistema?" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Voleu hibernar el sistema?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Surt" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Totes les sessions del gestor d'energia es tancaran" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Voleu sortir del gestor d'energia?" - -@@ -376,7 +383,8 @@ msgstr "Informació d'energia" - #. * - #. * Power Mode - #. * --#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, -+#. normal) - #: ../src/xfpm-power.c:550 - msgid "Mode" - msgstr "Mode" -@@ -426,7 +434,7 @@ msgstr "" - msgid "Adaptor is offline" - msgstr "L'adaptador no està connectat" - --#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:408 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "L'adaptador està connectat" -@@ -446,7 +454,7 @@ msgstr "La suspensió no és compatible" - msgid "Battery" - msgstr "Bateria" - --#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:824 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "SAI" - -@@ -471,7 +479,7 @@ msgid "Phone" - msgstr "Telèfon" - - #: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:842 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "Desconeguda" - -@@ -499,18 +507,18 @@ msgstr "Níquel i cadmi" - msgid "Nickel metal hybride" - msgstr "Níquel i metall híbrid" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "Temps desconegut" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i minut" - msgstr[1] "%i minuts" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -519,34 +527,34 @@ msgstr[1] "%i hores" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "hora" - msgstr[1] "hores" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minut" - msgstr[1] "minuts" - --#: ../src/xfpm-battery.c:209 ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "%s: està totalment carregada" - --#: ../src/xfpm-battery.c:212 ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "%s: s'està carregant" - --#: ../src/xfpm-battery.c:222 -+#: ../src/xfpm-battery.c:224 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -555,17 +563,17 @@ msgstr "" - "%s (%i%%)\n" - "%s fins a carregar-se." - --#: ../src/xfpm-battery.c:230 ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "%s: està descarregada" - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "El sistema està funcionant amb l'energia de %s" - --#: ../src/xfpm-battery.c:242 -+#: ../src/xfpm-battery.c:244 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -574,17 +582,17 @@ msgstr "" - "%s (%i%%)\n" - "El temps restant estimat és %s." - --#: ../src/xfpm-battery.c:248 ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "%s: està descarregada" - --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "El sistema està funcionant amb l'energia de la bateria" - --#: ../src/xfpm-battery.c:415 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -595,7 +603,7 @@ msgstr "" - "%s està carregat (%i%%).\n" - "%s de funcionament previst" - --#: ../src/xfpm-battery.c:424 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" -@@ -604,7 +612,7 @@ msgstr "" - "%s\n" - "%s s'ha carregat (%i%%)." - --#: ../src/xfpm-battery.c:435 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -615,7 +623,7 @@ msgstr "" - "%s s'està carregant (%i%%)\n" - "%s fins que es carregui." - --#: ../src/xfpm-battery.c:444 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" -@@ -624,7 +632,7 @@ msgstr "" - "%s\n" - "%s s'està carregant (%i%%)." - --#: ../src/xfpm-battery.c:455 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -635,7 +643,7 @@ msgstr "" - "%s: s'està descarregant (%i%%)\n" - "El temps restant estimat és %s." - --#: ../src/xfpm-battery.c:464 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" -@@ -644,7 +652,7 @@ msgstr "" - "%s\n" - "%s s'està descarregant(%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" -@@ -653,7 +661,7 @@ msgstr "" - "%s\n" - "%s està esperant per descarregar-se (%i%%)." - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -662,7 +670,7 @@ msgstr "" - "%s\n" - "%s s'està esperant per carregar-se (%i%%)." - --#: ../src/xfpm-battery.c:481 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" -@@ -671,27 +679,27 @@ msgstr "" - "%s\n" - "%s s'ha descarregat del tot" - --#: ../src/xfpm-battery.c:821 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "Bateria" - --#: ../src/xfpm-battery.c:827 -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" - msgstr "Bateria del monitor" - --#: ../src/xfpm-battery.c:830 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" - msgstr "Bateria del ratolí" - --#: ../src/xfpm-battery.c:833 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" - msgstr "Bateria del teclat" - --#: ../src/xfpm-battery.c:836 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" - msgstr "bateria de la PDA" - --#: ../src/xfpm-battery.c:839 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "bateria del telèfon" - -@@ -830,7 +838,7 @@ msgstr "Mostra el diàleg de configuració" - msgid "Quit any running xfce power manager" - msgstr "Surt de tots els gestors d'energia de Xfce en execució" - --#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Informació de la versió" - -@@ -1069,6 +1077,15 @@ msgstr "No s'ha trobat el dispositiu" - msgid "Brightness plugin" - msgstr "Connector de brillantor" - -+#~ msgid "" -+#~ "An application is currently disabling the automatic sleep, doing this " -+#~ "action now may damage the working state of this application, are you sure " -+#~ "you want to hibernate the system?" -+#~ msgstr "" -+#~ "Alguna aplicació no permet l'adormiment automàtic, fer-ho ara podria " -+#~ "malmetre l'estat d'aquesta aplicació, esteu segur que voleu hibernar el " -+#~ "sistema?" -+ - #~ msgid "Xfce 4 Power Manager" - #~ msgstr "Gestor d'energia de Xfce 4" - -@@ -1175,15 +1192,6 @@ msgstr "Connector de brillantor" - #~ msgid "Are you sure you want to proceed?" - #~ msgstr "Voleu continuar?" - --#~ msgid "" --#~ "An application is currently disabling the automatic sleep, doing this " --#~ "action now may damage the working state of this application, are you sure " --#~ "you want to suspend the system?" --#~ msgstr "" --#~ "Alguna aplicació no permet l'adormiment automàtic, fer-ho ara podria " --#~ "malmetre l'estat d'aquesta aplicació, esteu segur que voleu suspendre el " --#~ "sistema?" -- - #~ msgid "Monitor power control" - #~ msgstr "Controlador d'energia de la pantalla" - -@@ -1299,9 +1307,6 @@ msgstr "Connector de brillantor" - #~ "No s'ha pogut llegir l'estat de l'adaptador, el gestor d'energia no " - #~ "funcionarà correctament" - --#~ msgid "Are you sure you want to hibernate the system?" --#~ msgstr "Voleu hibernar el sistema?" -- - #~ msgid "UPS configuration" - #~ msgstr "Configuració de SAI" - -diff --git a/po/de.po b/po/de.po -index aac54ce..891392a 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: xfce 4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-17 16:21+0000\n" -+"POT-Creation-Date: 2012-10-02 12:48+0000\n" - "PO-Revision-Date: 2012-04-14 16:22+0200\n" - "Last-Translator: Jakob Kramer \n" - "Language-Team: German\n" -@@ -51,10 +51,10 @@ msgid "Consider the computer on low power at:" - msgstr "Energiezustand als niedrig betrachten bei:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Ruhezustand" -@@ -75,10 +75,10 @@ msgstr "Monitor" - msgid "Monitor power management control" - msgstr "Energieverwaltung des Monitors" - --#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Nichts" - -@@ -123,10 +123,10 @@ msgid "Standby" - msgstr "Bereitschaft" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Standby" -@@ -199,51 +199,51 @@ msgstr "Stunden" - msgid "Seconds" - msgstr "Sekunden" - --#: ../settings/xfpm-settings.c:789 ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Ruhezustand und Standby-Modus werden nicht unterstützt" - --#: ../settings/xfpm-settings.c:794 ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Die Operationen für den Ruhezustand und Standby sind nicht erlaubt" - --#: ../settings/xfpm-settings.c:823 ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Herunterfahren" - --#: ../settings/xfpm-settings.c:827 ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Fragen" - --#: ../settings/xfpm-settings.c:889 ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Bildschirm sperren" - --#: ../settings/xfpm-settings.c:957 ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Keine Rechte für die Festplattenverlangsamung" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Immer ein Symbol zeigen" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Bei Batterieversorgung" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Beim Laden oder Entladen der Batterie" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Nie das Symbol zeigen" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." -@@ -251,43 +251,43 @@ msgstr "" - "Automatische Energieverwaltung des Bildschirms (DPMS) ausschalten, also " - "nicht versuchen, die Anzeige abzuschalten oder schlafen zu legen." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Standby-Modus wird nicht unterstützt" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Die Operation für Standby ist nicht erlaubt" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Ruhezustand wird nicht unterstützt" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Die Operation für den Ruhezustand ist nicht erlaubt" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "Wenn alle Stromquellen des Computers diesen Level erreichen" - --#: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Allgemein" - --#: ../settings/xfpm-settings.c:1557 ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "Bei Netzversorgung" - --#: ../settings/xfpm-settings.c:1572 ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "Im Batteriebetrieb" - --#: ../settings/xfpm-settings.c:1586 ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Erweitert" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Überprüfen Sie die Installation der Energieverwaltung" - -@@ -300,7 +300,7 @@ msgid "SOCKET ID" - msgstr "SOCKET-NR" - - #: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "" -@@ -351,26 +351,33 @@ msgstr "" - "Paul Seyfert\n" - "Johannes Lips" - --#: ../src/xfpm-power.c:330 -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Ruhezustand" -+ -+#: ../src/xfpm-power.c:329 - msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" - "Eine laufende Anwendung verhindert momentan das automatische Schlafen. Wenn " - "Sie diese Aktion jetzt jedoch durchführen, kann der Zustand der Anwendung " --"beschädigt werden. Sind Sie sicher, dass Sie Ihr System jetzt in den " --"Ruhezustand versetzen wollen?" -+"beschädigt werden. Sind Sie sicher, dass Sie das System jetzt in den " -+"Standbymodus versetzen wollen?" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Möchten Sie das System wirklich in den Ruhezustand versetzen?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Beenden" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Alle Instanzen der Energieverwaltung werden beendet" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Xfce Energieverwaltung beenden?" - -@@ -837,7 +844,7 @@ msgstr "Einstellungsdialog anzeigen" - msgid "Quit any running xfce power manager" - msgstr "Energieverwaltung für Xfce beenden" - --#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Versionsinformation" - -@@ -1074,7 +1081,17 @@ msgstr "Kein Gerät gefunden" - #: ../panel-plugins/brightness/brightness-button.c:649 - #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 - msgid "Brightness plugin" --msgstr "Plugin zur Helligkeitsregelung" -+msgstr "Helligkeitsregelung" -+ -+#~ msgid "" -+#~ "An application is currently disabling the automatic sleep, doing this " -+#~ "action now may damage the working state of this application, are you sure " -+#~ "you want to hibernate the system?" -+#~ msgstr "" -+#~ "Eine laufende Anwendung verhindert momentan das automatische Schlafen. " -+#~ "Wenn Sie diese Aktion jetzt jedoch durchführen, kann der Zustand der " -+#~ "Anwendung beschädigt werden. Sind Sie sicher, dass Sie Ihr System jetzt " -+#~ "in den Ruhezustand versetzen wollen?" - - #~ msgid "Xfce 4 Power Manager" - #~ msgstr "Energieverwaltung für Xfce" -@@ -1185,16 +1202,6 @@ msgstr "Plugin zur Helligkeitsregelung" - #~ msgid "Are you sure you want to proceed?" - #~ msgstr "Möchten Sie wirklich fortfahren?" - --#~ msgid "" --#~ "An application is currently disabling the automatic sleep, doing this " --#~ "action now may damage the working state of this application, are you sure " --#~ "you want to suspend the system?" --#~ msgstr "" --#~ "Eine laufende Anwendung verhindert momentan das automatische Schlafen. " --#~ "Wenn Sie diese Aktion jetzt jedoch durchführen, kann der Zustand der " --#~ "Anwendung beschädigt werden. Sind Sie sicher, dass Sie das System jetzt " --#~ "in den Standbymodus versetzen wollen?" -- - #~ msgid "Monitor power control" - #~ msgstr "Energieverwaltung für Monitor aktivieren" - -@@ -1296,9 +1303,6 @@ msgstr "Plugin zur Helligkeitsregelung" - #~ "Kann Zustand der Stromversorgung nicht auslesen, die Energieverwaltung " - #~ "wird nicht ordnungsgemäß funktionieren" - --#~ msgid "Are you sure you want to hibernate the system?" --#~ msgstr "Möchten Sie das System wirklich in den Ruhezustand versetzen?" -- - #~ msgid "UPS configuration" - #~ msgstr "Konfiguration der USV" - -diff --git a/po/en_GB.po b/po/en_GB.po -index 964cba9..4a487de 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -548,8 +548,7 @@ msgid "" - "%s (%i%%)\n" - "%s until is fully charged." - msgstr "" --"%s\n" --"Your %s is charging (%i%%)\n" -+"%s (%i%%)\n" - "%s until is fully charged." - - #: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 -@@ -568,8 +567,7 @@ msgid "" - "%s (%i%%)\n" - "Estimated time left is %s." - msgstr "" --"%s\n" --"Your %s is discharging (%i%%)\n" -+"%s (%i%%)\n" - "Estimated time left is %s." - - #: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 -diff --git a/po/hr.po b/po/hr.po -index a1c0420..fe00788 100644 ---- a/po/hr.po -+++ b/po/hr.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: power manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-22 05:36+0000\n" -+"POT-Creation-Date: 2012-08-27 15:27+0000\n" - "PO-Revision-Date: 2011-10-02 19:47+0200\n" - "Last-Translator: Ivica Kolić \n" - "Language-Team: Croatian \n" -@@ -643,6 +643,9 @@ msgid "" - "%s\n" - "%s waiting to discharge (%i%%)." - msgstr "" -+"\t\r\n" -+"%s\n" -+"%s čekam da se isprazni (%i%%)." - - #: ../src/xfpm-battery.c:482 - #, c-format -@@ -650,6 +653,8 @@ msgid "" - "%s\n" - "%s waiting to charge (%i%%)." - msgstr "" -+"%s\n" -+"%s čekam da se napuni (%i%%)." - - #: ../src/xfpm-battery.c:486 - #, c-format -@@ -705,11 +710,11 @@ msgstr "" - - #: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "True" --msgstr "" -+msgstr "Istinito" - - #: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "False" --msgstr "" -+msgstr "Neistinito" - - #: ../src/xfpm-main.c:113 - #, c-format -@@ -837,12 +842,12 @@ msgstr "Xfce upravitelj energijom je već pokrenut" - #: ../src/xfpm-inhibit.c:331 - #, c-format - msgid "Invalid arguments" --msgstr "" -+msgstr "Neispravni argumenti" - - #: ../src/xfpm-inhibit.c:357 - #, c-format - msgid "Invalid cookie" --msgstr "" -+msgstr "Neispravni kolačić" - - #. TRANSLATORS: the command line was not provided - #: ../src/xfpm-power-info.c:118 -@@ -942,7 +947,7 @@ msgstr "USB aktivnost %s" - #: ../src/xfpm-power-info.c:242 - #, c-format - msgid "Wakeup %s" --msgstr "" -+msgstr "Probudi %s" - - #. TRANSLATORS: interupts on the system required for basic operation - #: ../src/xfpm-power-info.c:245 -@@ -1028,7 +1033,7 @@ msgstr "PID" - - #: ../src/xfpm-power-info.c:754 - msgid "Wakeups" --msgstr "" -+msgstr "Buđenja" - - #: ../src/xfpm-power-info.c:760 - msgid "Command" -diff --git a/po/pl.po b/po/pl.po -index d3efc17..8cb3326 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -2,21 +2,20 @@ - # Copyright (C) 2011 xfce4-power-manager COPYRIGHT HOLDER - # This file is distributed under the same license as the xfce4-power-manager package. - # Piotr Sokół , 2011, 2012. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce-power-manager 1.0.10\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-10 11:51+0000\n" --"PO-Revision-Date: 2012-04-12 09:28+0200\n" -+"POT-Creation-Date: 2012-10-06 13:06+0000\n" -+"PO-Revision-Date: 2012-04-29 18:56+0200\n" - "Last-Translator: Piotr Sokół \n" - "Language-Team: polski <>\n" --"Language: pl\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bits\n" --"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n" --"%100<10 || n%100>=20)) ? 1 : 2));\n" -+"Language: pl\n" -+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2));\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 - msgid "Actions" -@@ -47,10 +46,10 @@ msgid "Consider the computer on low power at:" - msgstr "Niski poziom naładowania akumulatora:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Zahibernowanie" -@@ -72,10 +71,10 @@ msgstr "Ekran" - msgid "Monitor power management control" - msgstr "Zarządzanie zasilaniem ekranu" - --#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Brak" - -@@ -89,25 +88,23 @@ msgstr "Oszczędzanie energii w zamian za niższą wydajność" - - #: ../data/interfaces/xfpm-settings.ui.h:16 - msgid "Put display to sleep when computer is inactive for:" --msgstr "" --"Czas bezczynności, po którym ekran zostanie wprowadzony w stan uśpienia:" -+msgstr "Czas bezczynności trybu niskiego poboru energii?" - - #: ../data/interfaces/xfpm-settings.ui.h:17 - msgid "Put the computer to sleep when inactive for:" --msgstr "" --"Czas bezczynności, po którym komputer zostanie wprowadzony w stan uśpienia:" -+msgstr "Czas bezczynności wstrzymania działania komputera:" - - #: ../data/interfaces/xfpm-settings.ui.h:18 - msgid "Reduce screen brightness when computer is inactive for:" --msgstr "Czas bezczynności, po którym zostanie zmniejszona jasność ekranu:" -+msgstr "Czas bezczynności zmniejszenia jasności ekranu:" - - #: ../data/interfaces/xfpm-settings.ui.h:19 - msgid "Set computer inactivity sleep mode:" --msgstr "Tryb niskiego poboru mocy komputera:" -+msgstr "Tryb niskiego poboru energii komputera:" - - #: ../data/interfaces/xfpm-settings.ui.h:20 - msgid "Set monitor sleep mode:" --msgstr "Tryb niskiego poboru mocy ekranu:" -+msgstr "Tryb niskiego poboru energii ekranu:" - - #: ../data/interfaces/xfpm-settings.ui.h:21 - msgid "Show notifications to notify about the battery state" -@@ -122,17 +119,17 @@ msgid "Standby" - msgstr "Czuwanie" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Wstrzymanie" - - #: ../data/interfaces/xfpm-settings.ui.h:25 - msgid "Switch off display when computer is inactive for:" --msgstr "Czas bezczynności, po którym ekran zostanie wygaszony:" -+msgstr "Czas bezczynności wygaszenia ekranu:" - - #: ../data/interfaces/xfpm-settings.ui.h:26 - msgid "System tray icon: " -@@ -198,96 +195,96 @@ msgstr "godzin" - msgid "Seconds" - msgstr "sekund" - --#: ../settings/xfpm-settings.c:789 ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Hibernowanie i wstrzymywanie pracy komputera nie jest obsługiwane" - --#: ../settings/xfpm-settings.c:794 ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Brak uprawnień, aby wstrzymać lub zahibernować pracę komputera" - --#: ../settings/xfpm-settings.c:823 ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Wyłączenie" - --#: ../settings/xfpm-settings.c:827 ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Wybranie czynności" - --#: ../settings/xfpm-settings.c:889 ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Zablokowanie ekranu" - --#: ../settings/xfpm-settings.c:957 ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Brak uprawnień, aby wstrzymać pracę dysków twardych" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Zawsze" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Po wykryciu akumulatora" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Podczas działania akumulatora" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Nigdy" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." - msgstr "" --"Wyłączenie obsługi standardu DPMS (np. wyłączania lub wstrzymywania " --"działania ekranu)." -+"Przełącza obsługę standardu DPMS (np. wyłączania lub wstrzymywania działania " -+"ekranu)." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Wstrzymywanie pracy komputera nie jest obsługiwane" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Brak uprawnień, aby wstrzymać pracę komputera" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Hibernowanie pracy komputera nie jest obsługiwane" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Brak uprawnień, aby zahibernować pracę komputera" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "" - "Kiedy wszystkie źródła zasilania osiągną następujący poziom naładowania" - --#: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Ogólne" - --#: ../settings/xfpm-settings.c:1557 ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "Zasilanie sieciowe" - --#: ../settings/xfpm-settings.c:1572 ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "Zasilanie akumulatorowe" - --#: ../settings/xfpm-settings.c:1586 ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Dodatkowe" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Proszę sprawdzić poprawność instalacji programu menedżer zasilania" - -@@ -300,7 +297,7 @@ msgid "SOCKET ID" - msgstr "ID_GNIAZDA" - - #: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Proszę wprowadzić „%s --help”, aby wypisać komunikat pomocy." -@@ -331,7 +328,7 @@ msgstr "Menedżer zasilania nie jest uruchomiony. Uruchomić go?" - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 - #: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 - #: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:349 ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "Menedżer zasilania" - -@@ -343,25 +340,31 @@ msgstr "Konfiguruje ustawienia zasilania" - msgid "translator-credits" - msgstr "Piotr Sokół , 2011, 2012." - --#: ../src/xfpm-power.c:330 -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Zahibernuj" -+ -+#: ../src/xfpm-power.c:329 - msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" --"Aktualnie uruchomiony program zapobiega automatycznemu wstrzymaniu dzałania " --"komputera. Kontynuowanie może spowodować jego niewłaściwe działanie. " --"Zahibernować działanie komputera?" -+"Aktualnie uruchomiony program zapobiega automatycznemu wstrzymaniu działania " -+"komputera. Kontynuowanie może spowodować jego niewłaściwe działanie." - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Zahibernować działanie komputera?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Zakończ" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Wszystkie wystąpienia menedżera zasilania zostaną zakończone" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Zakończyć działanie menedżera zasilania?" - -@@ -373,7 +376,8 @@ msgstr "O zasilaniu" - #. * - #. * Power Mode - #. * --#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, -+#. normal) - #: ../src/xfpm-power.c:550 - msgid "Mode" - msgstr "Tryb" -@@ -423,7 +427,7 @@ msgstr "" - msgid "Adaptor is offline" - msgstr "Odłączono zasilacz sieciowy" - --#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:408 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "Podłączono zasilacz sieciowy" -@@ -443,7 +447,7 @@ msgstr "Wstrzymywanie pracy komputera jest nieobsługiwane" - msgid "Battery" - msgstr "Akumulator" - --#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:824 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "Zasilacz awaryjny" - -@@ -468,7 +472,7 @@ msgid "Phone" - msgstr "Telefon" - - #: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:842 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "Nieznana" - -@@ -496,11 +500,11 @@ msgstr "Niklowo-kadmowy" - msgid "Nickel metal hybride" - msgstr "Niklowo-metalowo-wodorkowy" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "Nieznany czas" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" -@@ -508,7 +512,7 @@ msgstr[0] "%i minuta" - msgstr[1] "%i minuty" - msgstr[2] "%i minut" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -518,36 +522,36 @@ msgstr[2] "%i godzin" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "godzina" - msgstr[1] "godziny" - msgstr[2] "godzin" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minuta" - msgstr[1] "minuty" - msgstr[2] "minut" - --#: ../src/xfpm-battery.c:209 ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "%s został całkowicie naładowany" - --#: ../src/xfpm-battery.c:212 ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "%s jest ładowany" - --#: ../src/xfpm-battery.c:222 -+#: ../src/xfpm-battery.c:224 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -556,17 +560,17 @@ msgstr "" - "%s (%i%%).\n" - "Pozostały czas do całkowitego naładowania: %s" - --#: ../src/xfpm-battery.c:230 ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "%s jest rozładowywany" - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "%s jest używany jako bieżące źródło zasilania" - --#: ../src/xfpm-battery.c:242 -+#: ../src/xfpm-battery.c:244 - #, c-format - msgid "" - "%s (%i%%)\n" -@@ -575,17 +579,17 @@ msgstr "" - "%s (%i%%).\n" - "Przewidywany czas zasilania: %s." - --#: ../src/xfpm-battery.c:248 ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "%s został całkowicie rozładowany" - --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "Komputer jest zasilany przez akumulator" - --#: ../src/xfpm-battery.c:415 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -596,7 +600,7 @@ msgstr "" - "%s został całkowicie naładowany (%i%%).\n" - "Przewidywany czas zasilania: %s." - --#: ../src/xfpm-battery.c:424 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" -@@ -605,7 +609,7 @@ msgstr "" - "%s\n" - "%s został całkowicie naładowany (%i%%)." - --#: ../src/xfpm-battery.c:435 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -616,7 +620,7 @@ msgstr "" - "%s jest ładowany (%i%%).\n" - "Pozostały czas do całkowitego naładowania: %s" - --#: ../src/xfpm-battery.c:444 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" -@@ -625,7 +629,7 @@ msgstr "" - "%s\n" - "%s jest ładowany (%i%%)." - --#: ../src/xfpm-battery.c:455 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -636,7 +640,7 @@ msgstr "" - "%s jest rozładowywany (%i%%).\n" - "Przewidywany czas zasilania: %s." - --#: ../src/xfpm-battery.c:464 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" -@@ -645,7 +649,7 @@ msgstr "" - "%s\n" - "%s jest rozładowywany (%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" -@@ -654,7 +658,7 @@ msgstr "" - "%s\n" - "%s: oczekiwanie na rozładowanie (%i%%)" - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -663,7 +667,7 @@ msgstr "" - "%s\n" - "%s: oczekiwanie na naładowanie (%i%%)" - --#: ../src/xfpm-battery.c:481 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" -@@ -672,27 +676,27 @@ msgstr "" - "%s\n" - "%s został całkowicie rozładowany." - --#: ../src/xfpm-battery.c:821 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "Akumulator" - --#: ../src/xfpm-battery.c:827 -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" - msgstr "Akumulator ekranu" - --#: ../src/xfpm-battery.c:830 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" - msgstr "Akumulator myszy" - --#: ../src/xfpm-battery.c:833 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" - msgstr "Akumulator klawiatury" - --#: ../src/xfpm-battery.c:836 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" - msgstr "Akumulator palmtopa" - --#: ../src/xfpm-battery.c:839 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "Akumulator telefonu" - -@@ -789,7 +793,7 @@ msgstr "Posiada akumulator" - - #: ../src/xfpm-main.c:157 - msgid "Has brightness panel" --msgstr "" -+msgstr "Posiada panel jasności" - - #: ../src/xfpm-main.c:159 - msgid "Has power button" -@@ -831,7 +835,7 @@ msgstr "Wyświetla okno konfiguracji programu" - msgid "Quit any running xfce power manager" - msgstr "Kończy działanie wszystkich wystąpień programu" - --#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Wypisuje informacje o wersji" - -diff --git a/po/pt_BR.po b/po/pt_BR.po -index 03615a2..0ce3a05 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -4,19 +4,19 @@ - # Vladimir Melo , 2008. - # Og Maciel , 2008-2009. - # Henrique P Machado , 2008, 2011. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-15 18:21+0000\n" -+"POT-Creation-Date: 2012-06-01 00:54+0000\n" - "PO-Revision-Date: 2012-04-15 17:33-0300\n" - "Last-Translator: Henrique P Machado \n" - "Language-Team: Brazilian Portuguese \n" --"Language: pt_BR\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: pt_BR\n" - "Plural-Forms: nplurals=2; plural=(n > 1);\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 -@@ -48,10 +48,10 @@ msgid "Consider the computer on low power at:" - msgstr "Considerar o computador com pouca energia em:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Hibernar" -@@ -72,10 +72,10 @@ msgstr "Configurações do monitor" - msgid "Monitor power management control" - msgstr "Habilitar gerenciador de energia do monitor" - --#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Nada" - -@@ -122,10 +122,10 @@ msgid "Standby" - msgstr "Modo de espera após" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Suspender" -@@ -198,51 +198,51 @@ msgstr "horas" - msgid "Seconds" - msgstr "Segundos" - --#: ../settings/xfpm-settings.c:789 ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Não há suporte a hibernação e suspensão de operações" - --#: ../settings/xfpm-settings.c:794 ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Hibernação e suspensão de operações não permitidas" - --#: ../settings/xfpm-settings.c:823 ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Desligar" - --#: ../settings/xfpm-settings.c:827 ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Perguntar" - --#: ../settings/xfpm-settings.c:889 ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Bloquear tela" - --#: ../settings/xfpm-settings.c:957 ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Permissão de redução de velocidade dos discos rígidos negada" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Sempre mostrar ícone" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Quando a bateria está presente" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Quando a bateria está carregando ou descarregando" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Nunca mostrar ícone" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." -@@ -251,43 +251,43 @@ msgstr "" - "Por exemplo: não tenta desligar o monitor ou colocá-lo no modo de " - "inatividade." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Operação de suspensão não suportada" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Operação de suspensão não permitida" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Operação de hibernação não suportada" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Operação de hibernação não permitida" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "Quando todas as fontes de energia do computador atingirem este nível" - --#: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Geral" - --#: ../settings/xfpm-settings.c:1557 ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "Usando a tomada" - --#: ../settings/xfpm-settings.c:1572 ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "Usando a bateria" - --#: ../settings/xfpm-settings.c:1586 ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Estendido" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Veja a instalação de seu gerenciador de energia" - -@@ -300,7 +300,7 @@ msgid "SOCKET ID" - msgstr "SOCKET ID" - - #: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Digite \"%s --help\" para informações de uso." -@@ -347,26 +347,33 @@ msgstr "" - "Og Maciel \n" - "Henrique P Machado " - --#: ../src/xfpm-power.c:330 -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Hibernar" -+ -+#: ../src/xfpm-power.c:329 - msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" - "Um aplicativo está atualmente desabilitando o modo de inatividade " - "automaticamente. Ao executar esta ação agora, poderá danificar o estado de " - "trabalho atual deste aplicativo. Você tem certeza de que quer hibernar o " - "sistema?" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Você tem certeza que deseja hibernar o sistema?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Sair" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Todas as instâncias do Gerenciador de energia serão fechadas" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Sair do Gerenciador de energia Xfce?" - -@@ -378,7 +385,8 @@ msgstr "Informações de energia" - #. * - #. * Power Mode - #. * --#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, -+#. normal) - #: ../src/xfpm-power.c:550 - msgid "Mode" - msgstr "Modo" -@@ -832,7 +840,7 @@ msgstr "Mostra o diálogo de configuração" - msgid "Quit any running xfce power manager" - msgstr "Sai do Gerenciador de energia xfce" - --#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Informações da versão" - -@@ -1184,9 +1192,6 @@ msgstr "Plug-in de brilho" - #~ "Não foi possível ler o status do adaptador, o gerenciador de energia não " - #~ "funcionará adequadamente" - --#~ msgid "Are you sure you want to hibernate the system?" --#~ msgstr "Você tem certeza que deseja hibernar o sistema?" -- - #~ msgid "UPS configuration" - #~ msgstr "Configuração de UPS" - -diff --git a/po/ro.po b/po/ro.po -index 37791b9..c1a5548 100644 ---- a/po/ro.po -+++ b/po/ro.po -@@ -3,124 +3,125 @@ - # Copyright (C) 2012 THE xfce4-power-manager'S COPYRIGHT HOLDER - # This file is distributed under the same license as the xfce4-power-manager package. - # Mișu Moldovan , 2012. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager 1.1\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-26 18:24+0300\n" -+"POT-Creation-Date: 2012-11-17 10:54+0000\n" - "PO-Revision-Date: 2012-04-27 12:12+0300\n" - "Last-Translator: Mișu Moldovan \n" - "Language-Team: Romanian \n" -+"Language: ro\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"Language: ro\n" - "X-Generator: Virtaal 0.7.0\n" --"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" -+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -+"20)) ? 1 : 2);;\n" - --#: ../data/interfaces/xfpm-settings.ui.h:1 ../settings/xfpm-settings.c:809 --#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 --#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 --#: ../settings/xfpm-settings.c:1312 --msgid "Nothing" --msgstr "Nimic" -+#: ../data/interfaces/xfpm-settings.ui.h:1 -+msgid "Actions" -+msgstr "Acțiuni" - - #: ../data/interfaces/xfpm-settings.ui.h:2 --#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 --msgid "Xfce Power Manager" --msgstr "Managerul de consum Xfce" -+msgid "Advanced Options" -+msgstr "Opțiuni avansate" - - #: ../data/interfaces/xfpm-settings.ui.h:3 --msgid "Power manager settings" --msgstr "Opțiuni ale managerului de consum" -+msgid "Brightness" -+msgstr "Luminozitate" - - #: ../data/interfaces/xfpm-settings.ui.h:4 --msgid "When sleep button is pressed:" --msgstr "La apăsarea butonului de repaus:" -+msgid "General Options" -+msgstr "Opțiuni generale" - - #: ../data/interfaces/xfpm-settings.ui.h:5 --msgid "When hibernate button is pressed:" --msgstr "La apăsarea butonului de hibernare:" -+msgid "Monitor" -+msgstr "Monitor" - - #: ../data/interfaces/xfpm-settings.ui.h:6 --msgid "When power button is pressed:" --msgstr "La apăsarea butonului de oprire:" -+msgid "Actions" -+msgstr "Acțiuni" - - #: ../data/interfaces/xfpm-settings.ui.h:7 --msgid "System tray icon: " --msgstr "Iconiță în zona de notificare: " -+msgid "Consider the computer on low power at:" -+msgstr "Calculatorul va reduce consumul la:" - --#: ../data/interfaces/xfpm-settings.ui.h:8 --msgid "Monitor power management control" --msgstr "Controlează consumul de curent al monitorului" -+#. Hibernate menu option -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 -+#: ../src/xfpm-power.c:779 -+msgid "Hibernate" -+msgstr "Hibernare" - - #: ../data/interfaces/xfpm-settings.ui.h:9 --msgid "Show notifications to notify about the battery state" --msgstr "Arată notificări în legătură cu starea bateriei" -+msgid "Level:" -+msgstr "Nivel:" - - #: ../data/interfaces/xfpm-settings.ui.h:10 --msgid "General Options" --msgstr "Opțiuni generale" -+msgid "Lock screen when going for suspend/hibernate" -+msgstr "Blochează ecranul la suspendare/hibernare" - --#: ../data/interfaces/xfpm-settings.ui.h:11 --msgid "When laptop lid is closed:" --msgstr "La închiderea laptopului:" -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 -+msgid "Monitor" -+msgstr "Monitor" - - #: ../data/interfaces/xfpm-settings.ui.h:12 --msgid "Put the computer to sleep when inactive for:" --msgstr "Sistemul intră în repaus după o inactivitate de:" -+msgid "Monitor power management control" -+msgstr "Controlează consumul de curent al monitorului" - --#: ../data/interfaces/xfpm-settings.ui.h:13 --msgid "Spin down hard disks" --msgstr "Oprește rotația discurilor" -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 -+msgid "Nothing" -+msgstr "Nimic" - - #: ../data/interfaces/xfpm-settings.ui.h:14 --msgid "Actions" --msgstr "Acțiuni" -+msgid "Power manager settings" -+msgstr "Opțiuni ale managerului de consum" - - #: ../data/interfaces/xfpm-settings.ui.h:15 --msgid "Actions" --msgstr "Acțiuni" -+msgid "Prefer power savings over performance" -+msgstr "Redu performanța pentru a reduce consumul" - - #: ../data/interfaces/xfpm-settings.ui.h:16 - msgid "Put display to sleep when computer is inactive for:" - msgstr "Monitorul intră în repaus după o inactivitate de:" - - #: ../data/interfaces/xfpm-settings.ui.h:17 --msgid "Switch off display when computer is inactive for:" --msgstr "Monitorul va fi oprit după o inactivitate de:" -+msgid "Put the computer to sleep when inactive for:" -+msgstr "Sistemul intră în repaus după o inactivitate de:" - - #: ../data/interfaces/xfpm-settings.ui.h:18 --msgid "Monitor" --msgstr "Monitor" -- --#: ../data/interfaces/xfpm-settings.ui.h:19 - msgid "Reduce screen brightness when computer is inactive for:" - msgstr "Luminozitatea ecranului se reduce după o inactivitate de:" - --#: ../data/interfaces/xfpm-settings.ui.h:20 --msgid "Level:" --msgstr "Nivel:" -+#: ../data/interfaces/xfpm-settings.ui.h:19 -+msgid "Set computer inactivity sleep mode:" -+msgstr "Mod de repaus pentru sistem:" - -+#: ../data/interfaces/xfpm-settings.ui.h:20 -+msgid "Set monitor sleep mode:" -+msgstr "Mod de repaus pentru monitor:" -+ - #: ../data/interfaces/xfpm-settings.ui.h:21 --msgid "Brightness" --msgstr "Luminozitate" -+msgid "Show notifications to notify about the battery state" -+msgstr "Arată notificări în legătură cu starea bateriei" - --#: ../data/interfaces/xfpm-settings.ui.h:22 ../src/xfpm-power-common.c:132 --msgid "Monitor" --msgstr "Monitor" -+#: ../data/interfaces/xfpm-settings.ui.h:22 -+msgid "Spin down hard disks" -+msgstr "Oprește rotația discurilor" - - #: ../data/interfaces/xfpm-settings.ui.h:23 --msgid "When battery power is critical:" --msgstr "Când nivelul bateriei e critic:" -- --#: ../data/interfaces/xfpm-settings.ui.h:24 --msgid "Prefer power savings over performance" --msgstr "Redu consumul în pofida performanței" -+msgid "Standby" -+msgstr "Repaus" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:25 ../settings/xfpm-settings.c:814 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 - #: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 - #: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 - #: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 -@@ -128,38 +129,38 @@ msgstr "Redu consumul în pofida performanței" - msgid "Suspend" - msgstr "Suspendare" - --#. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:26 ../settings/xfpm-settings.c:820 --#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 --#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 --#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 --#: ../src/xfpm-power.c:779 --msgid "Hibernate" --msgstr "Hibernare" -+#: ../data/interfaces/xfpm-settings.ui.h:25 -+msgid "Switch off display when computer is inactive for:" -+msgstr "Monitorul va fi oprit după o inactivitate de:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:26 -+msgid "System tray icon: " -+msgstr "Iconiță în zona de notificare: " - - #: ../data/interfaces/xfpm-settings.ui.h:27 --msgid "Standby" --msgstr "Repaus" -+msgid "When battery power is critical:" -+msgstr "Când nivelul bateriei e critic:" - - #: ../data/interfaces/xfpm-settings.ui.h:28 --msgid "Set computer inactivity sleep mode:" --msgstr "Mod de repaus pentru sistem:" -+msgid "When hibernate button is pressed:" -+msgstr "La apăsarea butonului de hibernare:" - - #: ../data/interfaces/xfpm-settings.ui.h:29 --msgid "Consider the computer on low power at:" --msgstr "Calculatorul va reduce consumul la:" -+msgid "When laptop lid is closed:" -+msgstr "La închiderea capacului laptopului:" - - #: ../data/interfaces/xfpm-settings.ui.h:30 --msgid "Set monitor sleep mode:" --msgstr "Mod de repaus pentru monitor:" -+msgid "When power button is pressed:" -+msgstr "La apăsarea butonului de oprire:" - - #: ../data/interfaces/xfpm-settings.ui.h:31 --msgid "Lock screen when going for suspend/hibernate" --msgstr "Blochează ecranul la suspendare/hibernare" -+msgid "When sleep button is pressed:" -+msgstr "La apăsarea butonului de repaus:" - - #: ../data/interfaces/xfpm-settings.ui.h:32 --msgid "Advanced Options" --msgstr "Opțiuni avansate" -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 -+msgid "Xfce Power Manager" -+msgstr "Managerul de consum Xfce" - - #: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 - #: ../settings/xfpm-settings.c:609 -@@ -230,7 +231,7 @@ msgstr "Arată întotdeauna iconița" - - #: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" --msgstr "Doar când e prezentă o baterie" -+msgstr "Când e prezentă o baterie" - - #: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" -@@ -245,7 +246,7 @@ msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." - msgstr "" --"Dezactivare a suportului pentru standardul DPMS, adică nu se va încerca " -+"Dezactivarea suportului pentru standardul DPMS, adică nu se va încerca " - "trecerea în repaus ori oprirea monitorului." - - #: ../settings/xfpm-settings.c:1379 -@@ -301,7 +302,7 @@ msgstr "ID SOCKET" - #: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." --msgstr "Încercați „%s --help” pentru detalii de utilizare." -+msgstr "Tastați „%s --help” pentru detalii de utilizare." - - #: ../settings/xfpm-settings-main.c:123 - msgid "Failed to load power manager configuration, using defaults" -@@ -350,8 +351,8 @@ msgid "" - "An application is currently disabling the automatic sleep. Doing this action " - "now may damage the working state of this application." - msgstr "" --"Un program a dezactivat momentan trecerea automată în repaus. Continuând, " --"s-ar putea să dăunați stării de funcționare a acestui program." -+"Un program a dezactivat momentan trecerea automată în repaus. Continuând, s-" -+"ar putea să dăunați stării de funcționare a acestui program." - - #: ../src/xfpm-power.c:331 - msgid "Are you sure you want to hibernate the system?" -@@ -377,8 +378,7 @@ msgstr "Consum de curent" - #. * - #. * Power Mode - #. * --#. TRANSLATOR: Mode here is the power profile (presentation, power save, --#. normal) -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) - #: ../src/xfpm-power.c:550 - msgid "Mode" - msgstr "Profil" -@@ -559,7 +559,7 @@ msgid "" - "%s until is fully charged." - msgstr "" - "%s (%i%%)\n" --"%s până la 100%." -+"%s până la încărcarea completă." - - #: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format -@@ -569,7 +569,7 @@ msgstr "%s se descarcă" - #: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" --msgstr "Sistemul mai are %s baterie" -+msgstr "Sistemul funcționează pe %s" - - #: ../src/xfpm-battery.c:244 - #, c-format -@@ -598,7 +598,7 @@ msgid "" - "Provides %s runtime" - msgstr "" - "%s\n" --"%s este 100% încărcată (%i%%).\n" -+"%s este complet încărcată (%i%%).\n" - "Poate oferi %s de funcționare" - - #: ../src/xfpm-battery.c:429 -@@ -608,7 +608,7 @@ msgid "" - "Your %s is fully charged (%i%%)." - msgstr "" - "%s\n" --"%s este 100% încărcată (%i%%)." -+"%s este complet încărcată (%i%%)." - - #: ../src/xfpm-battery.c:440 - #, c-format -@@ -619,7 +619,7 @@ msgid "" - msgstr "" - "%s\n" - "%s se încarcă (%i%%)\n" --"%s până la încărcare 100%." -+"%s până la încărcare completă." - - #: ../src/xfpm-battery.c:449 - #, c-format -@@ -679,7 +679,7 @@ msgstr "" - - #: ../src/xfpm-battery.c:829 - msgid "battery" --msgstr "Baterie" -+msgstr "Bateria" - - #: ../src/xfpm-battery.c:835 - msgid "monitor battery" -@@ -834,7 +834,7 @@ msgstr "Arată un dialog de configurare" - - #: ../src/xfpm-main.c:269 - msgid "Quit any running xfce power manager" --msgstr "Închide managerul de consum Xfce pornit" -+msgstr "Închide orice manager de consum Xfce pornit" - - #: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" -diff --git a/po/ru.po b/po/ru.po -index 797eb05..8dd23d9 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-22 17:06+0000\n" -+"POT-Creation-Date: 2012-05-27 03:12+0000\n" - "PO-Revision-Date: 2012-04-14 23:33+0600\n" - "Last-Translator: Urmas D. \n" - "Language-Team: Russian\n" -@@ -148,7 +148,7 @@ msgstr "Когда нажата клавиша перехода в спящий - - #: ../data/interfaces/xfpm-settings.ui.h:29 - msgid "When laptop lid is closed:" --msgstr "При закрытии крышки ноутбука перейти в: " -+msgstr "При закрытии крышки ноутбука: " - - #: ../data/interfaces/xfpm-settings.ui.h:30 - msgid "When power button is pressed:" -diff --git a/po/sl.po b/po/sl.po -new file mode 100644 -index 0000000..d518780 ---- /dev/null -+++ b/po/sl.po -@@ -0,0 +1,1139 @@ -+# Slovenian translations for xfce package -+# Slovenski prevodi paketa xfce. -+# Copyright (C) 2013 THE xfce'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the xfce package. -+# -+# Uros Preloznik , 2013. -+msgid "" -+msgstr "" -+"Project-Id-Version: xfce 4-power-manager\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2013-01-25 18:45+0000\n" -+"PO-Revision-Date: 2013-01-26 10:38+0100\n" -+"Last-Translator: Uros Preloznik \n" -+"Language-Team: Slovenian\n" -+"Language: sl\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%" -+"100==4 ? 3 : 0);\n" -+"X-Poedit-Language: Slovenian\n" -+"X-Poedit-Country: SLOVENIA\n" -+"X-Generator: Lokalize 1.4\n" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:1 -+msgid "Actions" -+msgstr "Dejanja" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:2 -+msgid "Advanced Options" -+msgstr "Napredne možnosti" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:3 -+msgid "Brightness" -+msgstr "Svetlost" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:4 -+msgid "General Options" -+msgstr "Splošne možnosti" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:5 -+msgid "Monitor" -+msgstr "Zaslon" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:6 -+msgid "Actions" -+msgstr "Dejanja" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:7 -+msgid "Consider the computer on low power at:" -+msgstr "Smatraj da je napajanje računalnika na nizki vrednosti pri:" -+ -+#. Hibernate menu option -+#: ../data/interfaces/xfpm-settings.ui.h:8 -+#: ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 -+#: ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 -+#: ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 -+#: ../src/xfpm-power.c:484 -+#: ../src/xfpm-power.c:779 -+msgid "Hibernate" -+msgstr "Mirovanje" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:9 -+msgid "Level:" -+msgstr "Stopnja:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:10 -+msgid "Lock screen when going for suspend/hibernate" -+msgstr "Zakleni zaslon pri prehodu v pripravljenost/mirovanje" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:11 -+#: ../src/xfpm-power-common.c:132 -+msgid "Monitor" -+msgstr "Zaslon" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:12 -+msgid "Monitor power management control" -+msgstr "Nadzoruj porabo energije za zaslon" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:13 -+#: ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 -+#: ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 -+#: ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 -+msgid "Nothing" -+msgstr "Nič" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:14 -+msgid "Power manager settings" -+msgstr "Nastavitve upravljalnika porabe energije" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:15 -+msgid "Prefer power savings over performance" -+msgstr "Uveljavi varčevanje napajanja pred zmogljivostjo" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:16 -+msgid "Put display to sleep when computer is inactive for:" -+msgstr "Daj zaslon v pripravljenost ko je računalnik neaktiven:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:17 -+msgid "Put the computer to sleep when inactive for:" -+msgstr "Daj računalnik v pripravljenost ko je neaktiven:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:18 -+msgid "Reduce screen brightness when computer is inactive for:" -+msgstr "Zmanjšaj svetlost zaslona ko je računalnik neaktiven:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:19 -+msgid "Set computer inactivity sleep mode:" -+msgstr "Nastavi način pripravljenosti ob neaktivnosti računalnika:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:20 -+msgid "Set monitor sleep mode:" -+msgstr "Nastavi način pripravljenosti za zaslon:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:21 -+msgid "Show notifications to notify about the battery state" -+msgstr "Pokaži orodne namige o stanju baterije" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:22 -+msgid "Spin down hard disks" -+msgstr "Zmanjšaj vrtenje trdih diskov" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:23 -+msgid "Standby" -+msgstr "V pripravljenosti" -+ -+#. Suspend menu option -+#: ../data/interfaces/xfpm-settings.ui.h:24 -+#: ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 -+#: ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 -+#: ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 -+#: ../src/xfpm-power.c:499 -+#: ../src/xfpm-power.c:792 -+msgid "Suspend" -+msgstr "V pripravljenost" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:25 -+msgid "Switch off display when computer is inactive for:" -+msgstr "Izklopi zaslon ob neaktivnost računalnika več kot:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:26 -+msgid "System tray icon: " -+msgstr "Ikona v sistemski vrstici:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:27 -+msgid "When battery power is critical:" -+msgstr "Ko je vrednost baterije kritična:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:28 -+msgid "When hibernate button is pressed:" -+msgstr "Ko je pritisnjen gumb za mirovanje:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:29 -+msgid "When laptop lid is closed:" -+msgstr "Ko je zaprt pokrov prenosnika:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:30 -+msgid "When power button is pressed:" -+msgstr "Ko je pritisnjen gumb za napajanje:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:31 -+msgid "When sleep button is pressed:" -+msgstr "Ko je pritisnjen gumb za pripravljenost:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:32 -+#: ../settings/xfpm-settings-main.c:121 -+#: ../src/xfpm-main.c:413 -+msgid "Xfce Power Manager" -+msgstr "Xfce Upravljalnik porabe energije" -+ -+#: ../settings/xfpm-settings.c:567 -+#: ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:609 -+msgid "Never" -+msgstr "Nikoli" -+ -+#: ../settings/xfpm-settings.c:570 -+msgid "One minute" -+msgstr "Ena minuta" -+ -+#: ../settings/xfpm-settings.c:572 -+#: ../settings/xfpm-settings.c:584 -+msgid "Minutes" -+msgstr "minute" -+ -+#: ../settings/xfpm-settings.c:586 -+#: ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 -+#: ../settings/xfpm-settings.c:595 -+msgid "One hour" -+msgstr "Ena ura" -+ -+#: ../settings/xfpm-settings.c:594 -+#: ../settings/xfpm-settings.c:598 -+msgid "one minute" -+msgstr "ena minuta" -+ -+#: ../settings/xfpm-settings.c:595 -+#: ../settings/xfpm-settings.c:599 -+msgid "minutes" -+msgstr "minute" -+ -+#: ../settings/xfpm-settings.c:597 -+#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:599 -+msgid "hours" -+msgstr "ure" -+ -+#: ../settings/xfpm-settings.c:611 -+msgid "Seconds" -+msgstr "sekunde" -+ -+#: ../settings/xfpm-settings.c:792 -+#: ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 -+msgid "Hibernate and suspend operations not supported" -+msgstr "Mirovanje in pripravljenost nista podprta" -+ -+#: ../settings/xfpm-settings.c:797 -+#: ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 -+msgid "Hibernate and suspend operations not permitted" -+msgstr "Mirovanje in pripravljenost nista dovoljena" -+ -+#: ../settings/xfpm-settings.c:826 -+#: ../settings/xfpm-settings.c:1220 -+#: ../src/xfpm-power.c:805 -+msgid "Shutdown" -+msgstr "Izklopi" -+ -+#: ../settings/xfpm-settings.c:830 -+#: ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 -+#: ../settings/xfpm-settings.c:1327 -+msgid "Ask" -+msgstr "Vprašaj" -+ -+#: ../settings/xfpm-settings.c:892 -+#: ../settings/xfpm-settings.c:1041 -+msgid "Lock screen" -+msgstr "Zakleni zaslon" -+ -+#: ../settings/xfpm-settings.c:960 -+#: ../settings/xfpm-settings.c:1110 -+msgid "Spinning down hard disks permission denied" -+msgstr "Pravice za zmanjšanje vrtenja trdih diskov zavrnjene" -+ -+#: ../settings/xfpm-settings.c:1150 -+msgid "Always show icon" -+msgstr "Vedno prikaži ikono" -+ -+#: ../settings/xfpm-settings.c:1153 -+msgid "When battery is present" -+msgstr "Ko je baterija prisotna" -+ -+#: ../settings/xfpm-settings.c:1156 -+msgid "When battery is charging or discharging" -+msgstr "Ko se baterija polni ali prazni" -+ -+#: ../settings/xfpm-settings.c:1159 -+msgid "Never show icon" -+msgstr "Nikoli ne prikaži ikone" -+ -+#: ../settings/xfpm-settings.c:1185 -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." -+msgstr "" -+"Onemogoči DPMS (Display Power Management Signaling), to je ne poskušaj " -+"izklopiti zaslona ali preiti v pripravljenost." -+ -+#: ../settings/xfpm-settings.c:1379 -+msgid "Suspend operation not supported" -+msgstr "Dejanje pripravljenosti ni podprto" -+ -+#: ../settings/xfpm-settings.c:1385 -+msgid "Suspend operation not permitted" -+msgstr "Dejanje pripravljenosti ni dovoljeno" -+ -+#: ../settings/xfpm-settings.c:1391 -+msgid "Hibernate operation not supported" -+msgstr "Dejanje mirovanja ni podprto" -+ -+#: ../settings/xfpm-settings.c:1396 -+msgid "Hibernate operation not permitted" -+msgstr "Dejanje mirovanja ni dovoljeno" -+ -+#: ../settings/xfpm-settings.c:1443 -+msgid "When all the power sources of the computer reach this charge level" -+msgstr "Ko vsi viri napajanja računalnika dosežejo to stopnjo polnjenja" -+ -+#: ../settings/xfpm-settings.c:1546 -+#: ../settings/xfpm-settings.c:1551 -+msgid "General" -+msgstr "Splošno" -+ -+#: ../settings/xfpm-settings.c:1560 -+#: ../settings/xfpm-settings.c:1565 -+msgid "On AC" -+msgstr "Omrežje" -+ -+#: ../settings/xfpm-settings.c:1575 -+#: ../settings/xfpm-settings.c:1580 -+msgid "On Battery" -+msgstr "Baterija" -+ -+#: ../settings/xfpm-settings.c:1589 -+#: ../settings/xfpm-settings.c:1594 -+msgid "Extended" -+msgstr "Dodatno" -+ -+#: ../settings/xfpm-settings.c:1662 -+msgid "Check your power manager installation" -+msgstr "Preveri namestitev upravljalnika porabe energije" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "Settings manager socket" -+msgstr "Vtič za nastavitve upravljalnika" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "SOCKET ID" -+msgstr "SOCKET ID" -+ -+#: ../settings/xfpm-settings-main.c:89 -+#: ../src/xfpm-main.c:289 -+#: ../src/xfpm-power-info.c:946 -+#, c-format -+msgid "Type '%s --help' for usage." -+msgstr "Vnesi '%s --help' za navodila." -+ -+#: ../settings/xfpm-settings-main.c:123 -+msgid "Failed to load power manager configuration, using defaults" -+msgstr "Nalaganje nastavitev ni uspelo, uporaba privzetih vrednosti" -+ -+#: ../settings/xfpm-settings-main.c:148 -+msgid "Unable to connect to Xfce Power Manager" -+msgstr "Povezava s Xfce Upravljalnikom porabe energije ni uspela" -+ -+#: ../settings/xfpm-settings-main.c:190 -+#: ../src/xfpm-main.c:329 -+#, c-format -+msgid "Xfce power manager is not running" -+msgstr "Xfce upravljalnik porabe energije ni zagnan" -+ -+#: ../settings/xfpm-settings-main.c:195 -+msgid "Run" -+msgstr "Zaženi" -+ -+#: ../settings/xfpm-settings-main.c:196 -+msgid "Xfce4 Power Manager is not running, do you want to launch it now?" -+msgstr "" -+"Xfce4 Upravljalnik porabe energije ni zagnan, ali ga želiš zagnati zdaj?" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 -+#: ../src/xfpm-power.c:595 -+#: ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 -+#: ../src/xfpm-power.c:935 -+#: ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 -+#: ../src/xfce4-power-manager.desktop.in.h:1 -+msgid "Power Manager" -+msgstr "Upravljalnik porabe energije" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:2 -+msgid "Settings for the Xfce Power Manager" -+msgstr "Nastavitve Xfce Upravljalnika porabe energije" -+ -+#: ../common/xfpm-common.c:155 -+msgid "translator-credits" -+msgstr "Prevod: Uroš Preložnik uros00@gmail.com" -+ -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Mirovanje" -+ -+#: ../src/xfpm-power.c:329 -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." -+msgstr "" -+"Program trenutno onemogoča samodejno pripravljenost. izvajanje tega dejanja " -+"sedaj lahko pokvari delovanje programa." -+ -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Ali si prepričan da želiš preiti v mirovanje sistema?" -+ -+#: ../src/xfpm-power.c:426 -+msgid "Quit" -+msgstr "Končaj" -+ -+#: ../src/xfpm-power.c:427 -+msgid "All running instances of the power manager will exit" -+msgstr "" -+"Vse trenutno delujoči procesi upravljalnika porabe energija bodo končani" -+ -+#: ../src/xfpm-power.c:429 -+msgid "Quit the power manager?" -+msgstr "Končaj upravljalnika porabe energije" -+ -+#. Power information -+#: ../src/xfpm-power.c:534 -+#: ../src/xfpm-power-info.c:818 -+msgid "Power Information" -+msgstr "Podatki o napajanju" -+ -+#. * -+#. * Power Mode -+#. * -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#: ../src/xfpm-power.c:550 -+msgid "Mode" -+msgstr "Način" -+ -+#. Normal -+#: ../src/xfpm-power.c:561 -+msgid "Normal" -+msgstr "Običajno" -+ -+#. Normal -+#: ../src/xfpm-power.c:571 -+msgid "Presentation" -+msgstr "Predstavitev" -+ -+#: ../src/xfpm-power.c:693 -+msgid "Hibernate the system" -+msgstr "Prehod v mirovanje sistema" -+ -+#: ../src/xfpm-power.c:704 -+msgid "Suspend the system" -+msgstr "Prehod v pripravljenost sistema" -+ -+#: ../src/xfpm-power.c:714 -+msgid "Shutdown the system" -+msgstr "Izklop sistema" -+ -+#: ../src/xfpm-power.c:725 -+#: ../src/xfpm-power.c:763 -+msgid "System is running on low power. Save your work to avoid losing data" -+msgstr "" -+"Sistem deluje na nizkem stanju energije. Shrani svoje delo, drugače lahko " -+"pride do izgube podatkov" -+ -+#: ../src/xfpm-power.c:936 -+msgid "System is running on low power" -+msgstr "Sistem deluje na nizkem stanju energije" -+ -+#: ../src/xfpm-power.c:955 -+#, c-format -+msgid "" -+"Your %s charge level is low\n" -+"Estimated time left %s" -+msgstr "" -+"Your %s charge level is low\n" -+"Estimated time left %s" -+ -+#: ../src/xfpm-power.c:1158 -+#: ../src/xfpm-power.c:1163 -+msgid "Adaptor is offline" -+msgstr "Napajalnik je izključen" -+ -+#: ../src/xfpm-power.c:1159 -+#: ../src/xfpm-power.c:1164 -+#: ../src/xfpm-battery.c:413 -+#, c-format -+msgid "Adaptor is online" -+msgstr "Napajalnik je vključen" -+ -+#: ../src/xfpm-power.c:1617 -+#: ../src/xfpm-power.c:1638 -+#: ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1676 -+#, c-format -+msgid "Permission denied" -+msgstr "Dostop zavrnjen" -+ -+#: ../src/xfpm-power.c:1661 -+#: ../src/xfpm-power.c:1684 -+#, c-format -+msgid "Suspend not supported" -+msgstr "Pripravljenost ni podprta" -+ -+#: ../src/xfpm-power-common.c:122 -+#: ../src/xfpm-power-common.c:141 -+msgid "Battery" -+msgstr "Baterija" -+ -+#: ../src/xfpm-power-common.c:124 -+#: ../src/xfpm-battery.c:832 -+msgid "UPS" -+msgstr "UPS" -+ -+#: ../src/xfpm-power-common.c:126 -+msgid "Line power" -+msgstr "Omrežna napetost" -+ -+#: ../src/xfpm-power-common.c:128 -+msgid "Mouse" -+msgstr "Miška" -+ -+#: ../src/xfpm-power-common.c:130 -+msgid "Keyboard" -+msgstr "Tipkovnica" -+ -+#: ../src/xfpm-power-common.c:134 -+msgid "PDA" -+msgstr "PDA" -+ -+#: ../src/xfpm-power-common.c:136 -+msgid "Phone" -+msgstr "Telefon" -+ -+#: ../src/xfpm-power-common.c:138 -+#: ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 -+#: ../src/xfpm-battery.c:850 -+msgid "Unknown" -+msgstr "Neznano" -+ -+#: ../src/xfpm-power-common.c:155 -+msgid "Lithium ion" -+msgstr "" -+ -+#: ../src/xfpm-power-common.c:157 -+msgid "Lithium polymer" -+msgstr "" -+ -+#: ../src/xfpm-power-common.c:159 -+msgid "Lithium iron phosphate" -+msgstr "" -+ -+#: ../src/xfpm-power-common.c:161 -+msgid "Lead acid" -+msgstr "" -+ -+#: ../src/xfpm-power-common.c:163 -+msgid "Nickel cadmium" -+msgstr "" -+ -+#: ../src/xfpm-power-common.c:165 -+msgid "Nickel metal hybride" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:171 -+msgid "Unknown time" -+msgstr "Neznan čas" -+ -+#: ../src/xfpm-battery.c:177 -+#, c-format -+msgid "%i minute" -+msgid_plural "%i minutes" -+msgstr[0] "%i minuta" -+msgstr[1] "%i minuti" -+msgstr[2] "%i minute" -+msgstr[3] "%i minut" -+ -+#: ../src/xfpm-battery.c:188 -+#, c-format -+msgid "%i hour" -+msgid_plural "%i hours" -+msgstr[0] "%i ura" -+msgstr[1] "%i uri" -+msgstr[2] "%i ure" -+msgstr[3] "%i ur" -+ -+#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" -+#. * Swap order with "%2$s %2$i %1$s %1$i if needed -+#: ../src/xfpm-battery.c:194 -+#, c-format -+msgid "%i %s %i %s" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:195 -+msgid "hour" -+msgid_plural "hours" -+msgstr[0] "ura" -+msgstr[1] "uri" -+msgstr[2] "ure" -+msgstr[3] "ur" -+ -+#: ../src/xfpm-battery.c:196 -+msgid "minute" -+msgid_plural "minutes" -+msgstr[0] "minuta" -+msgstr[1] "minuti" -+msgstr[2] "minute" -+msgstr[3] "minut" -+ -+#: ../src/xfpm-battery.c:211 -+#: ../src/xfpm-battery.c:262 -+#, c-format -+msgid "Your %s is fully charged" -+msgstr "%s je napolnjena" -+ -+#: ../src/xfpm-battery.c:214 -+#: ../src/xfpm-battery.c:265 -+#, c-format -+msgid "Your %s is charging" -+msgstr "%s se polni" -+ -+#: ../src/xfpm-battery.c:224 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"%s until is fully charged." -+msgstr "" -+"%s (%i%%)\n" -+"%s do napolnitve." -+ -+#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:268 -+#, c-format -+msgid "Your %s is discharging" -+msgstr "%s se prazni" -+ -+#: ../src/xfpm-battery.c:234 -+#, c-format -+msgid "System is running on %s power" -+msgstr "Sistem deluje na %s energije" -+ -+#: ../src/xfpm-battery.c:244 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"Estimated time left is %s." -+msgstr "" -+"%s (%i%%)\n" -+"Predviden čas še %s." -+ -+#: ../src/xfpm-battery.c:250 -+#: ../src/xfpm-battery.c:271 -+#, c-format -+msgid "Your %s is empty" -+msgstr "%s je prazna" -+ -+#: ../src/xfpm-battery.c:413 -+#, c-format -+msgid "System is running on battery power" -+msgstr "Sistem napaja baterija" -+ -+#: ../src/xfpm-battery.c:420 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%).\n" -+"Provides %s runtime" -+msgstr "" -+"%s\n" -+"%s je napolnjena (%i%%).\n" -+"Zagotavlja še %s delovanja" -+ -+#: ../src/xfpm-battery.c:429 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%)." -+msgstr "" -+"%s\n" -+"%s je polna (%i%%)." -+ -+#: ../src/xfpm-battery.c:440 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)\n" -+"%s until is fully charged." -+msgstr "" -+"%s\n" -+"%s se polni (%i%%)\n" -+"%s do napolnitve." -+ -+#: ../src/xfpm-battery.c:449 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)." -+msgstr "" -+"%s\n" -+"%s se polni (%i%%)." -+ -+#: ../src/xfpm-battery.c:460 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)\n" -+"Estimated time left is %s." -+msgstr "" -+"%s\n" -+"%s se prazni (%i%%)\n" -+"Predviden čas še %s." -+ -+#: ../src/xfpm-battery.c:469 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)." -+msgstr "" -+"%s\n" -+"%s se prazni (%i%%)." -+ -+#: ../src/xfpm-battery.c:478 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to discharge (%i%%)." -+msgstr "" -+"%s\n" -+"%s čaka na praznjenje (%i%%)." -+ -+#: ../src/xfpm-battery.c:482 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to charge (%i%%)." -+msgstr "" -+"%s\n" -+"%s čaka na polnjenje (%i%%)." -+ -+#: ../src/xfpm-battery.c:486 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is empty" -+msgstr "" -+"%s\n" -+"%s je prazna" -+ -+#: ../src/xfpm-battery.c:829 -+msgid "battery" -+msgstr "baterija" -+ -+#: ../src/xfpm-battery.c:835 -+msgid "monitor battery" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:838 -+msgid "mouse battery" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:841 -+msgid "keyboard battery" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:844 -+msgid "PDA battery" -+msgstr "" -+ -+#: ../src/xfpm-battery.c:847 -+msgid "Phone battery" -+msgstr "" -+ -+#: ../src/xfpm-main.c:53 -+#: ../src/xfpm-power-info.c:93 -+#, c-format -+msgid "" -+"\n" -+"Xfce Power Manager %s\n" -+"\n" -+"Part of the Xfce Goodies Project\n" -+"http://goodies.xfce.org\n" -+"\n" -+"Licensed under the GNU GPL.\n" -+"\n" -+msgstr "" -+ -+#: ../src/xfpm-main.c:76 -+#: ../src/xfpm-power-info.c:376 -+msgid "True" -+msgstr "Pravilno" -+ -+#: ../src/xfpm-main.c:76 -+#: ../src/xfpm-power-info.c:376 -+msgid "False" -+msgstr "Napačno" -+ -+#: ../src/xfpm-main.c:113 -+#, c-format -+msgid "With policykit support\n" -+msgstr "" -+ -+#: ../src/xfpm-main.c:115 -+#, c-format -+msgid "Without policykit support\n" -+msgstr "" -+ -+#: ../src/xfpm-main.c:118 -+#, c-format -+msgid "With network manager support\n" -+msgstr "Z omrežno podporo\n" -+ -+#: ../src/xfpm-main.c:120 -+#, c-format -+msgid "Without network manager support\n" -+msgstr "Brez omrežne podpore\n" -+ -+#: ../src/xfpm-main.c:123 -+#, c-format -+msgid "With DPMS support\n" -+msgstr "Z DPMS podporo\n" -+ -+#: ../src/xfpm-main.c:125 -+#, c-format -+msgid "Without DPMS support\n" -+msgstr "Brez DPMS podpore\n" -+ -+#: ../src/xfpm-main.c:141 -+msgid "Can suspend" -+msgstr "Lahko preide v pripravljenost" -+ -+#: ../src/xfpm-main.c:143 -+msgid "Can hibernate" -+msgstr "Lahko preide v mirovanje" -+ -+#: ../src/xfpm-main.c:145 -+msgid "Can spin down hard disks" -+msgstr "Lahko zmanjša vrtenje trdih diskov" -+ -+#: ../src/xfpm-main.c:147 -+msgid "Authorized to suspend" -+msgstr "Dovoljenje za prehod v pripravljenost" -+ -+#: ../src/xfpm-main.c:149 -+msgid "Authorized to hibernate" -+msgstr "Dovoljenje za prehod v mirovanje" -+ -+#: ../src/xfpm-main.c:151 -+msgid "Authorized to shutdown" -+msgstr "Dovoljenje za izklop" -+ -+#: ../src/xfpm-main.c:153 -+msgid "Authorized to spin down hard disks" -+msgstr "Dovoljenje za zmanjšanje vrtenja trdih diskov" -+ -+#: ../src/xfpm-main.c:155 -+msgid "Has battery" -+msgstr "Vsebuje baterijo" -+ -+#: ../src/xfpm-main.c:157 -+msgid "Has brightness panel" -+msgstr "Vsebuje pult za svetlost" -+ -+#: ../src/xfpm-main.c:159 -+msgid "Has power button" -+msgstr "Vsebuje gumb za izklop" -+ -+#: ../src/xfpm-main.c:161 -+msgid "Has hibernate button" -+msgstr "Vsebuje gumb za mirovanje" -+ -+#: ../src/xfpm-main.c:163 -+msgid "Has sleep button" -+msgstr "Vsebuje gumb za pripravljenost" -+ -+#: ../src/xfpm-main.c:165 -+msgid "Has LID" -+msgstr "Vsebuje LID" -+ -+#: ../src/xfpm-main.c:264 -+msgid "Do not daemonize" -+msgstr "" -+ -+#: ../src/xfpm-main.c:265 -+msgid "Enable debugging" -+msgstr "Omogoči razhroščevanje" -+ -+#: ../src/xfpm-main.c:266 -+msgid "Dump all information" -+msgstr "Izpiši vse podrobnosti" -+ -+#: ../src/xfpm-main.c:267 -+msgid "Restart the running instance of Xfce power manager" -+msgstr "Znova zaženi odprti proces Xfce upravljalnika porabe energije" -+ -+#: ../src/xfpm-main.c:268 -+msgid "Show the configuration dialog" -+msgstr "Prikaži nastavitveno okno" -+ -+#: ../src/xfpm-main.c:269 -+msgid "Quit any running xfce power manager" -+msgstr "Končaj vse odprte procese Xfce upravljalnika porabe energije" -+ -+#: ../src/xfpm-main.c:270 -+#: ../src/xfpm-power-info.c:933 -+msgid "Version information" -+msgstr "Podatki o različici" -+ -+#: ../src/xfpm-main.c:320 -+msgid "Unable to get connection to the message bus session" -+msgstr "Neuspešna povezava s sejo sporočilnega vodila" -+ -+#: ../src/xfpm-main.c:414 -+msgid "Another power manager is already running" -+msgstr "Drug upravljalnika porabe energije je že zagnan" -+ -+#: ../src/xfpm-main.c:420 -+#, c-format -+msgid "Xfce power manager is already running" -+msgstr "Xfce upravljalnika porabe energije je že zagnan" -+ -+#: ../src/xfpm-inhibit.c:331 -+#, c-format -+msgid "Invalid arguments" -+msgstr "Neveljavni parametri" -+ -+#: ../src/xfpm-inhibit.c:357 -+#, c-format -+msgid "Invalid cookie" -+msgstr "Neveljaven piškotek" -+ -+#. TRANSLATORS: the command line was not provided -+#: ../src/xfpm-power-info.c:118 -+msgid "No data" -+msgstr "Ni podatkov" -+ -+#. TRANSLATORS: kernel module, usually a device driver -+#: ../src/xfpm-power-info.c:125 -+#: ../src/xfpm-power-info.c:130 -+msgid "Kernel module" -+msgstr "" -+ -+#. TRANSLATORS: kernel housekeeping -+#: ../src/xfpm-power-info.c:135 -+msgid "Kernel core" -+msgstr "" -+ -+#. TRANSLATORS: interrupt between processors -+#: ../src/xfpm-power-info.c:140 -+msgid "Interprocessor interrupt" -+msgstr "Prekinitev med procesorji" -+ -+#. TRANSLATORS: unknown interrupt -+#: ../src/xfpm-power-info.c:145 -+msgid "Interrupt" -+msgstr "Prekinitev" -+ -+#. TRANSLATORS: the keyboard and mouse device event -+#: ../src/xfpm-power-info.c:189 -+msgid "PS/2 keyboard/mouse/touchpad" -+msgstr "PS/2 tipkovnica/miška/tablica" -+ -+#. TRANSLATORS: ACPI, the Intel power standard on laptops and desktops -+#: ../src/xfpm-power-info.c:192 -+msgid "ACPI" -+msgstr "" -+ -+#. TRANSLATORS: serial ATA is a new style of hard disk interface -+#: ../src/xfpm-power-info.c:195 -+msgid "Serial ATA" -+msgstr "" -+ -+#. TRANSLATORS: this is the old-style ATA interface -+#: ../src/xfpm-power-info.c:198 -+msgid "ATA host controller" -+msgstr "" -+ -+#. TRANSLATORS: 802.11 wireless adaptor -+#: ../src/xfpm-power-info.c:201 -+msgid "Intel wireless adaptor" -+msgstr "Intel brezžični vmesnik" -+ -+#. TRANSLATORS: a timer is something that fires periodically -+#: ../src/xfpm-power-info.c:206 -+#: ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 -+#: ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:218 -+#, c-format -+msgid "Timer %s" -+msgstr "Časomer %s" -+ -+#. TRANSLATORS: this is a task that's woken up from sleeping -+#: ../src/xfpm-power-info.c:221 -+#, c-format -+msgid "Sleep %s" -+msgstr "V pripravljenost %s" -+ -+#. TRANSLATORS: this is a new realtime task -+#: ../src/xfpm-power-info.c:224 -+#, c-format -+msgid "New task %s" -+msgstr "Novo opravilo %s" -+ -+#. TRANSLATORS: this is a task thats woken to check state -+#: ../src/xfpm-power-info.c:227 -+#, c-format -+msgid "Wait %s" -+msgstr "Čakaj %s" -+ -+#. TRANSLATORS: a work queue is a list of work that has to be done -+#: ../src/xfpm-power-info.c:230 -+#: ../src/xfpm-power-info.c:233 -+#, c-format -+msgid "Work queue %s" -+msgstr "Naloge na čakanju %s" -+ -+#. TRANSLATORS: this is when the networking subsystem clears out old entries -+#: ../src/xfpm-power-info.c:236 -+#, c-format -+msgid "Network route flush %s" -+msgstr "Počisti omrežne vnose %s" -+ -+#. TRANSLATORS: activity on the USB bus -+#: ../src/xfpm-power-info.c:239 -+#, c-format -+msgid "USB activity %s" -+msgstr "USB dejavnost %s" -+ -+#. TRANSLATORS: we've timed out of an aligned timer -+#: ../src/xfpm-power-info.c:242 -+#, c-format -+msgid "Wakeup %s" -+msgstr "Zagon %s" -+ -+#. TRANSLATORS: interupts on the system required for basic operation -+#: ../src/xfpm-power-info.c:245 -+msgid "Local interrupts" -+msgstr "Lokalne prekinitve" -+ -+#. TRANSLATORS: interrupts when a task gets moved from one core to another -+#: ../src/xfpm-power-info.c:248 -+msgid "Rescheduling interrupts" -+msgstr "Prekinitve prenašanja opravil" -+ -+#: ../src/xfpm-power-info.c:331 -+msgid "Attribute" -+msgstr "Atribut" -+ -+#: ../src/xfpm-power-info.c:338 -+msgid "Value" -+msgstr "Vrednost" -+ -+#: ../src/xfpm-power-info.c:348 -+msgid "Device" -+msgstr "Naprava" -+ -+#: ../src/xfpm-power-info.c:363 -+#: ../src/xfpm-power-info.c:739 -+msgid "Type" -+msgstr "Vrsta" -+ -+#: ../src/xfpm-power-info.c:375 -+msgid "PowerSupply" -+msgstr "Napajalni vir" -+ -+#: ../src/xfpm-power-info.c:393 -+msgid "Model" -+msgstr "Model" -+ -+#: ../src/xfpm-power-info.c:407 -+msgid "Technology" -+msgstr "Tehnologija" -+ -+#. TRANSLATORS: Unit here is What hour -+#: ../src/xfpm-power-info.c:414 -+#: ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:442 -+msgid "Wh" -+msgstr "Wh" -+ -+#: ../src/xfpm-power-info.c:420 -+msgid "Energy full design" -+msgstr "" -+ -+#: ../src/xfpm-power-info.c:434 -+msgid "Energy full" -+msgstr "" -+ -+#: ../src/xfpm-power-info.c:448 -+msgid "Energy empty" -+msgstr "" -+ -+#. TRANSLATORS: Unit here is volt -+#: ../src/xfpm-power-info.c:456 -+msgid "V" -+msgstr "V" -+ -+#: ../src/xfpm-power-info.c:461 -+msgid "Voltage" -+msgstr "Napetost" -+ -+#: ../src/xfpm-power-info.c:478 -+msgid "Vendor" -+msgstr "Prodajalec" -+ -+#: ../src/xfpm-power-info.c:495 -+msgid "Serial" -+msgstr "" -+ -+#: ../src/xfpm-power-info.c:731 -+msgid "Processor" -+msgstr "Procesor" -+ -+#. TANSLATORS: PID, is the process id, e.g what ps x gives -+#: ../src/xfpm-power-info.c:748 -+msgid "PID" -+msgstr "PID" -+ -+#: ../src/xfpm-power-info.c:754 -+msgid "Wakeups" -+msgstr "" -+ -+#: ../src/xfpm-power-info.c:760 -+msgid "Command" -+msgstr "Ukaz" -+ -+#: ../src/xfpm-power-info.c:766 -+msgid "Details" -+msgstr "Podrobnosti" -+ -+#: ../src/xfce4-power-manager.desktop.in.h:2 -+msgid "Power management for the Xfce desktop" -+msgstr "Upravljanje porabe energije za Xfce namizje" -+ -+#: ../panel-plugins/brightness/brightness-button.c:180 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2 -+msgid "Control your LCD brightness" -+msgstr "Nastavi LCD svetlost" -+ -+#: ../panel-plugins/brightness/brightness-button.c:182 -+msgid "No device found" -+msgstr "Nobena naprava ni najdena" -+ -+#: ../panel-plugins/brightness/brightness-button.c:649 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 -+msgid "Brightness plugin" -+msgstr "Dodatek za svetlost" -+ -+ -diff --git a/po/sr.po b/po/sr.po -new file mode 100644 -index 0000000..b2e9b18 ---- /dev/null -+++ b/po/sr.po -@@ -0,0 +1,1070 @@ -+# SOME DESCRIPTIVE TITLE. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# salepetronije , 2012. -+msgid "" -+msgstr "" -+"Project-Id-Version: xfce4-4.10\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2012-06-12 04:24+0000\n" -+"PO-Revision-Date: 2012-06-13 22:03+0200\n" -+"Last-Translator: salepetronije \n" -+"Language-Team: српски \n" -+"Language: sr\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\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%100<10 || n%100>=20) ? 1 : 2);\n" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:1 -+msgid "Actions" -+msgstr "Радње" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:2 -+msgid "Advanced Options" -+msgstr "Напредне могућности" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:3 -+msgid "Brightness" -+msgstr "Осветљење" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:4 -+msgid "General Options" -+msgstr "Опште могућности" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:5 -+msgid "Monitor" -+msgstr "Монитор" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:6 -+msgid "Actions" -+msgstr "Радње" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:7 -+msgid "Consider the computer on low power at:" -+msgstr "Сматрај рачунар пред истеком снаге при:" -+ -+#. Hibernate menu option -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 -+#: ../src/xfpm-power.c:779 -+msgid "Hibernate" -+msgstr "Неактивност" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:9 -+msgid "Level:" -+msgstr "Ниво:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:10 -+msgid "Lock screen when going for suspend/hibernate" -+msgstr "Закључај екран при преласку на обуставу/неактивност" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 -+msgid "Monitor" -+msgstr "Монитор" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:12 -+msgid "Monitor power management control" -+msgstr "Управљање потрошњом монитора" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 -+msgid "Nothing" -+msgstr "Ништа" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:14 -+msgid "Power manager settings" -+msgstr "Поставке управника потрошње" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:15 -+msgid "Prefer power savings over performance" -+msgstr "Дај предност штедњи енергије над учинком" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:16 -+msgid "Put display to sleep when computer is inactive for:" -+msgstr "Успавај екран кад рачунар мирује:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:17 -+msgid "Put the computer to sleep when inactive for:" -+msgstr "Успавај рачунар кад мирује:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:18 -+msgid "Reduce screen brightness when computer is inactive for:" -+msgstr "Смањи осветљење екрана кад рачунар мирује:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:19 -+msgid "Set computer inactivity sleep mode:" -+msgstr "Подеси начин успављивања рачунара:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:20 -+msgid "Set monitor sleep mode:" -+msgstr "Подеси начин успављивања монитора" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:21 -+msgid "Show notifications to notify about the battery state" -+msgstr "Прикажи обавештења о стању батерије" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:22 -+msgid "Spin down hard disks" -+msgstr "Успори чврсте дискове" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:23 -+msgid "Standby" -+msgstr "Приправност" -+ -+#. Suspend menu option -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 -+#: ../src/xfpm-power.c:792 -+msgid "Suspend" -+msgstr "Обустава" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:25 -+msgid "Switch off display when computer is inactive for:" -+msgstr "Искључи екран кад је рачунар у мировању:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:26 -+msgid "System tray icon: " -+msgstr "Икона системске касете" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:27 -+msgid "When battery power is critical:" -+msgstr "Кад је снага батерије критична:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:28 -+msgid "When hibernate button is pressed:" -+msgstr "Кад је дугме неактивности притиснуто:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:29 -+msgid "When laptop lid is closed:" -+msgstr "Кад је поклопац преклопног рачунара затворен:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:30 -+msgid "When power button is pressed:" -+msgstr "Кад је дугме напајања притиснуто:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:31 -+msgid "When sleep button is pressed:" -+msgstr "Кад је дугме спавања притиснуто:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:32 -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 -+msgid "Xfce Power Manager" -+msgstr "ИксФЦЕ управник потрошње" -+ -+#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:609 -+msgid "Never" -+msgstr "Никад" -+ -+#: ../settings/xfpm-settings.c:570 -+msgid "One minute" -+msgstr "Један минут" -+ -+#: ../settings/xfpm-settings.c:572 ../settings/xfpm-settings.c:584 -+msgid "Minutes" -+msgstr "Минута" -+ -+#: ../settings/xfpm-settings.c:586 ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:595 -+msgid "One hour" -+msgstr "Један сат" -+ -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:598 -+msgid "one minute" -+msgstr "Један минут" -+ -+#: ../settings/xfpm-settings.c:595 ../settings/xfpm-settings.c:599 -+msgid "minutes" -+msgstr "минута" -+ -+#: ../settings/xfpm-settings.c:597 ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:599 -+msgid "hours" -+msgstr "сати" -+ -+#: ../settings/xfpm-settings.c:611 -+msgid "Seconds" -+msgstr "Секунди" -+ -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 -+msgid "Hibernate and suspend operations not supported" -+msgstr "Операције спавања и неактивности нису подржане" -+ -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 -+msgid "Hibernate and suspend operations not permitted" -+msgstr "Операције спавања и неактивности нису подржане" -+ -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 -+#: ../src/xfpm-power.c:805 -+msgid "Shutdown" -+msgstr "Искључи" -+ -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 -+msgid "Ask" -+msgstr "Питај" -+ -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 -+msgid "Lock screen" -+msgstr "Закључај екран" -+ -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 -+msgid "Spinning down hard disks permission denied" -+msgstr "Немате дозволе за успоравање чврстог диска" -+ -+#: ../settings/xfpm-settings.c:1150 -+msgid "Always show icon" -+msgstr "Увек приказуј икону" -+ -+#: ../settings/xfpm-settings.c:1153 -+msgid "When battery is present" -+msgstr "Када је присутна батерија" -+ -+#: ../settings/xfpm-settings.c:1156 -+msgid "When battery is charging or discharging" -+msgstr "Када се батерија пуни или празни" -+ -+#: ../settings/xfpm-settings.c:1159 -+msgid "Never show icon" -+msgstr "Никад не приказуј икону" -+ -+#: ../settings/xfpm-settings.c:1185 -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." -+msgstr "" -+"Искључује сигнализацију управљања потрошњом екрана (ДПМС), тј. не покушава " -+"да искључи екран или да га пошаље на спавање." -+ -+#: ../settings/xfpm-settings.c:1379 -+msgid "Suspend operation not supported" -+msgstr "Операција обуставе није подржана" -+ -+#: ../settings/xfpm-settings.c:1385 -+msgid "Suspend operation not permitted" -+msgstr "Операција обуставе није дозвољена" -+ -+#: ../settings/xfpm-settings.c:1391 -+msgid "Hibernate operation not supported" -+msgstr "Операција неактивности није подржана" -+ -+#: ../settings/xfpm-settings.c:1396 -+msgid "Hibernate operation not permitted" -+msgstr "Операција неактивности није дозвољена" -+ -+#: ../settings/xfpm-settings.c:1443 -+msgid "When all the power sources of the computer reach this charge level" -+msgstr "Када сви извори енергије рачунара достигну овај ниво пуњења" -+ -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 -+msgid "General" -+msgstr "Опште" -+ -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 -+msgid "On AC" -+msgstr "На мрежном напајању" -+ -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 -+msgid "On Battery" -+msgstr "На батерији" -+ -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 -+msgid "Extended" -+msgstr "Проширено" -+ -+#: ../settings/xfpm-settings.c:1662 -+msgid "Check your power manager installation" -+msgstr "Проверите инсталацију вашег управника потрошње" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "Settings manager socket" -+msgstr "Управник подешавања утичнице" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "SOCKET ID" -+msgstr "ИБ УТИЧНИЦЕ" -+ -+#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 -+#: ../src/xfpm-power-info.c:946 -+#, c-format -+msgid "Type '%s --help' for usage." -+msgstr "Упишите „%s --help“ за употребу." -+ -+#: ../settings/xfpm-settings-main.c:123 -+msgid "Failed to load power manager configuration, using defaults" -+msgstr "Не успевам да учитам поставке управника потрошње, користим задато" -+ -+#: ../settings/xfpm-settings-main.c:148 -+msgid "Unable to connect to Xfce Power Manager" -+msgstr "Не успевам да се повежем са ИксФЦЕ управником потрошње" -+ -+#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:329 -+#, c-format -+msgid "Xfce power manager is not running" -+msgstr "ИксФЦЕ управник потрошње није покренут" -+ -+#: ../settings/xfpm-settings-main.c:195 -+msgid "Run" -+msgstr "Покрени" -+ -+#: ../settings/xfpm-settings-main.c:196 -+msgid "Xfce4 Power Manager is not running, do you want to launch it now?" -+msgstr "" -+"ИксФЦЕ управник потрошње није покренут, да ли желите да га покренете сада?" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 -+msgid "Power Manager" -+msgstr "Управник потрошње" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:2 -+msgid "Settings for the Xfce Power Manager" -+msgstr "Поставке ИксФЦЕ управника потрошње" -+ -+#: ../common/xfpm-common.c:155 -+msgid "translator-credits" -+msgstr "заслуге-преводилаца" -+ -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Неактивност" -+ -+#: ../src/xfpm-power.c:329 -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." -+msgstr "" -+"Један порограм тренутно онемогућава аутоматско успављивање. Примена ове " -+"радње сада може оштетити стање рада овог програма." -+ -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Да ли сте сигурни да желите послати систем у стање неактивности?" -+ -+#: ../src/xfpm-power.c:426 -+msgid "Quit" -+msgstr "Одустани" -+ -+#: ../src/xfpm-power.c:427 -+msgid "All running instances of the power manager will exit" -+msgstr "Сви покренути примерци управника потрошње ће престати с радом" -+ -+#: ../src/xfpm-power.c:429 -+msgid "Quit the power manager?" -+msgstr "Искључи управника потрошње?" -+ -+#. Power information -+#: ../src/xfpm-power.c:534 ../src/xfpm-power-info.c:818 -+msgid "Power Information" -+msgstr "Подаци о потрошњи" -+ -+#. * -+#. * Power Mode -+#. * -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#: ../src/xfpm-power.c:550 -+msgid "Mode" -+msgstr "Начин" -+ -+#. Normal -+#: ../src/xfpm-power.c:561 -+msgid "Normal" -+msgstr "Нормално" -+ -+#. Normal -+#: ../src/xfpm-power.c:571 -+msgid "Presentation" -+msgstr "Излагање" -+ -+#: ../src/xfpm-power.c:693 -+msgid "Hibernate the system" -+msgstr "Пошаљи систем у стање неактивности" -+ -+#: ../src/xfpm-power.c:704 -+msgid "Suspend the system" -+msgstr "Обустави систем" -+ -+#: ../src/xfpm-power.c:714 -+msgid "Shutdown the system" -+msgstr "Гаси систем" -+ -+#: ../src/xfpm-power.c:725 ../src/xfpm-power.c:763 -+msgid "System is running on low power. Save your work to avoid losing data" -+msgstr "" -+"Систем ради са напајањем на истеку. Сачувајте ваш рад да би избегли губитак " -+"података" -+ -+#: ../src/xfpm-power.c:936 -+msgid "System is running on low power" -+msgstr "Систем ради са напајањем на истеку" -+ -+#: ../src/xfpm-power.c:955 -+#, c-format -+msgid "" -+"Your %s charge level is low\n" -+"Estimated time left %s" -+msgstr "" -+"Ваш %s ниво пуњења је низак\n" -+"процењено преостало време је %s" -+ -+#: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 -+msgid "Adaptor is offline" -+msgstr "Адаптер је искључен" -+ -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 -+#, c-format -+msgid "Adaptor is online" -+msgstr "Адаптер је укључен" -+ -+#: ../src/xfpm-power.c:1617 ../src/xfpm-power.c:1638 ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1676 -+#, c-format -+msgid "Permission denied" -+msgstr "Дозвола одбијена" -+ -+#: ../src/xfpm-power.c:1661 ../src/xfpm-power.c:1684 -+#, c-format -+msgid "Suspend not supported" -+msgstr "Обустава није подржана" -+ -+#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 -+msgid "Battery" -+msgstr "Батерија" -+ -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 -+msgid "UPS" -+msgstr "УПС" -+ -+#: ../src/xfpm-power-common.c:126 -+msgid "Line power" -+msgstr "Линијско напајање" -+ -+#: ../src/xfpm-power-common.c:128 -+msgid "Mouse" -+msgstr "Миш" -+ -+#: ../src/xfpm-power-common.c:130 -+msgid "Keyboard" -+msgstr "Тастатура" -+ -+#: ../src/xfpm-power-common.c:134 -+msgid "PDA" -+msgstr "ПДА" -+ -+#: ../src/xfpm-power-common.c:136 -+msgid "Phone" -+msgstr "Телефон" -+ -+#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 -+msgid "Unknown" -+msgstr "Непознато" -+ -+#: ../src/xfpm-power-common.c:155 -+msgid "Lithium ion" -+msgstr "Литијум јонска" -+ -+#: ../src/xfpm-power-common.c:157 -+msgid "Lithium polymer" -+msgstr "Литијум полимерна" -+ -+#: ../src/xfpm-power-common.c:159 -+msgid "Lithium iron phosphate" -+msgstr "Литијум гвожђе-фосфатна" -+ -+#: ../src/xfpm-power-common.c:161 -+msgid "Lead acid" -+msgstr "Оловна киселина" -+ -+#: ../src/xfpm-power-common.c:163 -+msgid "Nickel cadmium" -+msgstr "Никал кадминумска" -+ -+#: ../src/xfpm-power-common.c:165 -+msgid "Nickel metal hybride" -+msgstr "Никал метал-хидридна" -+ -+#: ../src/xfpm-battery.c:171 -+msgid "Unknown time" -+msgstr "Непознато време" -+ -+#: ../src/xfpm-battery.c:177 -+#, c-format -+msgid "%i minute" -+msgid_plural "%i minutes" -+msgstr[0] "%i минут" -+msgstr[1] "%i минута" -+msgstr[2] "%i минута" -+ -+#: ../src/xfpm-battery.c:188 -+#, c-format -+msgid "%i hour" -+msgid_plural "%i hours" -+msgstr[0] "%i сат" -+msgstr[1] "%i сата" -+msgstr[2] "%i сати" -+ -+#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" -+#. * Swap order with "%2$s %2$i %1$s %1$i if needed -+#: ../src/xfpm-battery.c:194 -+#, c-format -+msgid "%i %s %i %s" -+msgstr "%i %s %i %s" -+ -+#: ../src/xfpm-battery.c:195 -+msgid "hour" -+msgid_plural "hours" -+msgstr[0] "сат" -+msgstr[1] "сата" -+msgstr[2] "сати" -+ -+#: ../src/xfpm-battery.c:196 -+msgid "minute" -+msgid_plural "minutes" -+msgstr[0] "минут" -+msgstr[1] "минута" -+msgstr[2] "минута" -+ -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 -+#, c-format -+msgid "Your %s is fully charged" -+msgstr "Ваша %s је потпуно напуњена" -+ -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 -+#, c-format -+msgid "Your %s is charging" -+msgstr "Ваша %s се пуни" -+ -+#: ../src/xfpm-battery.c:224 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"%s until is fully charged." -+msgstr "" -+"%s (%i%%)\n" -+"%s до краја пуњења." -+ -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 -+#, c-format -+msgid "Your %s is discharging" -+msgstr "Ваша %s се празни" -+ -+#: ../src/xfpm-battery.c:234 -+#, c-format -+msgid "System is running on %s power" -+msgstr "Систем ради на %s снаге" -+ -+#: ../src/xfpm-battery.c:244 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"Estimated time left is %s." -+msgstr "" -+"%s (%i%%)\n" -+"Преостало време је %s." -+ -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 -+#, c-format -+msgid "Your %s is empty" -+msgstr "Ваша %s је празна" -+ -+#: ../src/xfpm-battery.c:413 -+#, c-format -+msgid "System is running on battery power" -+msgstr "Систем се напаја са батерије" -+ -+#: ../src/xfpm-battery.c:420 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%).\n" -+"Provides %s runtime" -+msgstr "" -+"%s\n" -+"Ваша %s је потпуно напуњена (%i%%).\n" -+"Обезбеђује %s време рада" -+ -+#: ../src/xfpm-battery.c:429 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%)." -+msgstr "" -+"%s\n" -+"ваша %s је потпуно напуњена (%i%%)." -+ -+#: ../src/xfpm-battery.c:440 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)\n" -+"%s until is fully charged." -+msgstr "" -+"%s\n" -+"Ваша %s с пуни (%i%%)\n" -+"%s до краја пуњења." -+ -+#: ../src/xfpm-battery.c:449 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)." -+msgstr "" -+"%s\n" -+"Ваша %s се пуни (%i%%)." -+ -+#: ../src/xfpm-battery.c:460 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)\n" -+"Estimated time left is %s." -+msgstr "" -+"%s\n" -+"Ваша %s се празни (%i%%)\n" -+"Процењено преостало време је %s." -+ -+#: ../src/xfpm-battery.c:469 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)." -+msgstr "" -+"%s\n" -+"Ваша %s се празни (%i%%)." -+ -+#: ../src/xfpm-battery.c:478 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to discharge (%i%%)." -+msgstr "" -+"%s\n" -+"%s чека на пражњење (%i%%)." -+ -+#: ../src/xfpm-battery.c:482 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to charge (%i%%)." -+msgstr "" -+"%s\n" -+"%s чека на пуњење (%i%%)." -+ -+#: ../src/xfpm-battery.c:486 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is empty" -+msgstr "" -+"%s\n" -+"Ваша %s је празна" -+ -+#: ../src/xfpm-battery.c:829 -+msgid "battery" -+msgstr "батерија" -+ -+#: ../src/xfpm-battery.c:835 -+msgid "monitor battery" -+msgstr "батерија монитора" -+ -+#: ../src/xfpm-battery.c:838 -+msgid "mouse battery" -+msgstr "батерија миша" -+ -+#: ../src/xfpm-battery.c:841 -+msgid "keyboard battery" -+msgstr "батерија тастатуре" -+ -+#: ../src/xfpm-battery.c:844 -+msgid "PDA battery" -+msgstr "батерија ПДА" -+ -+#: ../src/xfpm-battery.c:847 -+msgid "Phone battery" -+msgstr "батерија телефона" -+ -+#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:93 -+#, c-format -+msgid "" -+"\n" -+"Xfce Power Manager %s\n" -+"\n" -+"Part of the Xfce Goodies Project\n" -+"http://goodies.xfce.org\n" -+"\n" -+"Licensed under the GNU GPL.\n" -+"\n" -+msgstr "" -+"\n" -+"ИксФЦЕ управник потрошње %s\n" -+"Део пројекта ИксФЦЕ добара\n" -+"http://goodies.xfce.org\n" -+"\n" -+"Објавњен под лиценцом ГНУ ОЈЛ.\n" -+"\n" -+ -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 -+msgid "True" -+msgstr "Тачно" -+ -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 -+msgid "False" -+msgstr "Нетачно" -+ -+#: ../src/xfpm-main.c:113 -+#, c-format -+msgid "With policykit support\n" -+msgstr "Са подршком безбедносног скупа\n" -+ -+#: ../src/xfpm-main.c:115 -+#, c-format -+msgid "Without policykit support\n" -+msgstr "Без подршке безбедносног скупа\n" -+ -+#: ../src/xfpm-main.c:118 -+#, c-format -+msgid "With network manager support\n" -+msgstr "Са подршком управника мреже\n" -+ -+#: ../src/xfpm-main.c:120 -+#, c-format -+msgid "Without network manager support\n" -+msgstr "Без подршке управника мреже\n" -+ -+#: ../src/xfpm-main.c:123 -+#, c-format -+msgid "With DPMS support\n" -+msgstr "Са ДПМС подршком\n" -+ -+#: ../src/xfpm-main.c:125 -+#, c-format -+msgid "Without DPMS support\n" -+msgstr "Без ДПМС подршке\n" -+ -+#: ../src/xfpm-main.c:141 -+msgid "Can suspend" -+msgstr "Могу у обуставу" -+ -+#: ../src/xfpm-main.c:143 -+msgid "Can hibernate" -+msgstr "Могу у мировање" -+ -+#: ../src/xfpm-main.c:145 -+msgid "Can spin down hard disks" -+msgstr "Могу успорити чврсте дискове" -+ -+#: ../src/xfpm-main.c:147 -+msgid "Authorized to suspend" -+msgstr "Овлашћен за обуставу" -+ -+#: ../src/xfpm-main.c:149 -+msgid "Authorized to hibernate" -+msgstr "Овлашћен за неактивност" -+ -+#: ../src/xfpm-main.c:151 -+msgid "Authorized to shutdown" -+msgstr "Овлашћен за гашење" -+ -+#: ../src/xfpm-main.c:153 -+msgid "Authorized to spin down hard disks" -+msgstr "Овлашћен за успорење чврстих дискова" -+ -+#: ../src/xfpm-main.c:155 -+msgid "Has battery" -+msgstr "Има батерију" -+ -+#: ../src/xfpm-main.c:157 -+msgid "Has brightness panel" -+msgstr "Има плочу осветљења" -+ -+#: ../src/xfpm-main.c:159 -+msgid "Has power button" -+msgstr "Има дугме напајања" -+ -+#: ../src/xfpm-main.c:161 -+msgid "Has hibernate button" -+msgstr "Има дугме неактивности" -+ -+#: ../src/xfpm-main.c:163 -+msgid "Has sleep button" -+msgstr "Има дугме успављивања" -+ -+#: ../src/xfpm-main.c:165 -+msgid "Has LID" -+msgstr "Има преклопни екран" -+ -+#: ../src/xfpm-main.c:264 -+msgid "Do not daemonize" -+msgstr "Не ствара демона" -+ -+#: ../src/xfpm-main.c:265 -+msgid "Enable debugging" -+msgstr "Укључује уклањање грешака" -+ -+#: ../src/xfpm-main.c:266 -+msgid "Dump all information" -+msgstr "Истреса све податке" -+ -+#: ../src/xfpm-main.c:267 -+msgid "Restart the running instance of Xfce power manager" -+msgstr "Поново покрени све текуће примерке ИксФЦЕ управника потрошње" -+ -+#: ../src/xfpm-main.c:268 -+msgid "Show the configuration dialog" -+msgstr "Прикажи дијалог подешавања" -+ -+#: ../src/xfpm-main.c:269 -+msgid "Quit any running xfce power manager" -+msgstr "Искључи било којег ИксФЦЕ управника потрошњом" -+ -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 -+msgid "Version information" -+msgstr "Подаци о издању" -+ -+#: ../src/xfpm-main.c:320 -+msgid "Unable to get connection to the message bus session" -+msgstr "Не могу да добавим везу до сесије сабирнице поруке" -+ -+#: ../src/xfpm-main.c:414 -+msgid "Another power manager is already running" -+msgstr "Неки други управник потрошње је у погону" -+ -+#: ../src/xfpm-main.c:420 -+#, c-format -+msgid "Xfce power manager is already running" -+msgstr "ИксФЦЕ управник потрошње је већ у употреби" -+ -+#: ../src/xfpm-inhibit.c:331 -+#, c-format -+msgid "Invalid arguments" -+msgstr "Неисправни аргументи" -+ -+#: ../src/xfpm-inhibit.c:357 -+#, c-format -+msgid "Invalid cookie" -+msgstr "Неважећи колачић" -+ -+#. TRANSLATORS: the command line was not provided -+#: ../src/xfpm-power-info.c:118 -+msgid "No data" -+msgstr "Нема података" -+ -+#. TRANSLATORS: kernel module, usually a device driver -+#: ../src/xfpm-power-info.c:125 ../src/xfpm-power-info.c:130 -+msgid "Kernel module" -+msgstr "Модул језгра" -+ -+#. TRANSLATORS: kernel housekeeping -+#: ../src/xfpm-power-info.c:135 -+msgid "Kernel core" -+msgstr "Језгро кернела" -+ -+#. TRANSLATORS: interrupt between processors -+#: ../src/xfpm-power-info.c:140 -+msgid "Interprocessor interrupt" -+msgstr "Међупроцесорско ометање" -+ -+#. TRANSLATORS: unknown interrupt -+#: ../src/xfpm-power-info.c:145 -+msgid "Interrupt" -+msgstr "Прекид" -+ -+#. TRANSLATORS: the keyboard and mouse device event -+#: ../src/xfpm-power-info.c:189 -+msgid "PS/2 keyboard/mouse/touchpad" -+msgstr "ПС/2 тастатура/миш/додирна плочица" -+ -+#. TRANSLATORS: ACPI, the Intel power standard on laptops and desktops -+#: ../src/xfpm-power-info.c:192 -+msgid "ACPI" -+msgstr "АЦПИ" -+ -+#. TRANSLATORS: serial ATA is a new style of hard disk interface -+#: ../src/xfpm-power-info.c:195 -+msgid "Serial ATA" -+msgstr "Серијски АТА" -+ -+#. TRANSLATORS: this is the old-style ATA interface -+#: ../src/xfpm-power-info.c:198 -+msgid "ATA host controller" -+msgstr "АТА контролор домаћина" -+ -+#. TRANSLATORS: 802.11 wireless adaptor -+#: ../src/xfpm-power-info.c:201 -+msgid "Intel wireless adaptor" -+msgstr "Интел бежични адаптер" -+ -+#. TRANSLATORS: a timer is something that fires periodically -+#: ../src/xfpm-power-info.c:206 ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:218 -+#, c-format -+msgid "Timer %s" -+msgstr "Одбројавач %s" -+ -+#. TRANSLATORS: this is a task that's woken up from sleeping -+#: ../src/xfpm-power-info.c:221 -+#, c-format -+msgid "Sleep %s" -+msgstr "Спавање %s" -+ -+#. TRANSLATORS: this is a new realtime task -+#: ../src/xfpm-power-info.c:224 -+#, c-format -+msgid "New task %s" -+msgstr "Нови задатак %s" -+ -+#. TRANSLATORS: this is a task thats woken to check state -+#: ../src/xfpm-power-info.c:227 -+#, c-format -+msgid "Wait %s" -+msgstr "Причекајте %s" -+ -+#. TRANSLATORS: a work queue is a list of work that has to be done -+#: ../src/xfpm-power-info.c:230 ../src/xfpm-power-info.c:233 -+#, c-format -+msgid "Work queue %s" -+msgstr "Редослед рада %s" -+ -+#. TRANSLATORS: this is when the networking subsystem clears out old entries -+#: ../src/xfpm-power-info.c:236 -+#, c-format -+msgid "Network route flush %s" -+msgstr "Чишћење мрежне руте %s" -+ -+#. TRANSLATORS: activity on the USB bus -+#: ../src/xfpm-power-info.c:239 -+#, c-format -+msgid "USB activity %s" -+msgstr "УСБ активност %s" -+ -+#. TRANSLATORS: we've timed out of an aligned timer -+#: ../src/xfpm-power-info.c:242 -+#, c-format -+msgid "Wakeup %s" -+msgstr "Буђење %s" -+ -+#. TRANSLATORS: interupts on the system required for basic operation -+#: ../src/xfpm-power-info.c:245 -+msgid "Local interrupts" -+msgstr "Локална ометања" -+ -+#. TRANSLATORS: interrupts when a task gets moved from one core to another -+#: ../src/xfpm-power-info.c:248 -+msgid "Rescheduling interrupts" -+msgstr "Ометања у пребацивању" -+ -+#: ../src/xfpm-power-info.c:331 -+msgid "Attribute" -+msgstr "Особина" -+ -+#: ../src/xfpm-power-info.c:338 -+msgid "Value" -+msgstr "Вредност" -+ -+#: ../src/xfpm-power-info.c:348 -+msgid "Device" -+msgstr "Уређај" -+ -+#: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739 -+msgid "Type" -+msgstr "Врста" -+ -+#: ../src/xfpm-power-info.c:375 -+msgid "PowerSupply" -+msgstr "Извор напајања" -+ -+#: ../src/xfpm-power-info.c:393 -+msgid "Model" -+msgstr "Модел" -+ -+#: ../src/xfpm-power-info.c:407 -+msgid "Technology" -+msgstr "Технологија" -+ -+#. TRANSLATORS: Unit here is What hour -+#: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:442 -+msgid "Wh" -+msgstr "Wh" -+ -+#: ../src/xfpm-power-info.c:420 -+msgid "Energy full design" -+msgstr "Потпун дизајн енергије" -+ -+#: ../src/xfpm-power-info.c:434 -+msgid "Energy full" -+msgstr "Напајање пуно" -+ -+#: ../src/xfpm-power-info.c:448 -+msgid "Energy empty" -+msgstr "Напајање празно" -+ -+#. TRANSLATORS: Unit here is volt -+#: ../src/xfpm-power-info.c:456 -+msgid "V" -+msgstr "V" -+ -+#: ../src/xfpm-power-info.c:461 -+msgid "Voltage" -+msgstr "Напон" -+ -+#: ../src/xfpm-power-info.c:478 -+msgid "Vendor" -+msgstr "Испоручилац" -+ -+#: ../src/xfpm-power-info.c:495 -+msgid "Serial" -+msgstr "Серијски" -+ -+#: ../src/xfpm-power-info.c:731 -+msgid "Processor" -+msgstr "Процесор" -+ -+#. TANSLATORS: PID, is the process id, e.g what ps x gives -+#: ../src/xfpm-power-info.c:748 -+msgid "PID" -+msgstr "ПИД" -+ -+#: ../src/xfpm-power-info.c:754 -+msgid "Wakeups" -+msgstr "Буђења" -+ -+#: ../src/xfpm-power-info.c:760 -+msgid "Command" -+msgstr "Наредба" -+ -+#: ../src/xfpm-power-info.c:766 -+msgid "Details" -+msgstr "Појединости" -+ -+#: ../src/xfce4-power-manager.desktop.in.h:2 -+msgid "Power management for the Xfce desktop" -+msgstr "Управник потрошње за ИксФЦЕ радно окружење" -+ -+#: ../panel-plugins/brightness/brightness-button.c:180 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2 -+msgid "Control your LCD brightness" -+msgstr "Управљајте вашим осветљењем ЛЦД екрана" -+ -+#: ../panel-plugins/brightness/brightness-button.c:182 -+msgid "No device found" -+msgstr "Није пронађен уређај" -+ -+#: ../panel-plugins/brightness/brightness-button.c:649 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 -+msgid "Brightness plugin" -+msgstr "Прикључак осветљења" -diff --git a/po/sv.po b/po/sv.po -index 6cc1b2a..396159b 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -2,18 +2,19 @@ - # Copyright (C) 2008, 2009 Free Software Foundation, Inc. - # This file is distributed under the same license as the xfce4-power-manager package. - # Daniel Nylander , 2008, 2009. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2011-02-28 11:05+0000\n" -+"POT-Creation-Date: 2013-03-17 19:54+0000\n" - "PO-Revision-Date: 2011-02-28 16:45+0100\n" - "Last-Translator: Daniel Nylander \n" - "Language-Team: Swedish \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=utf-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: sv\n" - "Plural-Forms: nplurals=2; plural=(n != 1);\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 -@@ -45,14 +46,10 @@ msgid "Consider the computer on low power at:" - msgstr "Anse att datorn har låg strömnivå vid:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 --#: ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 --#: ../settings/xfpm-settings.c:1032 --#: ../settings/xfpm-settings.c:1206 --#: ../settings/xfpm-settings.c:1263 --#: ../settings/xfpm-settings.c:1315 --#: ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Viloläge" -@@ -65,8 +62,7 @@ msgstr "Nivå:" - msgid "Lock screen when going for suspend/hibernate" - msgstr "Lås skärmen när datorn försätts i vänteläge/viloläge" - --#: ../data/interfaces/xfpm-settings.ui.h:11 --#: ../src/xfpm-power-common.c:132 -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 - msgid "Monitor" - msgstr "Skärm" - -@@ -74,13 +70,10 @@ msgstr "Skärm" - msgid "Monitor power management control" - msgstr "Övervaka strömhantering" - --#: ../data/interfaces/xfpm-settings.ui.h:13 --#: ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 --#: ../settings/xfpm-settings.c:1021 --#: ../settings/xfpm-settings.c:1195 --#: ../settings/xfpm-settings.c:1252 --#: ../settings/xfpm-settings.c:1304 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Ingenting" - -@@ -125,14 +118,10 @@ msgid "Standby" - msgstr "Viloläge" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 --#: ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 --#: ../settings/xfpm-settings.c:1026 --#: ../settings/xfpm-settings.c:1200 --#: ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 --#: ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Vänteläge" -@@ -166,13 +155,11 @@ msgid "When sleep button is pressed:" - msgstr "När sovknappen trycks ned:" - - #: ../data/interfaces/xfpm-settings.ui.h:32 --#: ../settings/xfpm-settings-main.c:121 --#: ../src/xfpm-main.c:410 -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 - msgid "Xfce Power Manager" - msgstr "Strömhanterare för Xfce" - --#: ../settings/xfpm-settings.c:567 --#: ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 - #: ../settings/xfpm-settings.c:609 - msgid "Never" - msgstr "Aldrig" -@@ -181,30 +168,24 @@ msgstr "Aldrig" - msgid "One minute" - msgstr "En minut" - --#: ../settings/xfpm-settings.c:572 --#: ../settings/xfpm-settings.c:584 -+#: ../settings/xfpm-settings.c:572 ../settings/xfpm-settings.c:584 - msgid "Minutes" - msgstr "minuter" - --#: ../settings/xfpm-settings.c:586 --#: ../settings/xfpm-settings.c:593 --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:595 -+#: ../settings/xfpm-settings.c:586 ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:595 - msgid "One hour" - msgstr "En timme" - --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:598 - msgid "one minute" - msgstr "en minut" - --#: ../settings/xfpm-settings.c:595 --#: ../settings/xfpm-settings.c:599 -+#: ../settings/xfpm-settings.c:595 ../settings/xfpm-settings.c:599 - msgid "minutes" - msgstr "minuter" - --#: ../settings/xfpm-settings.c:597 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:597 ../settings/xfpm-settings.c:598 - #: ../settings/xfpm-settings.c:599 - msgid "hours" - msgstr "timmar" -@@ -213,102 +194,93 @@ msgstr "timmar" - msgid "Seconds" - msgstr "sekunder" - --#: ../settings/xfpm-settings.c:789 --#: ../settings/xfpm-settings.c:985 --#: ../settings/xfpm-settings.c:1462 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Viloläge och vänteläge stöds inte" - --#: ../settings/xfpm-settings.c:794 --#: ../settings/xfpm-settings.c:990 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Viloläge och vänteläge tillåts inte" - --#: ../settings/xfpm-settings.c:823 --#: ../settings/xfpm-settings.c:1212 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Stäng av" - --#: ../settings/xfpm-settings.c:827 --#: ../settings/xfpm-settings.c:1216 --#: ../settings/xfpm-settings.c:1267 --#: ../settings/xfpm-settings.c:1319 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Fråga" - --#: ../settings/xfpm-settings.c:889 --#: ../settings/xfpm-settings.c:1036 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Lås skärmen" - --#: ../settings/xfpm-settings.c:955 --#: ../settings/xfpm-settings.c:1102 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Nedvarvning av hårddiskar tillåts inte" - --#: ../settings/xfpm-settings.c:1142 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Visa alltid en ikon" - --#: ../settings/xfpm-settings.c:1145 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "När batteri är anslutet" - --#: ../settings/xfpm-settings.c:1148 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "När batteri laddas upp eller laddas ur" - --#: ../settings/xfpm-settings.c:1151 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Visa aldrig en ikon" - --#: ../settings/xfpm-settings.c:1177 --msgid "Disable Display Power Management Signaling (DPMS), e.g don't attempt to switch off the display or put it in sleep mode." -+#: ../settings/xfpm-settings.c:1185 -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." - msgstr "" - --#: ../settings/xfpm-settings.c:1371 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Väntelägesåtgärden stöds inte" - --#: ../settings/xfpm-settings.c:1377 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Väntelägesåtgärden tillåts inte" - --#: ../settings/xfpm-settings.c:1383 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Viloläge stöds inte" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Viloläge tillåts inte" - --#: ../settings/xfpm-settings.c:1435 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "När alla strömkällor för datorn når denna uppladdningsnivå" - --#: ../settings/xfpm-settings.c:1538 --#: ../settings/xfpm-settings.c:1543 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Allmänt" - --#: ../settings/xfpm-settings.c:1552 --#: ../settings/xfpm-settings.c:1557 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "På extern ström" - --#: ../settings/xfpm-settings.c:1567 --#: ../settings/xfpm-settings.c:1572 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "På batteriström" - --#: ../settings/xfpm-settings.c:1581 --#: ../settings/xfpm-settings.c:1586 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Utökad" - --#: ../settings/xfpm-settings.c:1654 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Kontrollera din installation av strömhanteraren" - -@@ -320,23 +292,23 @@ msgstr "Uttag för inställningshanterare" - msgid "SOCKET ID" - msgstr "UTTAGS-ID" - --#: ../settings/xfpm-settings-main.c:89 --#: ../src/xfpm-main.c:286 --#: ../src/xfpm-power-info.c:948 -+#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Ange \"%s --help\" för användningsinformation." - - #: ../settings/xfpm-settings-main.c:123 - msgid "Failed to load power manager configuration, using defaults" --msgstr "Misslyckades med att läsa in konfiguration för strömhantering, använder standardvärden" -+msgstr "" -+"Misslyckades med att läsa in konfiguration för strömhantering, använder " -+"standardvärden" - - #: ../settings/xfpm-settings-main.c:148 - msgid "Unable to connect to Xfce Power Manager" - msgstr "Kunde inte ansluta till Strömhanterare för Xfce" - --#: ../settings/xfpm-settings-main.c:190 --#: ../src/xfpm-main.c:326 -+#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:329 - #, c-format - msgid "Xfce power manager is not running" - msgstr "Strömhanterare för Xfce är inte igång" -@@ -350,14 +322,9 @@ msgid "Xfce4 Power Manager is not running, do you want to launch it now?" - msgstr "Strömhanterare för Xfce4 är inte igång. Vill du starta den nu?" - - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 --#: ../src/xfpm-power.c:307 --#: ../src/xfpm-power.c:595 --#: ../src/xfpm-power.c:730 --#: ../src/xfpm-power.c:766 --#: ../src/xfpm-power.c:935 --#: ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:345 --#: ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "Strömhanterare" - -@@ -373,25 +340,39 @@ msgstr "" - "Skicka synpunkter på översättningen till\n" - "" - --#: ../src/xfpm-power.c:330 --msgid "An application is currently disabling the automatic sleep, doing this action now may damage the working state of this application, are you sure you want to hibernate the system?" --msgstr "Ett program har för närvarande inaktiverat automatiskt sömnläge och genomföra denna åtgärd nu kan skada arbetstillståndet för detta program. Är du säker på att du vill försätta datorn i viloläge?" -+#: ../src/xfpm-power.c:328 -+#, fuzzy -+msgid "_Hibernate" -+msgstr "Viloläge" -+ -+#: ../src/xfpm-power.c:329 -+#, fuzzy -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." -+msgstr "" -+"Ett program har för närvarande inaktiverat automatiskt sömnläge och " -+"genomföra denna åtgärd nu kan skada arbetstillståndet för detta program. Är " -+"du säker på att du vill försätta datorn i viloläge?" -+ -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Är du säker på att du vill försätta systemet i viloläge?" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Avsluta" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Alla körande instanser av strömhanteraren kommer att avslutas" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Avsluta strömhanteraren?" - - #. Power information --#: ../src/xfpm-power.c:534 --#: ../src/xfpm-power-info.c:818 -+#: ../src/xfpm-power.c:534 ../src/xfpm-power-info.c:818 - msgid "Power Information" - msgstr "Ströminformation" - -@@ -426,10 +407,11 @@ msgstr "Försätt systemet i vänteläge" - msgid "Shutdown the system" - msgstr "Stäng av systemet" - --#: ../src/xfpm-power.c:725 --#: ../src/xfpm-power.c:763 -+#: ../src/xfpm-power.c:725 ../src/xfpm-power.c:763 - msgid "System is running on low power. Save your work to avoid losing data" --msgstr "Systemet börjar få slut på ström. Spara ditt arbete för att förhindra att data förloras" -+msgstr "" -+"Systemet börjar få slut på ström. Spara ditt arbete för att förhindra att " -+"data förloras" - - #: ../src/xfpm-power.c:936 - msgid "System is running on low power" -@@ -444,39 +426,31 @@ msgstr "" - "Din %s batterinivå är låg\n" - "Ungefärlig tid kvar %s" - --#: ../src/xfpm-power.c:1162 --#: ../src/xfpm-power.c:1167 -+#: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 - msgid "Adaptor is offline" - msgstr "Extern strömkälla är inte ansluten" - --#: ../src/xfpm-power.c:1163 --#: ../src/xfpm-power.c:1168 --#: ../src/xfpm-battery.c:404 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "Extern strömkälla är ansluten" - --#: ../src/xfpm-power.c:1621 --#: ../src/xfpm-power.c:1642 --#: ../src/xfpm-power.c:1657 --#: ../src/xfpm-power.c:1680 -+#: ../src/xfpm-power.c:1617 ../src/xfpm-power.c:1638 ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1676 - #, c-format - msgid "Permission denied" - msgstr "Åtkomst nekas" - --#: ../src/xfpm-power.c:1665 --#: ../src/xfpm-power.c:1688 -+#: ../src/xfpm-power.c:1661 ../src/xfpm-power.c:1684 - #, c-format - msgid "Suspend not supported" - msgstr "Vänteläge stöds inte" - --#: ../src/xfpm-power-common.c:122 --#: ../src/xfpm-power-common.c:141 -+#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 - msgid "Battery" - msgstr "Batteri" - --#: ../src/xfpm-power-common.c:124 --#: ../src/xfpm-battery.c:820 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "UPS" - -@@ -500,10 +474,8 @@ msgstr "Handdator" - msgid "Phone" - msgstr "Telefon" - --#: ../src/xfpm-power-common.c:138 --#: ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 --#: ../src/xfpm-battery.c:838 -+#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "Okänd" - -@@ -531,18 +503,18 @@ msgstr "Nickel-kadmium" - msgid "Nickel metal hybride" - msgstr "Nickel-metallhydrid" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "Okänd tid" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i minut" - msgstr[1] "%i minuter" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -551,58 +523,74 @@ msgstr[1] "%i timmar" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "timme" - msgstr[1] "timmar" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "minut" - msgstr[1] "minuter" - --#: ../src/xfpm-battery.c:209 --#: ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "Din %s är fullständigt uppladdad" - --#: ../src/xfpm-battery.c:212 --#: ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "Din %s laddas upp" - --#: ../src/xfpm-battery.c:230 --#: ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:224 -+#, fuzzy, c-format -+msgid "" -+"%s (%i%%)\n" -+"%s until is fully charged." -+msgstr "" -+"%s\n" -+"Din %s laddar upp (%i%%)\n" -+"%s tills fullständigt uppladdat." -+ -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "Din %s laddar ur" - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "Systemet kör på %s-ström" - --#: ../src/xfpm-battery.c:248 --#: ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:244 -+#, fuzzy, c-format -+msgid "" -+"%s (%i%%)\n" -+"Estimated time left is %s." -+msgstr "" -+"%s\n" -+"Din %s laddar ur (%i%%)\n" -+"Ungefärlig tid kvar är %s." -+ -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "Din %s är tom" - --#: ../src/xfpm-battery.c:404 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "Systemet kör på batteriström" - --#: ../src/xfpm-battery.c:411 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -613,7 +601,7 @@ msgstr "" - "Din %s är fullständigt uppladdat (%i%%).\n" - "Ger %s körtid" - --#: ../src/xfpm-battery.c:420 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" -@@ -622,7 +610,7 @@ msgstr "" - "%s\n" - "Din %s är fullständigt uppladdat (%i%%)." - --#: ../src/xfpm-battery.c:431 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -633,7 +621,7 @@ msgstr "" - "Din %s laddar upp (%i%%)\n" - "%s tills fullständigt uppladdat." - --#: ../src/xfpm-battery.c:440 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" -@@ -642,7 +630,7 @@ msgstr "" - "%s\n" - "Din %s laddas upp (%i%%)." - --#: ../src/xfpm-battery.c:451 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -653,7 +641,7 @@ msgstr "" - "Din %s laddar ur (%i%%)\n" - "Ungefärlig tid kvar är %s." - --#: ../src/xfpm-battery.c:460 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" -@@ -662,7 +650,7 @@ msgstr "" - "%s\n" - "Din %s laddar ur (%i%%)." - --#: ../src/xfpm-battery.c:469 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" -@@ -671,7 +659,7 @@ msgstr "" - "%s\n" - "%s väntar på att laddas ur (%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -680,7 +668,7 @@ msgstr "" - "%s\n" - "%s väntar på att laddas upp (%i%%)." - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" -@@ -689,33 +677,31 @@ msgstr "" - "%s\n" - "Din %s är tom" - --#: ../src/xfpm-battery.c:817 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "batteri" - --#: ../src/xfpm-battery.c:823 --#, fuzzy -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" --msgstr "På batteriström" -+msgstr "" - --#: ../src/xfpm-battery.c:826 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" - msgstr "musbatteri" - --#: ../src/xfpm-battery.c:829 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" - msgstr "tangentbordsbatteri" - --#: ../src/xfpm-battery.c:832 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" - msgstr "handdatorbatteri" - --#: ../src/xfpm-battery.c:835 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "Telefonbatteri" - --#: ../src/xfpm-main.c:53 --#: ../src/xfpm-power-info.c:93 -+#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:93 - #, c-format - msgid "" - "\n" -@@ -736,13 +722,11 @@ msgstr "" - "Licensierad under GNU GPL.\n" - "\n" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "True" - msgstr "Sant" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "False" - msgstr "Falskt" - -@@ -776,92 +760,95 @@ msgstr "Med stöd för DPMS\n" - msgid "Without DPMS support\n" - msgstr "Utan stöd för DPMS\n" - --#: ../src/xfpm-main.c:140 -+#: ../src/xfpm-main.c:141 - msgid "Can suspend" - msgstr "Kan försättas i vänteläge" - --#: ../src/xfpm-main.c:142 -+#: ../src/xfpm-main.c:143 - msgid "Can hibernate" - msgstr "Kan försättas i viloläge" - --#: ../src/xfpm-main.c:144 -+#: ../src/xfpm-main.c:145 - msgid "Can spin down hard disks" - msgstr "Kan varva ner hårddiskar" - --#: ../src/xfpm-main.c:146 -+#: ../src/xfpm-main.c:147 - msgid "Authorized to suspend" - msgstr "Auktoriserad att försätta systemet i vänteläge" - --#: ../src/xfpm-main.c:148 -+#: ../src/xfpm-main.c:149 - msgid "Authorized to hibernate" - msgstr "Auktoriserad att försätta systemet i viloläge" - --#: ../src/xfpm-main.c:150 -+#: ../src/xfpm-main.c:151 - msgid "Authorized to shutdown" - msgstr "Auktoriserad att stänga av systemet" - --#: ../src/xfpm-main.c:152 -+#: ../src/xfpm-main.c:153 - msgid "Authorized to spin down hard disks" - msgstr "Auktoriserad att varva ner hårddiskar" - --#: ../src/xfpm-main.c:154 -+#: ../src/xfpm-main.c:155 -+msgid "Has battery" -+msgstr "Har ett batteri" -+ -+#: ../src/xfpm-main.c:157 - msgid "Has brightness panel" - msgstr "Har panel för ljusstyrka" - --#: ../src/xfpm-main.c:156 -+#: ../src/xfpm-main.c:159 - msgid "Has power button" - msgstr "Har strömknapp" - --#: ../src/xfpm-main.c:158 -+#: ../src/xfpm-main.c:161 - msgid "Has hibernate button" - msgstr "Har vilolägesknapp" - --#: ../src/xfpm-main.c:160 -+#: ../src/xfpm-main.c:163 - msgid "Has sleep button" - msgstr "Har väntelägesknapp" - --#: ../src/xfpm-main.c:162 -+#: ../src/xfpm-main.c:165 - msgid "Has LID" - msgstr "" - --#: ../src/xfpm-main.c:261 -+#: ../src/xfpm-main.c:264 - msgid "Do not daemonize" - msgstr "Kör inte i bakgrunden" - --#: ../src/xfpm-main.c:262 -+#: ../src/xfpm-main.c:265 - msgid "Enable debugging" - msgstr "Aktivera felsökning" - --#: ../src/xfpm-main.c:263 -+#: ../src/xfpm-main.c:266 - msgid "Dump all information" - msgstr "Dumpa all information" - --#: ../src/xfpm-main.c:264 -+#: ../src/xfpm-main.c:267 - msgid "Restart the running instance of Xfce power manager" - msgstr "Starta om den körande instansen av Xfce-strömhanterare" - --#: ../src/xfpm-main.c:265 -+#: ../src/xfpm-main.c:268 - msgid "Show the configuration dialog" - msgstr "Visa konfigurationsdialogen" - --#: ../src/xfpm-main.c:266 -+#: ../src/xfpm-main.c:269 - msgid "Quit any running xfce power manager" - msgstr "Avsluta alla körande xfce-strömhanterare" - --#: ../src/xfpm-main.c:267 --#: ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Versionsinformation" - --#: ../src/xfpm-main.c:317 -+#: ../src/xfpm-main.c:320 - msgid "Unable to get connection to the message bus session" - msgstr "Kunde inte ansluta till meddelandebussessionen" - --#: ../src/xfpm-main.c:411 -+#: ../src/xfpm-main.c:414 - msgid "Another power manager is already running" - msgstr "En annan strömhanterare är redan igång" - --#: ../src/xfpm-main.c:417 -+#: ../src/xfpm-main.c:420 - #, c-format - msgid "Xfce power manager is already running" - msgstr "Strömhanterare för Xfce är redan igång" -@@ -882,8 +869,7 @@ msgid "No data" - msgstr "Inget data" - - #. TRANSLATORS: kernel module, usually a device driver --#: ../src/xfpm-power-info.c:125 --#: ../src/xfpm-power-info.c:130 -+#: ../src/xfpm-power-info.c:125 ../src/xfpm-power-info.c:130 - msgid "Kernel module" - msgstr "Kärnmodul" - -@@ -928,10 +914,8 @@ msgid "Intel wireless adaptor" - msgstr "Intel trådlös adapter" - - #. TRANSLATORS: a timer is something that fires periodically --#: ../src/xfpm-power-info.c:206 --#: ../src/xfpm-power-info.c:209 --#: ../src/xfpm-power-info.c:212 --#: ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:206 ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 ../src/xfpm-power-info.c:215 - #: ../src/xfpm-power-info.c:218 - #, c-format - msgid "Timer %s" -@@ -956,8 +940,7 @@ msgid "Wait %s" - msgstr "Vänta %s" - - #. TRANSLATORS: a work queue is a list of work that has to be done --#: ../src/xfpm-power-info.c:230 --#: ../src/xfpm-power-info.c:233 -+#: ../src/xfpm-power-info.c:230 ../src/xfpm-power-info.c:233 - #, c-format - msgid "Work queue %s" - msgstr "" -@@ -1002,8 +985,7 @@ msgstr "Värde" - msgid "Device" - msgstr "Enhet" - --#: ../src/xfpm-power-info.c:363 --#: ../src/xfpm-power-info.c:739 -+#: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739 - msgid "Type" - msgstr "Typ" - -@@ -1021,8 +1003,7 @@ msgid "Technology" - msgstr "Teknik" - - #. TRANSLATORS: Unit here is What hour --#: ../src/xfpm-power-info.c:414 --#: ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428 - #: ../src/xfpm-power-info.c:442 - msgid "Wh" - msgstr "Wh" -@@ -1092,119 +1073,169 @@ msgstr "Kontrollera ljusstyrkan för din LCD-skärm" - msgid "No device found" - msgstr "Ingen enhet hittades" - --#: ../panel-plugins/brightness/brightness-button.c:651 -+#: ../panel-plugins/brightness/brightness-button.c:649 - #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 - msgid "Brightness plugin" - msgstr "" - - #~ msgid "Xfce 4 Power Manager" - #~ msgstr "Strömhanterare för Xfce 4" -+ - #~ msgid "Xfce power manager" - #~ msgstr "Strömhanterare för Xfce" -+ - #~ msgid "Battery charge level is low" - #~ msgstr "Din batterinivå är låg" -+ - #~ msgid "Xfce Power Manager Settings" - #~ msgstr "Inställningar för Strömhanterare för Xfce" -+ - #~ msgid "Battery is charging" - #~ msgstr "Batteriet laddar upp" -+ - #~ msgid "Your Camera battery" - #~ msgstr "Du kör på batteridrift" -+ - #~ msgid "is fully charged" - #~ msgstr "är fullständigt uppladdat" -+ - #~ msgid "charge level" - #~ msgstr "laddningsnivå" -+ - #~ msgid "is charging" - #~ msgstr "laddar upp" -+ - #~ msgid "is discharging" - #~ msgstr "laddar ur" -+ - #~ msgid "charge is low" - #~ msgstr "laddning är låg" -+ - #~ msgid "is almost empty" - #~ msgstr "är nästan tomt" -+ - #~ msgid "is not present" - #~ msgstr "inte anslutet" -+ - #~ msgid "Battery not present" - #~ msgstr "När batteri är anslutet" -+ - #~ msgid "Estimated time left" - #~ msgstr "Beräknad tid kvar" -+ - #~ msgid "Estimated time to be fully charged" - #~ msgstr "Beräknad tid till fullständigt uppladdat" -+ - #~ msgid "Too many arguments" - #~ msgstr "För många argument" -+ - #~ msgid "Adapter present" - #~ msgstr "Inte anslutet" -+ - #~ msgid "Adapter not present" - #~ msgstr "Inte anslutet" -+ - #~ msgid "Are you sure you want to proceed?" - #~ msgstr "Är du säker på att du vill fortsätta?" -+ - #~ msgid "No data available" - #~ msgstr "Inget data tillgängligt" -+ - #~ msgid "Hibernate not supported" - #~ msgstr "Viloläge stöds inte" -+ - #~ msgid "HAL daemon is not running" - #~ msgstr "Strömhanterare för Xfce är inte igång" -+ - #~ msgid "No hibernate method found" - #~ msgstr "Ingen metod för viloläge hittades" -+ - #~ msgid "Out of memory" - #~ msgstr "Slut på minne" -+ - #~ msgid "System failed to sleep" - #~ msgstr "Försök att försätta systemet i vänteläge misslyckades" -+ - #~ msgid "mAh" - #~ msgstr "mAh" -+ - #~ msgid "Advanced" - #~ msgstr "Avancerade inställningar" -+ - #~ msgid "Enable notification" - #~ msgstr "Aktivera notifiering för UPS-laddning" -+ - #~ msgid "Xfce power manager is not running to releod it" - #~ msgstr "Strömhanterare för Xfce är inte igång" -+ - #~ msgid "Don't show again" - #~ msgstr "Visa inte detta meddelande igen" -+ - #~ msgid "Power manager disconnected" - #~ msgstr "Inställningar för strömhanterare" -+ - #~ msgid "Power manager is connected" - #~ msgstr "Strömhanterare för Xfce är inte igång" --#~ msgid "Are you sure you want to hibernate the system?" --#~ msgstr "Är du säker på att du vill försätta systemet i viloläge?" -+ - #~ msgid "UPS configuration" - #~ msgstr "UPS-konfiguration" -+ - #~ msgid "percent" - #~ msgstr "procent" -+ - #~ msgid "Enable battery state notification" - #~ msgstr "Aktivera notifiering för batteritillstånd" -+ - #~ msgid "Best performance" - #~ msgstr "Bästa prestanda" -+ - #~ msgid "No available keyboard shortcuts found" - #~ msgstr "Inga tillgängliga tangentbordsgenvägar hittades" -+ - #~ msgid "CPU settings" - #~ msgstr "Processorinställningar" -+ - #~ msgid "Shortcuts" - #~ msgstr "Genvägar" -+ - #~ msgid "Monitor Settings" - #~ msgstr "Skärminställningar" -+ - #~ msgid "%" - #~ msgstr "%" -+ - #~ msgid "min" - #~ msgstr "min" -+ - #~ msgid "Suspend after" - #~ msgstr "Vänteläge efter" -+ - #~ msgid "Turn off after" - #~ msgstr "Stäng av efter" -+ - #~ msgid "Xfce4 Power Manager" - #~ msgstr "Strömhanterare för Xfce4" -+ - #~ msgid "Error monitoring HAL events" - #~ msgstr "Fel vid övervakning av HAL-händelser" -+ - #~ msgid "HAL is not running or not responding" - #~ msgstr "HAL är inte igång eller svarar inte" -+ - #~ msgid "Unable to watch device using HAL: %s" - #~ msgstr "Kunde inte bevaka enheten med HAL: %s" -+ - #~ msgid "Error occured while trying to suspend" - #~ msgstr "Ett fel inträffade vid försök att försätta i vänteläge" -+ - #~ msgid "Unknown reply from the message daemon" - #~ msgstr "Okänt svar från meddelandedemonen" -+ - #~ msgid "Failed to create dbus message\n" - #~ msgstr "Misslyckades med att skapa dbus-meddelande\n" -+ - #~ msgid "Failed to send message\n" - #~ msgstr "Misslyckades med att skicka meddelande\n" -+ - #~ msgid "Start xfce power manager" - #~ msgstr "Starta Strömhanterare för Xfce" -- -diff --git a/po/te.po b/po/te.po -index dd1aa28..ef5c024 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -541,8 +541,7 @@ msgid "" - "%s (%i%%)\n" - "%s until is fully charged." - msgstr "" --"%s\n" --"మీ %s చార్జింగు అవుతున్నది (%i%%)\n" -+"%s (%i%%)\n" - "%s లలో పూర్తిగా చార్జ్ అవుతుంది." - - #: ../src/xfpm-battery.c:230 ../src/xfpm-battery.c:266 -@@ -561,8 +560,7 @@ msgid "" - "%s (%i%%)\n" - "Estimated time left is %s." - msgstr "" --"%s\n" --"మీ %s డిస్చార్జ్ అవుతున్నది (%i%%)\n" -+"%s (%i%%)\n" - "ఇంకా మిగిలివున్న సమయం %s." - - #: ../src/xfpm-battery.c:248 ../src/xfpm-battery.c:269 -diff --git a/po/tr.po b/po/tr.po -index 066b41c..cf6b401 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -3,7 +3,7 @@ msgid "" - msgstr "" - "Project-Id-Version: xfce\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-09 18:36+0000\n" -+"POT-Creation-Date: 2012-10-23 22:24+0000\n" - "PO-Revision-Date: 2010-05-12 17:15+0300\n" - "Last-Translator: Ayhan YALÇINSOY \n" - "Language-Team: Turkish \n" -@@ -44,10 +44,10 @@ msgid "Consider the computer on low power at:" - msgstr "Kritik düşük güç seviyesini belirle:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817 --#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034 --#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268 --#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "Hazırda beklet" -@@ -70,10 +70,10 @@ msgstr "Monitör" - msgid "Monitor power management control" - msgstr "Monitör güç yönetimi kontrolü" - --#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806 --#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023 --#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257 --#: ../settings/xfpm-settings.c:1309 -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 - msgid "Nothing" - msgstr "Hiçbiri" - -@@ -120,10 +120,10 @@ msgid "Standby" - msgstr "Hazırda beklet" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:811 --#: ../settings/xfpm-settings.c:879 ../settings/xfpm-settings.c:1028 --#: ../settings/xfpm-settings.c:1205 ../settings/xfpm-settings.c:1262 --#: ../settings/xfpm-settings.c:1314 ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "Askıya Al" -@@ -196,51 +196,51 @@ msgstr "saat" - msgid "Seconds" - msgstr "Saniye" - --#: ../settings/xfpm-settings.c:789 ../settings/xfpm-settings.c:987 --#: ../settings/xfpm-settings.c:1467 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" - msgstr "Askıya alma ve hazırda bekletme işlemleri desteklenmiyor" - --#: ../settings/xfpm-settings.c:794 ../settings/xfpm-settings.c:992 --#: ../settings/xfpm-settings.c:1472 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" - msgstr "Askıya alma ve hazırda bekletme işlemlerine izin verilmedi" - --#: ../settings/xfpm-settings.c:823 ../settings/xfpm-settings.c:1217 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "Kapat" - --#: ../settings/xfpm-settings.c:827 ../settings/xfpm-settings.c:1221 --#: ../settings/xfpm-settings.c:1272 ../settings/xfpm-settings.c:1324 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "Sor" - --#: ../settings/xfpm-settings.c:889 ../settings/xfpm-settings.c:1038 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "Ekranı kilitle" - --#: ../settings/xfpm-settings.c:957 ../settings/xfpm-settings.c:1107 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" - msgstr "Sabit disk izinleri kapatmaya izin vermiyor" - --#: ../settings/xfpm-settings.c:1147 -+#: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" - msgstr "Her zaman simge göster" - --#: ../settings/xfpm-settings.c:1150 -+#: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" - msgstr "Pil takılı iken" - --#: ../settings/xfpm-settings.c:1153 -+#: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" - msgstr "Pil şarj edilirken veya tükenirken" - --#: ../settings/xfpm-settings.c:1156 -+#: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" - msgstr "Simge gösterme" - --#: ../settings/xfpm-settings.c:1182 -+#: ../settings/xfpm-settings.c:1185 - msgid "" - "Disable Display Power Management Signaling (DPMS), e.g don't attempt to " - "switch off the display or put it in sleep mode." -@@ -248,43 +248,43 @@ msgstr "" - "Görüntü Güç Yönetimi Sinyalizasyonunu (DPMS) Devredışı bırak, ör. ekranı " - "kapatma veya hazırda bekletme kipine alma." - --#: ../settings/xfpm-settings.c:1376 -+#: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" - msgstr "Askıya alma işlemi desteklenmiyor" - --#: ../settings/xfpm-settings.c:1382 -+#: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" - msgstr "Askıya alma işlemine izin verilmedi" - --#: ../settings/xfpm-settings.c:1388 -+#: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" - msgstr "Hazırda bekletme işlemi desteklenmiyor" - --#: ../settings/xfpm-settings.c:1393 -+#: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" - msgstr "Hazırda bekletme işlemine izin verilmedi" - --#: ../settings/xfpm-settings.c:1440 -+#: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "Bilgisayarın şarj seviyesi şu seviye yüzdesine geldiğinde" - --#: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "Genel" - --#: ../settings/xfpm-settings.c:1557 ../settings/xfpm-settings.c:1562 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "Fişe takılı iken (AC)" - --#: ../settings/xfpm-settings.c:1572 ../settings/xfpm-settings.c:1577 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "Pil ile çalışırken" - --#: ../settings/xfpm-settings.c:1586 ../settings/xfpm-settings.c:1591 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" - msgstr "Genişletilmiş" - --#: ../settings/xfpm-settings.c:1659 -+#: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" - msgstr "Güç yöneticisi kurulumunu kontrol edin" - -@@ -297,7 +297,7 @@ msgid "SOCKET ID" - msgstr "Soket Kimliği" - - #: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 --#: ../src/xfpm-power-info.c:948 -+#: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." - msgstr "Kullanımı öğrenmek için '%s --help' yazınız." -@@ -327,7 +327,7 @@ msgstr "Xfce4 Güç Yöneticisi çalışmıyor, çalıştırmak ister misiniz?" - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 - #: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 - #: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:349 ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "Güç Yöneticisi" - -@@ -341,25 +341,32 @@ msgstr "" - "Samed Beyribey , 2009 Ayhan " - "YALÇINSOY,2010" - --#: ../src/xfpm-power.c:330 -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "_Hazırda beklet" -+ -+#: ../src/xfpm-power.c:329 - msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." - msgstr "" --"Bir uygulama otomatik askıya alma işlemini devre dışı bırakıyor. Bu işlemi " --"şu an gerçekleştirirseniz çalışan uygulamaya zarar verebilirsiniz, buna " --"rağmen sistemi hazırda bekletmek istediğinizden emin misiniz?" -+"Bir uygulama şu an otomatik askıya alma işlemini devre dışı bırakıyor. Bu " -+"işlemi şu an gerçekleştirirseniz çalışan uygulamaya zarar verebilirsiniz, " -+"buna rağmen sistemi askıya almak istiyor musunuz?" - --#: ../src/xfpm-power.c:428 -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "Sistemi hazırda beklet moduna almak istediğinizden emin misiniz?" -+ -+#: ../src/xfpm-power.c:426 - msgid "Quit" - msgstr "Kapat" - --#: ../src/xfpm-power.c:429 -+#: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" - msgstr "Tüm çalışan güç yöneticisi uygulamaları kapatılacak" - --#: ../src/xfpm-power.c:431 -+#: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" - msgstr "Güç yöneticisinden çıkılsın mı?" - -@@ -414,15 +421,14 @@ msgid "" - "Your %s charge level is low\n" - "Estimated time left %s" - msgstr "" --"%s\n" --"%s deşarj oluyor (%i%%)\n" -+"%s deşarj oluyor\n" - "tahmini kalan süre %s." - - #: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 - msgid "Adaptor is offline" - msgstr "Adaptör takılı değil" - --#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:408 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "Adaptör takılı" -@@ -442,7 +448,7 @@ msgstr "Askıya alma desteklenmiyor" - msgid "Battery" - msgstr "Pil" - --#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:824 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "UPS" - -@@ -467,7 +473,7 @@ msgid "Phone" - msgstr "Telefon" - - #: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:842 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" - msgstr "Bilinmiyor" - -@@ -495,17 +501,17 @@ msgstr "Nikel Kadmiyum" - msgid "Nickel metal hybride" - msgstr "Nikel metal hibrid" - --#: ../src/xfpm-battery.c:169 -+#: ../src/xfpm-battery.c:171 - msgid "Unknown time" - msgstr "Bilinmeyen zaman" - --#: ../src/xfpm-battery.c:175 -+#: ../src/xfpm-battery.c:177 - #, c-format - msgid "%i minute" - msgid_plural "%i minutes" - msgstr[0] "%i dakika" - --#: ../src/xfpm-battery.c:186 -+#: ../src/xfpm-battery.c:188 - #, c-format - msgid "%i hour" - msgid_plural "%i hours" -@@ -513,72 +519,70 @@ msgstr[0] "%i saat" - - #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" - #. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:192 -+#: ../src/xfpm-battery.c:194 - #, c-format - msgid "%i %s %i %s" - msgstr "%i %s %i %s" - --#: ../src/xfpm-battery.c:193 -+#: ../src/xfpm-battery.c:195 - msgid "hour" - msgid_plural "hours" - msgstr[0] "saat" - --#: ../src/xfpm-battery.c:194 -+#: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" - msgstr[0] "dakika" - --#: ../src/xfpm-battery.c:209 ../src/xfpm-battery.c:260 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "%s tamamen şarj edildi" - --#: ../src/xfpm-battery.c:212 ../src/xfpm-battery.c:263 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "%s şarj ediliyor" - --#: ../src/xfpm-battery.c:222 --#, fuzzy, c-format -+#: ../src/xfpm-battery.c:224 -+#, c-format - msgid "" - "%s (%i%%)\n" - "%s until is fully charged." - msgstr "" --"%s\n" --"%s şarj oluyor (%i%%)\n" -+"%s (%i%%)\n" - "%s tamamen şarj olacak." - --#: ../src/xfpm-battery.c:230 ../src/xfpm-battery.c:266 -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "%s deşarj oluyor." - --#: ../src/xfpm-battery.c:232 -+#: ../src/xfpm-battery.c:234 - #, c-format - msgid "System is running on %s power" - msgstr "Sistem, %s gücüyle çalışıyor." - --#: ../src/xfpm-battery.c:242 -+#: ../src/xfpm-battery.c:244 - #, c-format - msgid "" - "%s (%i%%)\n" - "Estimated time left is %s." - msgstr "" --"%s\n" --"%s deşarj oluyor (%i%%)\n" -+"%s (%i%%)\n" - "tahmini kalan süre %s." - --#: ../src/xfpm-battery.c:248 ../src/xfpm-battery.c:269 -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "%s boş" - --#: ../src/xfpm-battery.c:408 -+#: ../src/xfpm-battery.c:413 - #, c-format - msgid "System is running on battery power" - msgstr "Sistem pil gücü ile çalışıyor" - --#: ../src/xfpm-battery.c:415 -+#: ../src/xfpm-battery.c:420 - #, c-format - msgid "" - "%s\n" -@@ -589,7 +593,7 @@ msgstr "" - "%s tam şarj oldu (%i%%).\n" - "%s çalışma zamanı sağlar" - --#: ../src/xfpm-battery.c:424 -+#: ../src/xfpm-battery.c:429 - #, c-format - msgid "" - "%s\n" -@@ -598,7 +602,7 @@ msgstr "" - "%s\n" - "%s tamamen şarj oldu (%i%%)." - --#: ../src/xfpm-battery.c:435 -+#: ../src/xfpm-battery.c:440 - #, c-format - msgid "" - "%s\n" -@@ -609,7 +613,7 @@ msgstr "" - "%s şarj oluyor (%i%%)\n" - "%s tamamen şarj olacak." - --#: ../src/xfpm-battery.c:444 -+#: ../src/xfpm-battery.c:449 - #, c-format - msgid "" - "%s\n" -@@ -618,7 +622,7 @@ msgstr "" - "%s\n" - " %s şarj oluyor (%i%%)." - --#: ../src/xfpm-battery.c:455 -+#: ../src/xfpm-battery.c:460 - #, c-format - msgid "" - "%s\n" -@@ -629,7 +633,7 @@ msgstr "" - "%s deşarj oluyor (%i%%)\n" - "tahmini kalan süre %s." - --#: ../src/xfpm-battery.c:464 -+#: ../src/xfpm-battery.c:469 - #, c-format - msgid "" - "%s\n" -@@ -638,7 +642,7 @@ msgstr "" - "%s\n" - "%s deşarj oluyor (%i%%)." - --#: ../src/xfpm-battery.c:473 -+#: ../src/xfpm-battery.c:478 - #, c-format - msgid "" - "%s\n" -@@ -647,7 +651,7 @@ msgstr "" - "%s\n" - "%s deşarj için bekliyor (%i%%)." - --#: ../src/xfpm-battery.c:477 -+#: ../src/xfpm-battery.c:482 - #, c-format - msgid "" - "%s\n" -@@ -656,7 +660,7 @@ msgstr "" - "%s\n" - "%s şarj için bekliyor (%i%%)." - --#: ../src/xfpm-battery.c:481 -+#: ../src/xfpm-battery.c:486 - #, c-format - msgid "" - "%s\n" -@@ -665,27 +669,27 @@ msgstr "" - "%s\n" - "%s boş" - --#: ../src/xfpm-battery.c:821 -+#: ../src/xfpm-battery.c:829 - msgid "battery" - msgstr "pil" - --#: ../src/xfpm-battery.c:827 -+#: ../src/xfpm-battery.c:835 - msgid "monitor battery" - msgstr "pili izle" - --#: ../src/xfpm-battery.c:830 -+#: ../src/xfpm-battery.c:838 - msgid "mouse battery" - msgstr "fare pili" - --#: ../src/xfpm-battery.c:833 -+#: ../src/xfpm-battery.c:841 - msgid "keyboard battery" - msgstr "klavye pili" - --#: ../src/xfpm-battery.c:836 -+#: ../src/xfpm-battery.c:844 - msgid "PDA battery" - msgstr "PDA pili" - --#: ../src/xfpm-battery.c:839 -+#: ../src/xfpm-battery.c:847 - msgid "Phone battery" - msgstr "telefon pili" - -@@ -824,7 +828,7 @@ msgstr "Yapılandırma menüsünü göster" - msgid "Quit any running xfce power manager" - msgstr "Çalışan tüm xfce güç yöneticisi uygulamalarını kapat" - --#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:935 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "Sürüm bilgisi" - -@@ -1063,6 +1067,15 @@ msgstr "Aygıt bulunamadı" - msgid "Brightness plugin" - msgstr "Ekran Parlaklığı eklentisi" - -+#~ msgid "" -+#~ "An application is currently disabling the automatic sleep, doing this " -+#~ "action now may damage the working state of this application, are you sure " -+#~ "you want to hibernate the system?" -+#~ msgstr "" -+#~ "Bir uygulama otomatik askıya alma işlemini devre dışı bırakıyor. Bu " -+#~ "işlemi şu an gerçekleştirirseniz çalışan uygulamaya zarar verebilirsiniz, " -+#~ "buna rağmen sistemi hazırda bekletmek istediğinizden emin misiniz?" -+ - #~ msgid "Xfce 4 Power Manager" - #~ msgstr "Xfce4 Güç Yöneticisi" - -@@ -1158,15 +1171,6 @@ msgstr "Ekran Parlaklığı eklentisi" - #~ msgid "Are you sure you want to proceed?" - #~ msgstr "İşlemi gerçekleştirmek istediğinizden emin misiniz?" - --#~ msgid "" --#~ "An application is currently disabling the automatic sleep, doing this " --#~ "action now may damage the working state of this application, are you sure " --#~ "you want to suspend the system?" --#~ msgstr "" --#~ "Bir uygulama şu an otomatik askıya alma işlemini devre dışı bırakıyor. Bu " --#~ "işlemi şu an gerçekleştirirseniz çalışan uygulamaya zarar verebilirsiniz, " --#~ "buna rağmen sistemi askıya almak istiyor musunuz?" -- - #~ msgid "Monitor power control" - #~ msgstr "Monitör güç kontrolü" - -@@ -1267,9 +1271,6 @@ msgstr "Ekran Parlaklığı eklentisi" - #~ "Güç bağdaştırıcısı durumu bilgisi okunamadı, güç yöneticisi düzgün " - #~ "çalışmayabilir" - --#~ msgid "Are you sure you want to hibernate the system?" --#~ msgstr "Sistemi hazırda beklet moduna almak istediğinizden emin misiniz?" -- - #~ msgid "UPS configuration" - #~ msgstr "UPS yapılandırması" - -diff --git a/po/ug.po b/po/ug.po -index 42358f1..13a1567 100644 ---- a/po/ug.po -+++ b/po/ug.po -@@ -1,984 +1,1043 @@ --# Uyghur translations for xfce4-power-manager package --# Copyright (C) 2008 THE xfce4-power-manager'S COPYRIGHT HOLDER --# This file is distributed under the same license as the xfce4-power-manager package. --# Gheyret T.Kenji , 2010. --# --msgid "" --msgstr "" --"Project-Id-Version: xfce4-power-manager 0.6.0svn\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2010-02-04 18:12+0900\n" --"PO-Revision-Date: 2010-02-04 18:12+0900\n" --"Last-Translator: Gheyret T.Kenji \n" --"Language-Team: Uyghur Computer Science Association \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#: ../data/interfaces/xfpm-settings.ui.h:1 --msgid "Actions" --msgstr "مەشغۇلاتلار" -- --#: ../data/interfaces/xfpm-settings.ui.h:2 --msgid "Advanced Options" --msgstr "ئالىي تاللانمىلار" -- --#: ../data/interfaces/xfpm-settings.ui.h:3 --msgid "Brightness" --msgstr "يورۇقلۇقى" -- --#: ../data/interfaces/xfpm-settings.ui.h:4 --msgid "General Options" --msgstr "ئادەتتىكى تاللانمىلار" -- --#: ../data/interfaces/xfpm-settings.ui.h:5 --msgid "Monitor" --msgstr "كۆزەتكۈ" -- --#: ../data/interfaces/xfpm-settings.ui.h:6 --msgid "Actions" --msgstr "مەشغۇلاتلار" -- --#: ../data/interfaces/xfpm-settings.ui.h:7 --msgid "Consider the computer on low power at:" --msgstr "كومپيۇتېرنىڭ توك بېسىمى تۆۋەن دەپ ھۆكۈم قىلىنىدىغان توكنىڭ بېسىمى:" -- --#. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:789 --#: ../settings/xfpm-settings.c:857 ../settings/xfpm-settings.c:995 --#: ../settings/xfpm-settings.c:1160 ../settings/xfpm-settings.c:1215 --#: ../settings/xfpm-settings.c:1265 ../src/xfpm-power.c:524 --#: ../src/xfpm-power.c:785 --msgid "Hibernate" --msgstr "ئۈچەك" -- --#: ../data/interfaces/xfpm-settings.ui.h:9 --msgid "Lock screen when going for suspend/hibernate" --msgstr "suspend/ئۈچەك كە يۆتكەلگەندە ئېكران قۇلۇپلانسۇن" -- --#: ../data/interfaces/xfpm-settings.ui.h:10 ../src/xfpm-power-common.c:132 --msgid "Monitor" --msgstr "كۆزەتكۈ" -- --#: ../data/interfaces/xfpm-settings.ui.h:11 --msgid "Monitor power management control" --msgstr "كۆزەتكۈنىڭ توك مەنبەسىنى كونترول قىلىش" -- --#: ../data/interfaces/xfpm-settings.ui.h:12 ../settings/xfpm-settings.c:778 --#: ../settings/xfpm-settings.c:846 ../settings/xfpm-settings.c:984 --#: ../settings/xfpm-settings.c:1149 ../settings/xfpm-settings.c:1204 --#: ../settings/xfpm-settings.c:1254 --msgid "Nothing" --msgstr "ھېچنېمە" -- --#: ../data/interfaces/xfpm-settings.ui.h:13 --msgid "Power manager settings" --msgstr "توك باشقۇرغۇ تەڭشىكى" -- --#: ../data/interfaces/xfpm-settings.ui.h:14 --msgid "Prefer power savings over performance" --msgstr "ئۇنۇمدىنمۇ توك تېجەشنى بەكرەك ئويلىشىش" -- --#: ../data/interfaces/xfpm-settings.ui.h:15 --msgid "Put display to sleep when computer is inactive for:" --msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكراننى ئۇخلىتىشقىچە بولغان ۋاقىت:" -- --#: ../data/interfaces/xfpm-settings.ui.h:16 --msgid "Put the computer to sleep when inactive for:" --msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئۇخلىتىشقىچە بولغان ۋاقىت:" -- --#: ../data/interfaces/xfpm-settings.ui.h:17 --msgid "Reduce screen brightness when computer is inactive for:" --msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكران يورۇقلۇقىنى تۆۋەنلەت:" -- --#: ../data/interfaces/xfpm-settings.ui.h:18 --msgid "Set computer inactivity sleep mode:" --msgstr "" -- --#: ../data/interfaces/xfpm-settings.ui.h:19 --msgid "Set monitor sleep mode:" --msgstr "كۆزەتكۈنىڭ ئۇخلاش ھالىتى:" -- --#: ../data/interfaces/xfpm-settings.ui.h:20 --msgid "Show notifications to notify about the battery state" --msgstr "توكدان ھالەت ئۇقتۇرۇشىنى كۆرسەت" -- --#: ../data/interfaces/xfpm-settings.ui.h:21 --msgid "Spin down hard disks" --msgstr "قاتتىق دىسكىنى Spin down قىل" -- --#: ../data/interfaces/xfpm-settings.ui.h:22 --msgid "Standby" --msgstr "كۈت" -- --#. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:23 ../settings/xfpm-settings.c:783 --#: ../settings/xfpm-settings.c:851 ../settings/xfpm-settings.c:989 --#: ../settings/xfpm-settings.c:1154 ../settings/xfpm-settings.c:1209 --#: ../settings/xfpm-settings.c:1259 ../src/xfpm-power.c:539 --#: ../src/xfpm-power.c:798 --msgid "Suspend" --msgstr "Suspend" -- --#: ../data/interfaces/xfpm-settings.ui.h:24 --msgid "Switch off display when computer is inactive for:" --msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكراننىڭ توكىنى ئۈزۈشكىچە بولغان ۋاقىت::" -- --#: ../data/interfaces/xfpm-settings.ui.h:25 --msgid "System tray icon: " --msgstr "سىستېما قوندىقىدىكى سىنبەلگىسى: " -- --#: ../data/interfaces/xfpm-settings.ui.h:26 --msgid "When battery power is critical:" --msgstr "توكداننىڭ توكى خەتەرلىك ھالەتكە كەلگەندە(تۆۋەنلەپ):" -- --#: ../data/interfaces/xfpm-settings.ui.h:27 --msgid "When hibernate button is pressed:" --msgstr "hibernate توپچىسى بېسىلغاندا:" -- --#: ../data/interfaces/xfpm-settings.ui.h:28 --msgid "When laptop lid is closed:" --msgstr "laptop lid يېپىلغاندا:" -- --#: ../data/interfaces/xfpm-settings.ui.h:29 --msgid "When power button is pressed:" --msgstr "توك مەنبە توپچىسى بېسىلغاندا:" -- --#: ../data/interfaces/xfpm-settings.ui.h:30 --msgid "When sleep button is pressed:" --msgstr "ئۇخلا توپچىسى بېسىلغاندا:" -- --#: ../data/interfaces/xfpm-settings.ui.h:31 --#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-power.c:601 --#: ../src/xfpm-power.c:772 ../src/xfpm-main.c:418 --#: ../src/xfce4-power-manager.desktop.in.h:2 --msgid "Xfce Power Manager" --msgstr "Xfce توك مەنبە باشقۇرغۇ" -- --#: ../settings/xfpm-settings.c:539 ../settings/xfpm-settings.c:554 --#: ../settings/xfpm-settings.c:581 --msgid "Never" --msgstr "زادىلا" -- --#: ../settings/xfpm-settings.c:542 --msgid "One minute" --msgstr "1 مىنۇت" -- --#: ../settings/xfpm-settings.c:544 ../settings/xfpm-settings.c:556 --msgid "Minutes" --msgstr "مىنۇت" -- --#: ../settings/xfpm-settings.c:558 ../settings/xfpm-settings.c:565 --#: ../settings/xfpm-settings.c:566 ../settings/xfpm-settings.c:567 --msgid "One hour" --msgstr "1 سائەت" -- --#: ../settings/xfpm-settings.c:566 ../settings/xfpm-settings.c:570 --msgid "one minute" --msgstr "1 مىنۇت" -- --#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:571 --msgid "minutes" --msgstr "مىنۇت" -- --#: ../settings/xfpm-settings.c:569 ../settings/xfpm-settings.c:570 --#: ../settings/xfpm-settings.c:571 --msgid "hours" --msgstr "سائەت" -- --#: ../settings/xfpm-settings.c:583 --msgid "Seconds" --msgstr "سېكۇنت" -- --#: ../settings/xfpm-settings.c:761 ../settings/xfpm-settings.c:948 --#: ../settings/xfpm-settings.c:1410 --msgid "Hibernate and suspend operations not supported" --msgstr "Hibernate ۋە suspend مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ." -- --#: ../settings/xfpm-settings.c:766 ../settings/xfpm-settings.c:953 --#: ../settings/xfpm-settings.c:1415 --msgid "Hibernate and suspend operations not permitted" --msgstr "Hibernate ۋە suspend مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -- --#: ../settings/xfpm-settings.c:795 ../settings/xfpm-settings.c:1166 --#: ../src/xfpm-power.c:811 --msgid "Shutdown" --msgstr "تاقا" -- --#: ../settings/xfpm-settings.c:799 ../settings/xfpm-settings.c:1170 --#: ../settings/xfpm-settings.c:1219 ../settings/xfpm-settings.c:1269 --msgid "Ask" --msgstr "كۆرۈشۈپ بېقىڭ" -- --#: ../settings/xfpm-settings.c:861 ../settings/xfpm-settings.c:999 --msgid "Lock screen" --msgstr "ئېكراننى قۇلۇپلا" -- --#: ../settings/xfpm-settings.c:918 ../settings/xfpm-settings.c:1056 --msgid "Spinning down hard disks permission denied" --msgstr "" -- --#: ../settings/xfpm-settings.c:1096 --msgid "Always show icon" --msgstr "ھەمىشە كۆرسەت" -- --#: ../settings/xfpm-settings.c:1099 --msgid "When battery is present" --msgstr "توكدان بار چاغدا كۆرسەت" -- --#: ../settings/xfpm-settings.c:1102 --msgid "When battery is charging or discharging" --msgstr "توكداننى توكلاۋاتقاندا ياكى توكدان ئىشلىتىلىۋاتقاندا كۆرسەت" -- --#: ../settings/xfpm-settings.c:1105 --msgid "Never show icon" --msgstr "كۆرسەتمە" -- --#: ../settings/xfpm-settings.c:1131 --msgid "" --"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " --"switch off the display or put it in sleep mode." --msgstr "" -- --#: ../settings/xfpm-settings.c:1319 --msgid "Suspend operation not supported" --msgstr "Suspend مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ" -- --#: ../settings/xfpm-settings.c:1325 --msgid "Suspend operation not permitted" --msgstr "Suspend مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -- --#: ../settings/xfpm-settings.c:1331 --msgid "Hibernate operation not supported" --msgstr "Hibernate مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ" -- --#: ../settings/xfpm-settings.c:1336 --msgid "Hibernate operation not permitted" --msgstr "Hibernate مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -- --#: ../settings/xfpm-settings.c:1383 --msgid "When all the power sources of the computer reach this charge level" --msgstr "" -- --#: ../settings/xfpm-settings.c:1486 ../settings/xfpm-settings.c:1491 --msgid "General" --msgstr "ئادەتتىكى" -- --#: ../settings/xfpm-settings.c:1500 ../settings/xfpm-settings.c:1505 --msgid "On AC" --msgstr "AC توك مەنبەسى" -- --#: ../settings/xfpm-settings.c:1515 ../settings/xfpm-settings.c:1520 --msgid "On Battery" --msgstr "توكدان" -- --#: ../settings/xfpm-settings.c:1529 ../settings/xfpm-settings.c:1534 --msgid "Extended" --msgstr "كېڭەيتىلگەن" -- --#: ../settings/xfpm-settings.c:1602 --msgid "Check your power manager installation" --msgstr "مەنبە باشقۇرغۇ ئورنىتىلغانمۇ تەكشۈرۈڭ" -- --#: ../settings/xfpm-settings-main.c:78 --msgid "Settings manager socket" --msgstr "manager socket نىڭ تەڭشەكلىرى" -- --#: ../settings/xfpm-settings-main.c:78 --msgid "SOCKET ID" --msgstr "SOCKET ID" -- --#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:294 --#: ../src/xfpm-power-info.c:991 --#, c-format --msgid "Type '%s --help' for usage." --msgstr "'%s --help' كىرگۈزسە ئىشلىتىش ئۇسۇلىنى كۆرگىلى بولىدۇ" -- --#: ../settings/xfpm-settings-main.c:123 --msgid "Failed to load power manager configuration, using defaults" --msgstr "مەنبە باشقۇرغۇ سەپلىمىسىنى ئوقۇش مەغلۇپ بولدى،كۆڭۈلدىكى قىممىتى ئىشلىتىلىدۇ" -- --#: ../settings/xfpm-settings-main.c:148 --msgid "Unable to connect to Xfce Power Manager" --msgstr "Xfce مەنبە باشقۇرغۇغا باغلانغىلى بولمىدى" -- --#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:334 --#, c-format --msgid "Xfce power manager is not running" --msgstr "Xfce مەنبە باشقۇرغۇ ئىجرا قىلىنمىغان" -- --#: ../settings/xfpm-settings-main.c:195 --msgid "Run" --msgstr "ئىجرا قىل" -- --#: ../settings/xfpm-settings-main.c:196 --msgid "Xfce4 Power Manager is not running, do you want to launch it now?" --msgstr "Xfce4 ئىجرا قىلىنمىغان.ئىجرا قىلامسىز؟" -- --#: ../settings/xfce4-power-manager-settings.desktop.in.h:1 --msgid "Power Manager" --msgstr "مەنبە باشقۇرغۇ" -- --#: ../settings/xfce4-power-manager-settings.desktop.in.h:2 --msgid "Settings for the Xfce 4 Power Manager" --msgstr "Xfce 4 مەنبە باشقۇرغۇ تەڭشەكلىرى" -- --#: ../settings/xfce4-power-manager-settings.desktop.in.h:3 --msgid "Xfce 4 Power Manager" --msgstr "Xfce 4 مەنبە باشقۇرغۇ" -- --#: ../common/xfpm-common.c:155 --msgid "translator-credits" --msgstr "Gheyret T.Kenji 2010" -- --#: ../src/xfpm-power.c:314 --msgid "" --"Xfce Power Manager requires version 011 of devicekit-power to work properly " --"while the version found is" --msgstr "" -- --#: ../src/xfpm-power.c:319 ../src/xfpm-power.c:325 --msgid "Devicekit-power version 011 or above not found" --msgstr "" -- --#: ../src/xfpm-power.c:381 ../src/xfpm-power.c:736 ../src/xfpm-power.c:924 --#: ../src/xfpm-power.c:938 ../src/xfpm-battery.c:229 --msgid "Xfce power manager" --msgstr "Xfce مەنبە باشقۇرغۇ" -- --#: ../src/xfpm-power.c:404 --msgid "" --"An application is currently disabling the automatic sleep, doing this action " --"now may damage the working state of this application, are you sure you want " --"to hibernate the system?" --msgstr "" -- --#: ../src/xfpm-power.c:502 --msgid "Quit" --msgstr "ئاخىرلاشتۇر" -- --#: ../src/xfpm-power.c:503 --msgid "All running instances of the power manager will exit" --msgstr "" -- --#: ../src/xfpm-power.c:505 --msgid "Quit Xfce power manager?" --msgstr "Xfce مەنبە باشقۇرغۇنى ئاخىرلاشتۇرسۇنمۇ؟" -- --#. Power information --#: ../src/xfpm-power.c:575 ../src/xfpm-power-info.c:861 --msgid "Power Information" --msgstr "مەنبە ئۇچۇرلىرى" -- --#: ../src/xfpm-power.c:699 --msgid "Hibernate the system" --msgstr "سىستېمىنى Hibernate قىلماق" -- --#: ../src/xfpm-power.c:710 --msgid "Suspend the system" --msgstr "سىستېمىنى Suspend قىلماق" -- --#: ../src/xfpm-power.c:720 --msgid "Shutdown the system" --msgstr "سىستېمىنى Shutdown قىلماق" -- --#: ../src/xfpm-power.c:731 ../src/xfpm-power.c:769 --msgid "System is running on low power. Save your work to avoid losing data" --msgstr "توك مەنبەسى تۆۋەنلەپ كەتتى. سانلىق ئاساسلارنىڭ يوقىلىپ كەتمەسلىكى ئۈچۈن دەرھال ساقلاڭ" -- --#: ../src/xfpm-power.c:925 --msgid "System is running on low power" --msgstr "توك مەنبەسى تۆۋەنلەپ كەتتى" -- --#: ../src/xfpm-power.c:939 --msgid "Battery charge level is low" --msgstr "توكداننىڭ توكى تۆۋەن" -- --#: ../src/xfpm-power.c:1139 ../src/xfpm-power.c:1144 --msgid "Adaptor is offline" --msgstr "Adaptor غا توك كەلمىدى" -- --#: ../src/xfpm-power.c:1140 ../src/xfpm-power.c:1145 ../src/xfpm-battery.c:323 --#, c-format --msgid "Adaptor is online" --msgstr "Adaptor غا توك كەلدى" -- --#: ../src/xfpm-power.c:1632 ../src/xfpm-power.c:1653 ../src/xfpm-power.c:1668 --#: ../src/xfpm-power.c:1691 --#, c-format --msgid "Permission denied" --msgstr "ھوقۇقىڭىز يەتمىدى" -- --#: ../src/xfpm-power.c:1676 ../src/xfpm-power.c:1699 --#, c-format --msgid "Suspend not supported" --msgstr "Suspend نى ئىشلەتكىلى بولمايدۇ" -- --#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 --#: ../src/xfpm-battery.c:325 --msgid "Battery" --msgstr "توكدان" -- --#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:325 --msgid "UPS" --msgstr "UPS" -- --#: ../src/xfpm-power-common.c:126 --msgid "Line power" --msgstr "AC مەنبە" -- --#: ../src/xfpm-power-common.c:128 --msgid "Mouse" --msgstr "چاشقىنەك" -- --#: ../src/xfpm-power-common.c:130 --msgid "Keyboard" --msgstr "" -- --#: ../src/xfpm-power-common.c:134 --msgid "PDA" --msgstr "PDA" -- --#: ../src/xfpm-power-common.c:136 --msgid "Phone" --msgstr "تېلېفون" -- --#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 --msgid "Unknown" --msgstr "نامەلۇم" -- --#: ../src/xfpm-power-common.c:155 --msgid "Lithium ion" --msgstr "" -- --#: ../src/xfpm-power-common.c:157 --msgid "Lithium polymer" --msgstr "" -- --#: ../src/xfpm-power-common.c:159 --msgid "Lithium iron phosphate" --msgstr "" -- --#: ../src/xfpm-power-common.c:161 --msgid "Lead acid" --msgstr "" -- --#: ../src/xfpm-power-common.c:163 --msgid "Nickel cadmium" --msgstr "" -- --#: ../src/xfpm-power-common.c:165 --msgid "Nickel metal hybride" --msgstr "" -- --#: ../src/xfpm-battery.c:147 --msgid "Your battery is fully charged" --msgstr "توكدان تولۇق توكلاندى" -- --#: ../src/xfpm-battery.c:150 --msgid "Your battery is charging" --msgstr "توكدان توكلىنىۋاتىدۇ" -- --#: ../src/xfpm-battery.c:153 --msgid "Your battery is discharging" --msgstr "توكدان توكلانمايۋاتىدۇ" -- --#: ../src/xfpm-battery.c:153 ../src/xfpm-battery.c:323 --#, c-format --msgid "System is running on battery power" --msgstr "سىستېما توكداننى ئىشلىتىۋاتىدۇ" -- --# Could not estimate provided battery runtime --#: ../src/xfpm-battery.c:283 --msgid "Unknown time" --msgstr "نامەلۇم" -- --#: ../src/xfpm-battery.c:289 --#, c-format --msgid "%i minute" --msgid_plural "%i minutes" --msgstr[0] "%i مىنۇت" -- --#: ../src/xfpm-battery.c:300 --#, c-format --msgid "%i hour" --msgid_plural "%i hours" --msgstr[0] "%i سائەت" -- --#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" --#. * Swap order with "%2$s %2$i %1$s %1$i if needed --#: ../src/xfpm-battery.c:306 --#, c-format --msgid "%i %s %i %s" --msgstr "%i %s %i %s" -- --#: ../src/xfpm-battery.c:307 --msgid "hour" --msgid_plural "hours" --msgstr[0] "سائەت" -- --#: ../src/xfpm-battery.c:308 --msgid "minute" --msgid_plural "minutes" --msgstr[0] "مىنۇت" -- --#: ../src/xfpm-battery.c:332 --#, c-format --msgid "" --"%s\n" --"Your %s is fully charged (%i%%).\n" --"Provides %s runtime" --msgstr "%s\n" --"%s تولۇق توكلانغان (%i%%)\n" --"%s ئىشلەتكىلى بولىدۇ" -- --#: ../src/xfpm-battery.c:341 --#, c-format --msgid "" --"%s\n" --"Your %s is fully charged (%i%%)." --msgstr "%s\n" --"%s تولۇق توكلانغان (%i%%)" -- --#: ../src/xfpm-battery.c:352 --#, c-format --msgid "" --"%s\n" --"Your %s is charging (%i%%)\n" --"%s until is fully charged." --msgstr "%s\n" --"%s توكلىنىۋاتىدۇ (%i%%)\n" --"تولۇق توكلانغۇچە %s" -- --#: ../src/xfpm-battery.c:361 --#, c-format --msgid "" --"%s\n" --"Your %s is charging (%i%%)." --msgstr "%s\n" --"%s توكلىنىۋاتىدۇ(%i%%)" -- --#: ../src/xfpm-battery.c:372 --#, c-format --msgid "" --"%s\n" --"Your %s is discharging (%i%%)\n" --"estimated time left is %s." --msgstr "%s\n" --"%s ئىشلىتىلىۋاتىدۇ(%i%%)\n" --"تەخمىنەن %s لىك ئىشلەتكىلى بولىدۇ." -- --#: ../src/xfpm-battery.c:381 --#, c-format --msgid "" --"%s\n" --"Your %s is discharging (%i%%)." --msgstr "%s\n" --"%s ئىشلىتىلىۋاتىدۇ(%i%%)" -- --# FIXME: Does it mean "under refreshing"? --#: ../src/xfpm-battery.c:390 --#, c-format --msgid "" --"%s\n" --"%s waiting to discharge (%i%%)." --msgstr "%s\n" --"%s توكسىزلىنىۋاتىدۇ(%i%%)" -- --# FIXME: Does it mean "under refreshing"? --#: ../src/xfpm-battery.c:394 --#, c-format --msgid "" --"%s\n" --"%s waiting to charge (%i%%)." --msgstr "%s\n" --"%s توكلىنىۋاتىدۇ(%i%%)。" -- --#: ../src/xfpm-battery.c:398 --#, c-format --msgid "" --"%s\n" --"Your %s is empty" --msgstr "%s\n" --"%s قۇرۇق" -- --#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:101 --#, c-format --msgid "" --"\n" --"Xfce Power Manager %s\n" --"\n" --"Part of the Xfce Goodies Project\n" --"http://goodies.xfce.org\n" --"\n" --"Licensed under the GNU GPL.\n" --"\n" --msgstr "\n" --"Xfce مەنبە باشقۇرغۇ %s\n" --"\n" --"Part of the Xfce Goodies Project\n" --"http://goodies.xfce.org\n" --"\n" --"Licensed under the GNU GPL.\n" --"\n" -- --#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:384 --msgid "True" --msgstr "راست" -- --#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:384 --msgid "False" --msgstr "يالغان" -- --#: ../src/xfpm-main.c:113 --#, c-format --msgid "With HAL support\n" --msgstr "HAL نى ئىشلەتكىلى بولىدۇ\n" -- --#: ../src/xfpm-main.c:115 --#, c-format --msgid "Without HAL support\n" --msgstr "HAL نى ئىشلەتكىلى بولمايدۇ\n" -- --#: ../src/xfpm-main.c:118 --#, c-format --msgid "With policykit support\n" --msgstr "PolicyKit ئىشلەتكىلى بولىدۇ\n" -- --#: ../src/xfpm-main.c:120 --#, c-format --msgid "Without policykit support\n" --msgstr "PolicyKit نى ئىشلەتكىلى بولمايدۇ\n" -- --#: ../src/xfpm-main.c:123 --#, c-format --msgid "With network manager support\n" --msgstr "تور باشقۇرغۇنى ئىشلەتكىلى بولىدۇ\n" -- --#: ../src/xfpm-main.c:125 --#, c-format --msgid "Without network manager support\n" --msgstr "تور باشقۇرغۇنى ئىشلەتكىلى بولمايدۇ\n" -- --#: ../src/xfpm-main.c:128 --#, c-format --msgid "With DPMS support\n" --msgstr "DPMS ئىشلەتكىلى بولىدۇ\n" -- --#: ../src/xfpm-main.c:130 --#, c-format --msgid "Without DPMS support\n" --msgstr "DPMS ئىشلەتكىلى بولمايدۇ\n" -- --#: ../src/xfpm-main.c:146 ../src/xfpm-main.c:170 --msgid "Has LID" --msgstr "LID بار" -- --#: ../src/xfpm-main.c:148 --msgid "Can suspend" --msgstr "" -- --#: ../src/xfpm-main.c:150 --msgid "Can hibernate" --msgstr "" -- --#: ../src/xfpm-main.c:152 --msgid "Can spin down hard disks" --msgstr "" -- --#: ../src/xfpm-main.c:154 --msgid "Authorized to suspend" --msgstr "" -- --#: ../src/xfpm-main.c:156 --msgid "Authorized to hibernate" --msgstr "" -- --#: ../src/xfpm-main.c:158 --msgid "Authorized to shutdown" --msgstr "" -- --#: ../src/xfpm-main.c:160 --msgid "Authorized to spin down hard disks" --msgstr "" -- --#: ../src/xfpm-main.c:162 --msgid "Has brightness panel" --msgstr "" -- --#: ../src/xfpm-main.c:164 --msgid "Has power button" --msgstr "" -- --#: ../src/xfpm-main.c:166 --msgid "Has hibernate button" --msgstr "" -- --#: ../src/xfpm-main.c:168 --msgid "Has sleep button" --msgstr "" -- --#: ../src/xfpm-main.c:269 --msgid "Do not daemonize" --msgstr "" -- --#: ../src/xfpm-main.c:270 --msgid "Enable debugging" --msgstr "" -- --#: ../src/xfpm-main.c:271 --msgid "Dump all information" --msgstr "ھەممە ئۇچۇرنى كۆرسەت" -- --#: ../src/xfpm-main.c:272 --msgid "Restart the running instance of Xfce power manager" --msgstr "" -- --#: ../src/xfpm-main.c:273 --msgid "Show the configuration dialog" --msgstr "سەپلىمە كۆزنىكىنى كۆرسەت" -- --#: ../src/xfpm-main.c:274 --msgid "Quit any running xfce power manager" --msgstr "ئىجرا بولۇۋاتقان xfce مەنبە باشقۇرغۇنى ئاخىرلاشتۇر" -- --#: ../src/xfpm-main.c:275 ../src/xfpm-power-info.c:978 --msgid "Version information" --msgstr "نەشر ئۇچۇرى" -- --#: ../src/xfpm-main.c:325 --msgid "Unable to get connection to the message bus session" --msgstr "ئۇچۇر bus session بىلەن باغلىنالمىدى" -- --#: ../src/xfpm-main.c:419 --msgid "Another power manager is already running" --msgstr "باشقا مەنبە باشقۇرغۇ ئىجرا بۆلۈۋېتىپتۇ" -- --#: ../src/xfpm-main.c:425 --#, c-format --msgid "Xfce power manager is already running" --msgstr "Xfce مەنبە باشقۇرغۇ ئىجرا بۆلۈۋېتىپتۇ" -- --#: ../src/xfpm-inhibit.c:331 --#, c-format --msgid "Invalid arguments" --msgstr "ئارگۇمەنت خاتا" -- --#: ../src/xfpm-inhibit.c:357 --#, c-format --msgid "Invalid cookie" --msgstr "Cookie خاتا" -- --#. TRANSLATORS: the command line was not provided --#: ../src/xfpm-power-info.c:126 --msgid "No data" --msgstr "سانلىق ئاساس يوق" -- --#. TRANSLATORS: kernel module, usually a device driver --#: ../src/xfpm-power-info.c:133 ../src/xfpm-power-info.c:138 --msgid "Kernel module" --msgstr "" -- --#. TRANSLATORS: kernel housekeeping --#: ../src/xfpm-power-info.c:143 --msgid "Kernel core" --msgstr "" -- --#. TRANSLATORS: interrupt between processors --#: ../src/xfpm-power-info.c:148 --msgid "Interprocessor interrupt" --msgstr "" -- --#. TRANSLATORS: unknown interrupt --#: ../src/xfpm-power-info.c:153 --msgid "Interrupt" --msgstr "" -- --#. TRANSLATORS: the keyboard and mouse device event --#: ../src/xfpm-power-info.c:197 --msgid "PS/2 keyboard/mouse/touchpad" --msgstr "" -- --#. TRANSLATORS: ACPI, the Intel power standard on laptops and desktops --#: ../src/xfpm-power-info.c:200 --msgid "ACPI" --msgstr "ACPI" -- --#. TRANSLATORS: serial ATA is a new style of hard disk interface --#: ../src/xfpm-power-info.c:203 --msgid "Serial ATA" --msgstr "ئارقىمۇ-ئارقا ATA" -- --#. TRANSLATORS: this is the old-style ATA interface --#: ../src/xfpm-power-info.c:206 --msgid "ATA host controller" --msgstr "ATA host كونترولىغۇ" -- --#. TRANSLATORS: 802.11 wireless adaptor --#: ../src/xfpm-power-info.c:209 --msgid "Intel wireless adaptor" --msgstr "" -- --#. TRANSLATORS: a timer is something that fires periodically --#: ../src/xfpm-power-info.c:214 ../src/xfpm-power-info.c:217 --#: ../src/xfpm-power-info.c:220 ../src/xfpm-power-info.c:223 --#: ../src/xfpm-power-info.c:226 --#, c-format --msgid "Timer %s" --msgstr "" -- --#. TRANSLATORS: this is a task that's woken up from sleeping --#: ../src/xfpm-power-info.c:229 --#, c-format --msgid "Sleep %s" --msgstr "" -- --#. TRANSLATORS: this is a new realtime task --#: ../src/xfpm-power-info.c:232 --#, c-format --msgid "New task %s" --msgstr "يېڭى ۋەزىپە %s" -- --#. TRANSLATORS: this is a task thats woken to check state --#: ../src/xfpm-power-info.c:235 --#, c-format --msgid "Wait %s" --msgstr "ساقلا %s" -- --#. TRANSLATORS: a work queue is a list of work that has to be done --#: ../src/xfpm-power-info.c:238 ../src/xfpm-power-info.c:241 --#, c-format --msgid "Work queue %s" --msgstr "خىزمەتلەر %s" -- --#. TRANSLATORS: this is when the networking subsystem clears out old entries --#: ../src/xfpm-power-info.c:244 --#, c-format --msgid "Network route flush %s" --msgstr "" -- --#. TRANSLATORS: activity on the USB bus --#: ../src/xfpm-power-info.c:247 --#, c-format --msgid "USB activity %s" --msgstr "" -- --#. TRANSLATORS: we've timed out of an aligned timer --#: ../src/xfpm-power-info.c:250 --#, c-format --msgid "Wakeup %s" --msgstr "ئويغان %s" -- --#. TRANSLATORS: interupts on the system required for basic operation --#: ../src/xfpm-power-info.c:253 --msgid "Local interrupts" --msgstr "" -- --#. TRANSLATORS: interrupts when a task gets moved from one core to another --#: ../src/xfpm-power-info.c:256 --msgid "Rescheduling interrupts" --msgstr "" -- --#: ../src/xfpm-power-info.c:339 --msgid "Attribute" --msgstr "خاسلىق" -- --#: ../src/xfpm-power-info.c:346 --msgid "Value" --msgstr "قىممەت" -- --#: ../src/xfpm-power-info.c:356 --msgid "Device" --msgstr "ئۈسكۈنە" -- --#: ../src/xfpm-power-info.c:371 ../src/xfpm-power-info.c:783 --msgid "Type" --msgstr "تىپى" -- --#: ../src/xfpm-power-info.c:383 --msgid "PowerSupply" --msgstr "مەنبە" -- --#: ../src/xfpm-power-info.c:401 --msgid "Model" --msgstr "ئەندىزە" -- --#: ../src/xfpm-power-info.c:415 --msgid "Technology" --msgstr "تېخنىكا" -- --#. TRANSLATORS: Unit here is What hour --#: ../src/xfpm-power-info.c:422 ../src/xfpm-power-info.c:436 --#: ../src/xfpm-power-info.c:450 --msgid "Wh" --msgstr "Wh" -- --#: ../src/xfpm-power-info.c:428 --msgid "Energy full design" --msgstr "" -- --#: ../src/xfpm-power-info.c:442 --msgid "Energy full" --msgstr "" -- --#: ../src/xfpm-power-info.c:456 --msgid "Energy empty" --msgstr "" -- --#. TRANSLATORS: Unit here is volt --#: ../src/xfpm-power-info.c:464 --msgid "V" --msgstr "V" -- --#: ../src/xfpm-power-info.c:469 --msgid "Voltage" --msgstr "توك بېسىمى" -- --#: ../src/xfpm-power-info.c:486 --msgid "Vendor" --msgstr "تەمىنلىگۈچى" -- --#: ../src/xfpm-power-info.c:503 --msgid "Serial" --msgstr "" -- --#: ../src/xfpm-power-info.c:775 --msgid "Processor" --msgstr "بىر تەرەپ قىلغۇچ" -- --#. TANSLATORS: PID, is the process id, e.g what ps x gives --#: ../src/xfpm-power-info.c:792 --msgid "PID" --msgstr "PID" -- --#: ../src/xfpm-power-info.c:798 --msgid "Wakeups" --msgstr "ئويغان" -- --#: ../src/xfpm-power-info.c:804 --msgid "Command" --msgstr "بۇيرۇق" -- --#: ../src/xfpm-power-info.c:810 --msgid "Details" --msgstr "تەپسىلاتلار" -- --#: ../src/xfce4-power-manager.desktop.in.h:1 --msgid "Power management for the Xfce desktop" --msgstr "Xfce ئۈستەليۈزىنىڭ مەنبە باشقۇرغۇ پروگراممىسى " -- --#: ../panel-plugins/brightness/brightness-button.c:180 --#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2 --msgid "Control your LCD brightness" --msgstr "LCD يورۇقلۇقىنى كونترول قىل" -- --#: ../panel-plugins/brightness/brightness-button.c:182 --msgid "No device found" --msgstr "ئۈسكىنە تېپىلمىدى" -- --#: ../panel-plugins/brightness/brightness-button.c:647 --#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 --msgid "Brightness plugin" --msgstr "يورۇقلۇق قىستۇرمىسى" -\ No newline at end of file -+# Uyghur translation for xfce4-power-manager. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# This file is distributed under the same license as the PACKAGE package. -+# Gheyret Kenji , YEAR. -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: xfce4-power-manager\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2012-10-23 22:24+0000\n" -+"PO-Revision-Date: 2011-11-09 16:10+0900\n" -+"Last-Translator: Gheyret Kenji \n" -+"Language-Team: Uyghur Computer Science Association \n" -+"Language: \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=1; plural=0;\n" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:1 -+msgid "Actions" -+msgstr "مەشغۇلاتلار" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:2 -+msgid "Advanced Options" -+msgstr "ئالىي تاللانمىلار" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:3 -+msgid "Brightness" -+msgstr "يورۇقلۇقى" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:4 -+msgid "General Options" -+msgstr "ئادەتتىكى تاللانمىلار" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:5 -+msgid "Monitor" -+msgstr "كۆزەتكۈ" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:6 -+msgid "Actions" -+msgstr "مەشغۇلاتلار" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:7 -+msgid "Consider the computer on low power at:" -+msgstr "كومپيۇتېرنىڭ توك بېسىمى تۆۋەن دەپ ھۆكۈم قىلىنىدىغان توكنىڭ بېسىمى:" -+ -+#. Hibernate menu option -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 -+#: ../src/xfpm-power.c:779 -+msgid "Hibernate" -+msgstr "ئۈچەككە" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:9 -+msgid "Level:" -+msgstr "دەرىجە:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:10 -+msgid "Lock screen when going for suspend/hibernate" -+msgstr "توڭلات/ئۈچەككە يۆتكەلگەندە ئېكران قۇلۇپلانسۇن" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 -+msgid "Monitor" -+msgstr "كۆزەتكۈچ" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:12 -+msgid "Monitor power management control" -+msgstr "كۆزەتكۈچنىڭ توك مەنبەسىنى كونترول قىلىش" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 -+#: ../settings/xfpm-settings.c:1312 -+msgid "Nothing" -+msgstr "ھېچنېمە" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:14 -+msgid "Power manager settings" -+msgstr "توك باشقۇرغۇ تەڭشىكى" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:15 -+msgid "Prefer power savings over performance" -+msgstr "ئۇنۇمدىنمۇ توك تېجەشنى بەكرەك ئويلاشسۇن" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:16 -+msgid "Put display to sleep when computer is inactive for:" -+msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكراننى ئۇخلىتىشقۇچە بولغان ۋاقىت:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:17 -+msgid "Put the computer to sleep when inactive for:" -+msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئۇخلىتىشقۇچە بولغان ۋاقىت:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:18 -+msgid "Reduce screen brightness when computer is inactive for:" -+msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكران يورۇقلۇقىنى تۆۋەنلەت:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:19 -+msgid "Set computer inactivity sleep mode:" -+msgstr "كومپيۇتېرىڭ ھەرىكەتسىز ۋاقتىدىكى ئۇخلاش ھالىتى:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:20 -+msgid "Set monitor sleep mode:" -+msgstr "كۆزەتكۈچنىڭ ئۇخلاش ھالىتى:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:21 -+msgid "Show notifications to notify about the battery state" -+msgstr "توكدان ھالەت ئۇقتۇرۇشىنى كۆرسەت" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:22 -+msgid "Spin down hard disks" -+msgstr "قاتتىق دىسكىنى Spin down قىل" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:23 -+msgid "Standby" -+msgstr "كۈت" -+ -+#. Suspend menu option -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 -+#: ../src/xfpm-power.c:792 -+msgid "Suspend" -+msgstr "توڭلات" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:25 -+msgid "Switch off display when computer is inactive for:" -+msgstr "كومپيۇتېردا مەشغۇلات قىلمىغاندا ئېكراننىڭ توكىنى ئۈزۈشكىچە بولغان ۋاقىت::" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:26 -+msgid "System tray icon: " -+msgstr "سىستېما قوندىقىدىكى سىنبەلگىسى: " -+ -+#: ../data/interfaces/xfpm-settings.ui.h:27 -+msgid "When battery power is critical:" -+msgstr "توكداننىڭ توكى خەتەرلىك ھالەتكە كەلگەندە(تۆۋەنلەپ):" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:28 -+msgid "When hibernate button is pressed:" -+msgstr "ئۈچەك توپچىسى بېسىلغاندا:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:29 -+msgid "When laptop lid is closed:" -+msgstr "يان كومپيۇتېر يېپىلغاندا:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:30 -+msgid "When power button is pressed:" -+msgstr "توك مەنبە توپچىسى بېسىلغاندا:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:31 -+msgid "When sleep button is pressed:" -+msgstr "ئۇخلا توپچىسى بېسىلغاندا:" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:32 -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 -+msgid "Xfce Power Manager" -+msgstr "Xfce توك مەنبە باشقۇرغۇ" -+ -+#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:609 -+msgid "Never" -+msgstr "زادىلا" -+ -+#: ../settings/xfpm-settings.c:570 -+msgid "One minute" -+msgstr "1 مىنۇت" -+ -+#: ../settings/xfpm-settings.c:572 ../settings/xfpm-settings.c:584 -+msgid "Minutes" -+msgstr "مىنۇت" -+ -+#: ../settings/xfpm-settings.c:586 ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:595 -+msgid "One hour" -+msgstr "بىر سائەت" -+ -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:598 -+msgid "one minute" -+msgstr "بىر مىنۇت" -+ -+#: ../settings/xfpm-settings.c:595 ../settings/xfpm-settings.c:599 -+msgid "minutes" -+msgstr "مىنۇت" -+ -+#: ../settings/xfpm-settings.c:597 ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:599 -+msgid "hours" -+msgstr "سائەت" -+ -+#: ../settings/xfpm-settings.c:611 -+msgid "Seconds" -+msgstr "سېكۇنت" -+ -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:1470 -+msgid "Hibernate and suspend operations not supported" -+msgstr "ئۈچەك ۋە توڭلات مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ." -+ -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:1475 -+msgid "Hibernate and suspend operations not permitted" -+msgstr "ئۈچەك ۋە توڭلات مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -+ -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 -+#: ../src/xfpm-power.c:805 -+msgid "Shutdown" -+msgstr "تاقا" -+ -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 -+msgid "Ask" -+msgstr "كۆرۈشۈپ بېقىڭ" -+ -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 -+msgid "Lock screen" -+msgstr "ئېكراننى قۇلۇپلا" -+ -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 -+msgid "Spinning down hard disks permission denied" -+msgstr "قاتتىق دىسكىنى Spinning down ئىمتىيازى رەت قىلىندى" -+ -+#: ../settings/xfpm-settings.c:1150 -+msgid "Always show icon" -+msgstr "ھەمىشە كۆرسەت" -+ -+#: ../settings/xfpm-settings.c:1153 -+msgid "When battery is present" -+msgstr "توكدان بار چاغدا كۆرسەت" -+ -+#: ../settings/xfpm-settings.c:1156 -+msgid "When battery is charging or discharging" -+msgstr "توكداننى توكلاۋاتقاندا ياكى توكدان ئىشلىتىلىۋاتقاندا كۆرسەت" -+ -+#: ../settings/xfpm-settings.c:1159 -+msgid "Never show icon" -+msgstr "كۆرسەتمە" -+ -+#: ../settings/xfpm-settings.c:1185 -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." -+msgstr "توك مەنبە باشقۇرۇش سىگنالى (DPMS) (Disable Display Power Management Signaling ) ئىناۋەتسىز قىلىنسا، كۆرسەتكۈچنىڭ توكى ئۈزۈلمەيدۇ ۋە ئۇخلاش ھالىتىگە كىرمەيدۇ." -+ -+#: ../settings/xfpm-settings.c:1379 -+msgid "Suspend operation not supported" -+msgstr "توڭلات مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ" -+ -+#: ../settings/xfpm-settings.c:1385 -+msgid "Suspend operation not permitted" -+msgstr "توڭلات مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -+ -+#: ../settings/xfpm-settings.c:1391 -+msgid "Hibernate operation not supported" -+msgstr "ئۈچەك مەشغۇلاتىنى ئىشلەتكىلى بولمايدۇ" -+ -+#: ../settings/xfpm-settings.c:1396 -+msgid "Hibernate operation not permitted" -+msgstr "ئۈچەك مەشغۇلاتىنى ئىشلىتىشكە رۇخسەت قىلىنمىغان" -+ -+#: ../settings/xfpm-settings.c:1443 -+msgid "When all the power sources of the computer reach this charge level" -+msgstr "كومپيۇتېرىڭ بارلىق توك مەنبەسى بۇ دەرىجىگە يەتكەندە" -+ -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 -+msgid "General" -+msgstr "ئادەتتىكى" -+ -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 -+msgid "On AC" -+msgstr "AC توك مەنبەسى" -+ -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 -+msgid "On Battery" -+msgstr "توكدان" -+ -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 -+msgid "Extended" -+msgstr "كېڭەيتىلگەن" -+ -+#: ../settings/xfpm-settings.c:1662 -+msgid "Check your power manager installation" -+msgstr "مەنبە باشقۇرغۇ ئورنىتىلغانمۇ تەكشۈرۈڭ" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "Settings manager socket" -+msgstr "باشقۇرغۇچى سوكېتنىڭ تەڭشەكلىرى" -+ -+#: ../settings/xfpm-settings-main.c:78 -+msgid "SOCKET ID" -+msgstr "SOCKET ID" -+ -+#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 -+#: ../src/xfpm-power-info.c:946 -+#, c-format -+msgid "Type '%s --help' for usage." -+msgstr "'%s --help' كىرگۈزسە ئىشلىتىش ئۇسۇلىنى كۆرگىلى بولىدۇ" -+ -+#: ../settings/xfpm-settings-main.c:123 -+msgid "Failed to load power manager configuration, using defaults" -+msgstr "مەنبە باشقۇرغۇ سەپلىمىسىنى ئوقۇش مەغلۇپ بولدى،كۆڭۈلدىكى قىممىتى ئىشلىتىلىدۇ" -+ -+#: ../settings/xfpm-settings-main.c:148 -+msgid "Unable to connect to Xfce Power Manager" -+msgstr "Xfce مەنبە باشقۇرغۇغا باغلانغىلى بولمىدى" -+ -+#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:329 -+#, c-format -+msgid "Xfce power manager is not running" -+msgstr "Xfce مەنبە باشقۇرغۇ ئىجرا قىلىنمىغان" -+ -+#: ../settings/xfpm-settings-main.c:195 -+msgid "Run" -+msgstr "ئىجرا قىل" -+ -+#: ../settings/xfpm-settings-main.c:196 -+msgid "Xfce4 Power Manager is not running, do you want to launch it now?" -+msgstr "Xfce4 ئىجرا قىلىنمىغان.ئىجرا قىلامسىز؟" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 -+msgid "Power Manager" -+msgstr "مەنبە باشقۇرغۇ" -+ -+#: ../settings/xfce4-power-manager-settings.desktop.in.h:2 -+msgid "Settings for the Xfce Power Manager" -+msgstr "مەنبە باشقۇرغۇ تەڭشەكلىرى" -+ -+#: ../common/xfpm-common.c:155 -+msgid "translator-credits" -+msgstr "غەيرەت ت.كەنجى " -+ -+#: ../src/xfpm-power.c:328 -+msgid "_Hibernate" -+msgstr "ئۈچەككە كىر(_H)" -+ -+#: ../src/xfpm-power.c:329 -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." -+msgstr "بىر پروگرامما ئاپتوماتىك ئۇخلاشنى ئىناۋەتسىز قىلىپ قويۇپتۇ. ھازىر بۇ مەشغۇلات ئېلىپ بېرىلسا پروگراممىنىڭ ئىشلىشىگە تەسىر يېتىشى مۇمكىن." -+ -+#: ../src/xfpm-power.c:331 -+msgid "Are you sure you want to hibernate the system?" -+msgstr "راستلا سىستېمىنى ئۈچەككە كىرگۈزەمسىز؟" -+ -+#: ../src/xfpm-power.c:426 -+msgid "Quit" -+msgstr "ئاخىرلاشتۇر" -+ -+#: ../src/xfpm-power.c:427 -+msgid "All running instances of the power manager will exit" -+msgstr "مەنبە باشقۇرغۇنىڭ بارلىق ئۈلگىلىرى ئاخىرلىشىدۇ" -+ -+#: ../src/xfpm-power.c:429 -+msgid "Quit the power manager?" -+msgstr "مەنبە باشقۇرغۇچنى ئاخىرلاشتۇرسۇنمۇ؟" -+ -+#. Power information -+#: ../src/xfpm-power.c:534 ../src/xfpm-power-info.c:818 -+msgid "Power Information" -+msgstr "مەنبە ئۇچۇرلىرى" -+ -+#. * -+#. * Power Mode -+#. * -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#: ../src/xfpm-power.c:550 -+msgid "Mode" -+msgstr "ھالىتى" -+ -+#. Normal -+#: ../src/xfpm-power.c:561 -+msgid "Normal" -+msgstr "نورمال" -+ -+#. Normal -+#: ../src/xfpm-power.c:571 -+msgid "Presentation" -+msgstr "سۇنۇلما" -+ -+#: ../src/xfpm-power.c:693 -+msgid "Hibernate the system" -+msgstr "سىستېمىنى ئۈچەككە كىرگۈزۈش" -+ -+#: ../src/xfpm-power.c:704 -+msgid "Suspend the system" -+msgstr "سىستېمىنى توڭلىتىش" -+ -+#: ../src/xfpm-power.c:714 -+msgid "Shutdown the system" -+msgstr "سىستېمىنى تاقاش" -+ -+#: ../src/xfpm-power.c:725 ../src/xfpm-power.c:763 -+msgid "System is running on low power. Save your work to avoid losing data" -+msgstr "توك مەنبەسى تۆۋەنلەپ كەتتى. سانلىق-مەلۇماتلارنىڭ يوقىلىپ كەتمەسلىكى ئۈچۈن دەرھال ساقلاڭ" -+ -+#: ../src/xfpm-power.c:936 -+msgid "System is running on low power" -+msgstr "توك مەنبەسى تۆۋەنلەپ كەتتى" -+ -+#: ../src/xfpm-power.c:955 -+#, c-format -+msgid "" -+"Your %s charge level is low\n" -+"Estimated time left %s" -+msgstr "%s نىڭ توكلاش دەرىجىسى\n" -+"قالغان ۋاقىت %s" -+ -+#: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 -+msgid "Adaptor is offline" -+msgstr "Adaptor غا توك كەلمىدى" -+ -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 -+#, c-format -+msgid "Adaptor is online" -+msgstr "Adaptor غا توك كەلدى" -+ -+#: ../src/xfpm-power.c:1617 ../src/xfpm-power.c:1638 ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1676 -+#, c-format -+msgid "Permission denied" -+msgstr "ھوقۇقىڭىز يەتمىدى" -+ -+#: ../src/xfpm-power.c:1661 ../src/xfpm-power.c:1684 -+#, c-format -+msgid "Suspend not supported" -+msgstr "توڭلاتنى ئىشلەتكىلى بولمايدۇ" -+ -+#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 -+msgid "Battery" -+msgstr "توكدان" -+ -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 -+msgid "UPS" -+msgstr "UPS" -+ -+#: ../src/xfpm-power-common.c:126 -+msgid "Line power" -+msgstr "AC مەنبە" -+ -+#: ../src/xfpm-power-common.c:128 -+msgid "Mouse" -+msgstr "چاشقىنەك" -+ -+#: ../src/xfpm-power-common.c:130 -+msgid "Keyboard" -+msgstr "ھەرپتاختا" -+ -+#: ../src/xfpm-power-common.c:134 -+msgid "PDA" -+msgstr "PDA" -+ -+#: ../src/xfpm-power-common.c:136 -+msgid "Phone" -+msgstr "تېلېفون" -+ -+#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 -+msgid "Unknown" -+msgstr "نامەلۇم" -+ -+#: ../src/xfpm-power-common.c:155 -+msgid "Lithium ion" -+msgstr "لىتىي ئىئون" -+ -+#: ../src/xfpm-power-common.c:157 -+msgid "Lithium polymer" -+msgstr "لىتىي پولىمىر" -+ -+#: ../src/xfpm-power-common.c:159 -+msgid "Lithium iron phosphate" -+msgstr "لىتىي تۆمۈر فوسفات" -+ -+#: ../src/xfpm-power-common.c:161 -+msgid "Lead acid" -+msgstr "قوغۇشۇن كىسلاتاسى" -+ -+#: ../src/xfpm-power-common.c:163 -+msgid "Nickel cadmium" -+msgstr "نىكىل كادمىي" -+ -+#: ../src/xfpm-power-common.c:165 -+msgid "Nickel metal hybride" -+msgstr "نىكىل مېتال ھىدرىد" -+ -+#: ../src/xfpm-battery.c:171 -+msgid "Unknown time" -+msgstr "نامەلۇم" -+ -+#: ../src/xfpm-battery.c:177 -+#, c-format -+msgid "%i minute" -+msgid_plural "%i minutes" -+msgstr[0] "%i مىنۇت" -+ -+#: ../src/xfpm-battery.c:188 -+#, c-format -+msgid "%i hour" -+msgid_plural "%i hours" -+msgstr[0] "%i سائەت" -+ -+#. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes" -+#. * Swap order with "%2$s %2$i %1$s %1$i if needed -+#: ../src/xfpm-battery.c:194 -+#, c-format -+msgid "%i %s %i %s" -+msgstr "%i %s %i %s" -+ -+#: ../src/xfpm-battery.c:195 -+msgid "hour" -+msgid_plural "hours" -+msgstr[0] "سائەت" -+ -+#: ../src/xfpm-battery.c:196 -+msgid "minute" -+msgid_plural "minutes" -+msgstr[0] "مىنۇت" -+ -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 -+#, c-format -+msgid "Your %s is fully charged" -+msgstr "ھازىر %s تولدى" -+ -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 -+#, c-format -+msgid "Your %s is charging" -+msgstr "ھازىر %s توكلىنىۋاتىدۇ" -+ -+#: ../src/xfpm-battery.c:224 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"%s until is fully charged." -+msgstr "%s (%i%%)\n" -+"تولۇق توكلانغۇچە %s." -+ -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 -+#, c-format -+msgid "Your %s is discharging" -+msgstr "سىزنىڭ %s ڭىز توكسىزلىنىۋاتىدۇ" -+ -+#: ../src/xfpm-battery.c:234 -+#, c-format -+msgid "System is running on %s power" -+msgstr "سىستېما ھازىر %s دا ئىشلەۋاتىدۇ" -+ -+#: ../src/xfpm-battery.c:244 -+#, c-format -+msgid "" -+"%s (%i%%)\n" -+"Estimated time left is %s." -+msgstr "%s (%i%%)\n" -+"تەخمىنەن يەنە %s ۋاقىت ئىشلەيدۇ." -+ -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 -+#, c-format -+msgid "Your %s is empty" -+msgstr "%s قۇرۇق" -+ -+#: ../src/xfpm-battery.c:413 -+#, c-format -+msgid "System is running on battery power" -+msgstr "سىستېما توكداننى ئىشلىتىۋاتىدۇ" -+ -+#: ../src/xfpm-battery.c:420 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%).\n" -+"Provides %s runtime" -+msgstr "%s\n" -+"%s تولۇق توكلانغان (%i%%)\n" -+"%s ئىشلەتكىلى بولىدۇ" -+ -+#: ../src/xfpm-battery.c:429 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is fully charged (%i%%)." -+msgstr "%s\n" -+"%s تولۇق توكلانغان (%i%%)" -+ -+#: ../src/xfpm-battery.c:440 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)\n" -+"%s until is fully charged." -+msgstr "%s\n" -+"%s توكلىنىۋاتىدۇ (%i%%)\n" -+"تولۇق توكلانغۇچە %s" -+ -+#: ../src/xfpm-battery.c:449 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is charging (%i%%)." -+msgstr "%s\n" -+"%s توكلىنىۋاتىدۇ(%i%%)" -+ -+#: ../src/xfpm-battery.c:460 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)\n" -+"Estimated time left is %s." -+msgstr "%s\n" -+"ھازىر %s ئىشلىتىلىۋاتىدۇ (%i%%)\n" -+"تەخمىنەن يەنە %s ئىشلەيدۇ." -+ -+#: ../src/xfpm-battery.c:469 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is discharging (%i%%)." -+msgstr "%s\n" -+"%s ئىشلىتىلىۋاتىدۇ(%i%%)" -+ -+#: ../src/xfpm-battery.c:478 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to discharge (%i%%)." -+msgstr "%s\n" -+"%s توكسىزلىنىۋاتىدۇ(%i%%)" -+ -+#: ../src/xfpm-battery.c:482 -+#, c-format -+msgid "" -+"%s\n" -+"%s waiting to charge (%i%%)." -+msgstr "%s\n" -+"%s توكلىنىۋاتىدۇ(%i%%)。" -+ -+#: ../src/xfpm-battery.c:486 -+#, c-format -+msgid "" -+"%s\n" -+"Your %s is empty" -+msgstr "%s\n" -+"%s قۇرۇق" -+ -+#: ../src/xfpm-battery.c:829 -+msgid "battery" -+msgstr "توكدان" -+ -+#: ../src/xfpm-battery.c:835 -+msgid "monitor battery" -+msgstr "كۆرسەتكۈچ توكدانى" -+ -+#: ../src/xfpm-battery.c:838 -+msgid "mouse battery" -+msgstr "چاشقىنەك توكدانى" -+ -+#: ../src/xfpm-battery.c:841 -+msgid "keyboard battery" -+msgstr "ھەرپتاختا توكدانى" -+ -+#: ../src/xfpm-battery.c:844 -+msgid "PDA battery" -+msgstr "PDA توكدانى" -+ -+#: ../src/xfpm-battery.c:847 -+msgid "Phone battery" -+msgstr "تېلېفون توكدانى" -+ -+#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:93 -+#, c-format -+msgid "" -+"\n" -+"Xfce Power Manager %s\n" -+"\n" -+"Part of the Xfce Goodies Project\n" -+"http://goodies.xfce.org\n" -+"\n" -+"Licensed under the GNU GPL.\n" -+"\n" -+msgstr "\n" -+"Xfce مەنبە باشقۇرغۇ %s\n" -+"\n" -+"Part of the Xfce Goodies Project\n" -+"http://goodies.xfce.org\n" -+"\n" -+"Licensed under the GNU GPL.\n" -+"\n" -+ -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 -+msgid "True" -+msgstr "راست" -+ -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 -+msgid "False" -+msgstr "يالغان" -+ -+#: ../src/xfpm-main.c:113 -+#, c-format -+msgid "With policykit support\n" -+msgstr "PolicyKit ئىشلەتكىلى بولىدۇ\n" -+ -+#: ../src/xfpm-main.c:115 -+#, c-format -+msgid "Without policykit support\n" -+msgstr "PolicyKit نى ئىشلەتكىلى بولمايدۇ\n" -+ -+#: ../src/xfpm-main.c:118 -+#, c-format -+msgid "With network manager support\n" -+msgstr "تور باشقۇرغۇنى ئىشلەتكىلى بولىدۇ\n" -+ -+#: ../src/xfpm-main.c:120 -+#, c-format -+msgid "Without network manager support\n" -+msgstr "تور باشقۇرغۇنى ئىشلەتكىلى بولمايدۇ\n" -+ -+#: ../src/xfpm-main.c:123 -+#, c-format -+msgid "With DPMS support\n" -+msgstr "DPMS ئىشلەتكىلى بولىدۇ\n" -+ -+#: ../src/xfpm-main.c:125 -+#, c-format -+msgid "Without DPMS support\n" -+msgstr "DPMS ئىشلەتكىلى بولمايدۇ\n" -+ -+#: ../src/xfpm-main.c:141 -+msgid "Can suspend" -+msgstr "توڭلىتالايدۇ" -+ -+#: ../src/xfpm-main.c:143 -+msgid "Can hibernate" -+msgstr "ئۈچەككە كىرگۈزەلەيدۇ" -+ -+#: ../src/xfpm-main.c:145 -+msgid "Can spin down hard disks" -+msgstr "قاتتىق دىسكىنى spin down قىلالايدۇ" -+ -+#: ../src/xfpm-main.c:147 -+msgid "Authorized to suspend" -+msgstr "توڭلىتالايدۇ" -+ -+#: ../src/xfpm-main.c:149 -+msgid "Authorized to hibernate" -+msgstr "ئۈچەككە كىرگۈزەلەيدۇ" -+ -+#: ../src/xfpm-main.c:151 -+msgid "Authorized to shutdown" -+msgstr "تاقىيالايدۇ" -+ -+#: ../src/xfpm-main.c:153 -+msgid "Authorized to spin down hard disks" -+msgstr "قاتتىق دىسكىنى spin down قىلالايدۇ" -+ -+#: ../src/xfpm-main.c:155 -+msgid "Has battery" -+msgstr "توكدان بار" -+ -+#: ../src/xfpm-main.c:157 -+msgid "Has brightness panel" -+msgstr "يورۇقلۇق كۆزنىكى بار" -+ -+#: ../src/xfpm-main.c:159 -+msgid "Has power button" -+msgstr "مەنبە توپچىسى بار" -+ -+#: ../src/xfpm-main.c:161 -+msgid "Has hibernate button" -+msgstr "ئۈچەك توپچىسى بار" -+ -+#: ../src/xfpm-main.c:163 -+msgid "Has sleep button" -+msgstr "ئۇلاش توپچىسى بار" -+ -+#: ../src/xfpm-main.c:165 -+msgid "Has LID" -+msgstr "LID بار" -+ -+#: ../src/xfpm-main.c:264 -+msgid "Do not daemonize" -+msgstr "مۇئەككەل قىلما" -+ -+#: ../src/xfpm-main.c:265 -+msgid "Enable debugging" -+msgstr "سازلاشنى قوزغات" -+ -+#: ../src/xfpm-main.c:266 -+msgid "Dump all information" -+msgstr "ھەممە ئۇچۇرنى كۆرسەت" -+ -+#: ../src/xfpm-main.c:267 -+msgid "Restart the running instance of Xfce power manager" -+msgstr "ئىجرا بولۇۋاتقان Xfce نىڭ ئۈلگىسىنى قايتا باشلايدۇ" -+ -+#: ../src/xfpm-main.c:268 -+msgid "Show the configuration dialog" -+msgstr "سەپلىمە سۆزلەشكۈسىنى كۆرسىتىدۇ" -+ -+#: ../src/xfpm-main.c:269 -+msgid "Quit any running xfce power manager" -+msgstr "ئىجرا بولۇۋاتقان xfce مەنبە باشقۇرغۇنى ئاخىرلاشتۇر" -+ -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 -+msgid "Version information" -+msgstr "نەشر ئۇچۇرى" -+ -+#: ../src/xfpm-main.c:320 -+msgid "Unable to get connection to the message bus session" -+msgstr "ئۇچۇر باش ئەڭگىمەسى بىلەن باغلىنالمىدى" -+ -+#: ../src/xfpm-main.c:414 -+msgid "Another power manager is already running" -+msgstr "باشقا مەنبە باشقۇرغۇ ئىجرا بۆلۈۋېتىپتۇ" -+ -+#: ../src/xfpm-main.c:420 -+#, c-format -+msgid "Xfce power manager is already running" -+msgstr "Xfce مەنبە باشقۇرغۇ ئىجرا بۆلۈۋېتىپتۇ" -+ -+#: ../src/xfpm-inhibit.c:331 -+#, c-format -+msgid "Invalid arguments" -+msgstr "ئارگۇمېنت خاتا" -+ -+#: ../src/xfpm-inhibit.c:357 -+#, c-format -+msgid "Invalid cookie" -+msgstr "Cookie خاتا" -+ -+#. TRANSLATORS: the command line was not provided -+#: ../src/xfpm-power-info.c:118 -+msgid "No data" -+msgstr "سانلىق-مەلۇمات يوق" -+ -+#. TRANSLATORS: kernel module, usually a device driver -+#: ../src/xfpm-power-info.c:125 ../src/xfpm-power-info.c:130 -+msgid "Kernel module" -+msgstr "يادرو مودېلى" -+ -+#. TRANSLATORS: kernel housekeeping -+#: ../src/xfpm-power-info.c:135 -+msgid "Kernel core" -+msgstr "يادرو مەركىزى" -+ -+#. TRANSLATORS: interrupt between processors -+#: ../src/xfpm-power-info.c:140 -+msgid "Interprocessor interrupt" -+msgstr "بىر تەرەپ قىلغۇچ ئارىسىدىكى ئۈزۈلۈش" -+ -+#. TRANSLATORS: unknown interrupt -+#: ../src/xfpm-power-info.c:145 -+msgid "Interrupt" -+msgstr "ئۈزۈلۈش" -+ -+#. TRANSLATORS: the keyboard and mouse device event -+#: ../src/xfpm-power-info.c:189 -+msgid "PS/2 keyboard/mouse/touchpad" -+msgstr "PS/2 ھەرپتاختا/چاشقىنەك/سەزگۈر تاختا" -+ -+#. TRANSLATORS: ACPI, the Intel power standard on laptops and desktops -+#: ../src/xfpm-power-info.c:192 -+msgid "ACPI" -+msgstr "ACPI" -+ -+#. TRANSLATORS: serial ATA is a new style of hard disk interface -+#: ../src/xfpm-power-info.c:195 -+msgid "Serial ATA" -+msgstr "ئارقىمۇ-ئارقا ATA" -+ -+#. TRANSLATORS: this is the old-style ATA interface -+#: ../src/xfpm-power-info.c:198 -+msgid "ATA host controller" -+msgstr "ATA host كونترولىغۇ" -+ -+#. TRANSLATORS: 802.11 wireless adaptor -+#: ../src/xfpm-power-info.c:201 -+msgid "Intel wireless adaptor" -+msgstr "Intel سىمسىز تور كارتىسى" -+ -+#. TRANSLATORS: a timer is something that fires periodically -+#: ../src/xfpm-power-info.c:206 ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:218 -+#, c-format -+msgid "Timer %s" -+msgstr "ۋاقىت بەلگىلىگۈچ %s" -+ -+#. TRANSLATORS: this is a task that's woken up from sleeping -+#: ../src/xfpm-power-info.c:221 -+#, c-format -+msgid "Sleep %s" -+msgstr "ئۇيقۇ %s" -+ -+#. TRANSLATORS: this is a new realtime task -+#: ../src/xfpm-power-info.c:224 -+#, c-format -+msgid "New task %s" -+msgstr "يېڭى ۋەزىپە %s" -+ -+#. TRANSLATORS: this is a task thats woken to check state -+#: ../src/xfpm-power-info.c:227 -+#, c-format -+msgid "Wait %s" -+msgstr "ساقلا %s" -+ -+#. TRANSLATORS: a work queue is a list of work that has to be done -+#: ../src/xfpm-power-info.c:230 ../src/xfpm-power-info.c:233 -+#, c-format -+msgid "Work queue %s" -+msgstr "خىزمەتلەر %s" -+ -+#. TRANSLATORS: this is when the networking subsystem clears out old entries -+#: ../src/xfpm-power-info.c:236 -+#, c-format -+msgid "Network route flush %s" -+msgstr "%s نىڭ يول تاللىشىنى تازىلا" -+ -+#. TRANSLATORS: activity on the USB bus -+#: ../src/xfpm-power-info.c:239 -+#, c-format -+msgid "USB activity %s" -+msgstr "USB پائالىيىتى %s" -+ -+#. TRANSLATORS: we've timed out of an aligned timer -+#: ../src/xfpm-power-info.c:242 -+#, c-format -+msgid "Wakeup %s" -+msgstr "ئويغان %s" -+ -+#. TRANSLATORS: interupts on the system required for basic operation -+#: ../src/xfpm-power-info.c:245 -+msgid "Local interrupts" -+msgstr "يەرلىك ئۈزۈلۈش" -+ -+#. TRANSLATORS: interrupts when a task gets moved from one core to another -+#: ../src/xfpm-power-info.c:248 -+msgid "Rescheduling interrupts" -+msgstr "ئۈزۈلۈشنى قايتا پىلانلاش" -+ -+#: ../src/xfpm-power-info.c:331 -+msgid "Attribute" -+msgstr "خاسلىق" -+ -+#: ../src/xfpm-power-info.c:338 -+msgid "Value" -+msgstr "قىممەت" -+ -+#: ../src/xfpm-power-info.c:348 -+msgid "Device" -+msgstr "ئۈسكۈنە" -+ -+#: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739 -+msgid "Type" -+msgstr "تىپى" -+ -+#: ../src/xfpm-power-info.c:375 -+msgid "PowerSupply" -+msgstr "مەنبە" -+ -+#: ../src/xfpm-power-info.c:393 -+msgid "Model" -+msgstr "مودېلى" -+ -+#: ../src/xfpm-power-info.c:407 -+msgid "Technology" -+msgstr "تېخنىكا" -+ -+#. TRANSLATORS: Unit here is What hour -+#: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:442 -+msgid "Wh" -+msgstr "Wh" -+ -+#: ../src/xfpm-power-info.c:420 -+msgid "Energy full design" -+msgstr "ئېنېرگىيە تولۇق" -+ -+#: ../src/xfpm-power-info.c:434 -+msgid "Energy full" -+msgstr "ئېنېرگىيە تولۇق" -+ -+#: ../src/xfpm-power-info.c:448 -+msgid "Energy empty" -+msgstr "قۇۋۋەت بوش" -+ -+#. TRANSLATORS: Unit here is volt -+#: ../src/xfpm-power-info.c:456 -+msgid "V" -+msgstr "V" -+ -+#: ../src/xfpm-power-info.c:461 -+msgid "Voltage" -+msgstr "توك بېسىمى" -+ -+#: ../src/xfpm-power-info.c:478 -+msgid "Vendor" -+msgstr "تەمىنلىگۈچى" -+ -+#: ../src/xfpm-power-info.c:495 -+msgid "Serial" -+msgstr "ئارقىمۇئارقا" -+ -+#: ../src/xfpm-power-info.c:731 -+msgid "Processor" -+msgstr "بىر تەرەپ قىلغۇچ" -+ -+#. TANSLATORS: PID, is the process id, e.g what ps x gives -+#: ../src/xfpm-power-info.c:748 -+msgid "PID" -+msgstr "PID" -+ -+#: ../src/xfpm-power-info.c:754 -+msgid "Wakeups" -+msgstr "ئويغان" -+ -+#: ../src/xfpm-power-info.c:760 -+msgid "Command" -+msgstr "بۇيرۇق" -+ -+#: ../src/xfpm-power-info.c:766 -+msgid "Details" -+msgstr "تەپسىلاتلار" -+ -+#: ../src/xfce4-power-manager.desktop.in.h:2 -+msgid "Power management for the Xfce desktop" -+msgstr "Xfce ئۈستەلئۈستىنىڭ مەنبە باشقۇرغۇ پروگراممىسى" -+ -+#: ../panel-plugins/brightness/brightness-button.c:180 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:2 -+msgid "Control your LCD brightness" -+msgstr "LCD يورۇقلۇقىنى كونترول قىل" -+ -+#: ../panel-plugins/brightness/brightness-button.c:182 -+msgid "No device found" -+msgstr "ئۈسكۈنە تېپىلمىدى" -+ -+#: ../panel-plugins/brightness/brightness-button.c:649 -+#: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 -+msgid "Brightness plugin" -+msgstr "يورۇقلۇق قىستۇرمىسى" -diff --git a/po/zh_TW.po b/po/zh_TW.po -index b889170..5f0d520 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -2,19 +2,19 @@ - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - # This file is distributed under the same license as the PACKAGE package. - # FIRST AUTHOR , YEAR. --# -+# - msgid "" - msgstr "" - "Project-Id-Version: xfce4-power-manager master\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2012-04-26 14:30+0000\n" -+"POT-Creation-Date: 2013-01-05 01:12+0000\n" - "PO-Revision-Date: 2012-04-26 23:54+0800\n" - "Last-Translator: Cheng-Chia Tseng \n" - "Language-Team: chinese-l10n \n" --"Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"Language: \n" - "Plural-Forms: nplurals=2; plural=n>1;\n" - - #: ../data/interfaces/xfpm-settings.ui.h:1 -@@ -46,52 +46,44 @@ msgid "Consider the computer on low power at:" - msgstr "將電腦視為低電量於:" - - #. Hibernate menu option --#: ../data/interfaces/xfpm-settings.ui.h:8 --#: ../settings/xfpm-settings.c:820 --#: ../settings/xfpm-settings.c:888 --#: ../settings/xfpm-settings.c:1037 --#: ../settings/xfpm-settings.c:1214 --#: ../settings/xfpm-settings.c:1271 --#: ../settings/xfpm-settings.c:1323 --#: ../src/xfpm-power.c:484 -+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820 -+#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037 -+#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271 -+#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484 - #: ../src/xfpm-power.c:779 - msgid "Hibernate" - msgstr "休眠" - - #: ../data/interfaces/xfpm-settings.ui.h:9 - msgid "Level:" --msgstr "等級:" -+msgstr "水平:" - - #: ../data/interfaces/xfpm-settings.ui.h:10 - msgid "Lock screen when going for suspend/hibernate" - msgstr "當暫停或休眠時鎖上螢幕" - --#: ../data/interfaces/xfpm-settings.ui.h:11 --#: ../src/xfpm-power-common.c:132 -+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132 - msgid "Monitor" - msgstr "螢幕" - - #: ../data/interfaces/xfpm-settings.ui.h:12 - msgid "Monitor power management control" --msgstr "螢幕電源管理控制" -- --#: ../data/interfaces/xfpm-settings.ui.h:13 --#: ../settings/xfpm-settings.c:809 --#: ../settings/xfpm-settings.c:877 --#: ../settings/xfpm-settings.c:1026 --#: ../settings/xfpm-settings.c:1203 --#: ../settings/xfpm-settings.c:1260 -+msgstr "螢幕電力管理控制" -+ -+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809 -+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026 -+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260 - #: ../settings/xfpm-settings.c:1312 - msgid "Nothing" --msgstr "無" -+msgstr "無動作" - - #: ../data/interfaces/xfpm-settings.ui.h:14 - msgid "Power manager settings" --msgstr "電源管理設定值" -+msgstr "電源管理員設定" - - #: ../data/interfaces/xfpm-settings.ui.h:15 - msgid "Prefer power savings over performance" --msgstr "偏好保存電量更勝效能" -+msgstr "偏好保存電力更勝效能" - - #: ../data/interfaces/xfpm-settings.ui.h:16 - msgid "Put display to sleep when computer is inactive for:" -@@ -126,14 +118,10 @@ msgid "Standby" - msgstr "待機" - - #. Suspend menu option --#: ../data/interfaces/xfpm-settings.ui.h:24 --#: ../settings/xfpm-settings.c:814 --#: ../settings/xfpm-settings.c:882 --#: ../settings/xfpm-settings.c:1031 --#: ../settings/xfpm-settings.c:1208 --#: ../settings/xfpm-settings.c:1265 --#: ../settings/xfpm-settings.c:1317 --#: ../src/xfpm-power.c:499 -+#: ../data/interfaces/xfpm-settings.ui.h:24 ../settings/xfpm-settings.c:814 -+#: ../settings/xfpm-settings.c:882 ../settings/xfpm-settings.c:1031 -+#: ../settings/xfpm-settings.c:1208 ../settings/xfpm-settings.c:1265 -+#: ../settings/xfpm-settings.c:1317 ../src/xfpm-power.c:499 - #: ../src/xfpm-power.c:792 - msgid "Suspend" - msgstr "暫停" -@@ -148,64 +136,56 @@ msgstr "系統匣圖示:" - - #: ../data/interfaces/xfpm-settings.ui.h:27 - msgid "When battery power is critical:" --msgstr "當電量危急時:" -+msgstr "電池電量危急時:" - - #: ../data/interfaces/xfpm-settings.ui.h:28 - msgid "When hibernate button is pressed:" --msgstr "當按壓休眠按鈕時:" -+msgstr "按下休眠按鈕時:" - - #: ../data/interfaces/xfpm-settings.ui.h:29 - msgid "When laptop lid is closed:" --msgstr "當筆電上蓋關閉時:" -+msgstr "關閉筆電上蓋時:" - - #: ../data/interfaces/xfpm-settings.ui.h:30 - msgid "When power button is pressed:" --msgstr "當按壓電源按鈕時:" -+msgstr "按下電源按鈕時:" - - #: ../data/interfaces/xfpm-settings.ui.h:31 - msgid "When sleep button is pressed:" --msgstr "當按壓睡眠按鈕時:" -+msgstr "按下睡眠按鈕時:" - - #: ../data/interfaces/xfpm-settings.ui.h:32 --#: ../settings/xfpm-settings-main.c:121 --#: ../src/xfpm-main.c:413 -+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413 - msgid "Xfce Power Manager" --msgstr "Xfce 電池管理員" -+msgstr "Xfce 電源管理員" - --#: ../settings/xfpm-settings.c:567 --#: ../settings/xfpm-settings.c:582 -+#: ../settings/xfpm-settings.c:567 ../settings/xfpm-settings.c:582 - #: ../settings/xfpm-settings.c:609 - msgid "Never" --msgstr "用不" -+msgstr "永不" - - #: ../settings/xfpm-settings.c:570 - msgid "One minute" - msgstr "1 分鐘" - --#: ../settings/xfpm-settings.c:572 --#: ../settings/xfpm-settings.c:584 -+#: ../settings/xfpm-settings.c:572 ../settings/xfpm-settings.c:584 - msgid "Minutes" - msgstr "分鐘" - --#: ../settings/xfpm-settings.c:586 --#: ../settings/xfpm-settings.c:593 --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:595 -+#: ../settings/xfpm-settings.c:586 ../settings/xfpm-settings.c:593 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:595 - msgid "One hour" - msgstr "1 小時" - --#: ../settings/xfpm-settings.c:594 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:594 ../settings/xfpm-settings.c:598 - msgid "one minute" - msgstr "1 分鐘" - --#: ../settings/xfpm-settings.c:595 --#: ../settings/xfpm-settings.c:599 -+#: ../settings/xfpm-settings.c:595 ../settings/xfpm-settings.c:599 - msgid "minutes" - msgstr "分鐘" - --#: ../settings/xfpm-settings.c:597 --#: ../settings/xfpm-settings.c:598 -+#: ../settings/xfpm-settings.c:597 ../settings/xfpm-settings.c:598 - #: ../settings/xfpm-settings.c:599 - msgid "hours" - msgstr "小時" -@@ -214,104 +194,97 @@ msgstr "小時" - msgid "Seconds" - msgstr "秒" - --#: ../settings/xfpm-settings.c:792 --#: ../settings/xfpm-settings.c:990 -+#: ../settings/xfpm-settings.c:792 ../settings/xfpm-settings.c:990 - #: ../settings/xfpm-settings.c:1470 - msgid "Hibernate and suspend operations not supported" --msgstr "休眠與暫停操作不被支援" -+msgstr "不支援休眠與暫停操作" - --#: ../settings/xfpm-settings.c:797 --#: ../settings/xfpm-settings.c:995 -+#: ../settings/xfpm-settings.c:797 ../settings/xfpm-settings.c:995 - #: ../settings/xfpm-settings.c:1475 - msgid "Hibernate and suspend operations not permitted" --msgstr "休眠與暫停操作不受許可" -+msgstr "不允許休眠與暫停操作" - --#: ../settings/xfpm-settings.c:826 --#: ../settings/xfpm-settings.c:1220 -+#: ../settings/xfpm-settings.c:826 ../settings/xfpm-settings.c:1220 - #: ../src/xfpm-power.c:805 - msgid "Shutdown" - msgstr "關機" - --#: ../settings/xfpm-settings.c:830 --#: ../settings/xfpm-settings.c:1224 --#: ../settings/xfpm-settings.c:1275 --#: ../settings/xfpm-settings.c:1327 -+#: ../settings/xfpm-settings.c:830 ../settings/xfpm-settings.c:1224 -+#: ../settings/xfpm-settings.c:1275 ../settings/xfpm-settings.c:1327 - msgid "Ask" - msgstr "詢問" - --#: ../settings/xfpm-settings.c:892 --#: ../settings/xfpm-settings.c:1041 -+#: ../settings/xfpm-settings.c:892 ../settings/xfpm-settings.c:1041 - msgid "Lock screen" - msgstr "鎖上螢幕" - --#: ../settings/xfpm-settings.c:960 --#: ../settings/xfpm-settings.c:1110 -+#: ../settings/xfpm-settings.c:960 ../settings/xfpm-settings.c:1110 - msgid "Spinning down hard disks permission denied" --msgstr "關閉電源轉動的許可被拒絕" -+msgstr "不允許關閉硬碟轉動" - - #: ../settings/xfpm-settings.c:1150 - msgid "Always show icon" --msgstr "總是顯示圖示" -+msgstr "一定顯示圖示" - - #: ../settings/xfpm-settings.c:1153 - msgid "When battery is present" --msgstr "當電池存在時" -+msgstr "當有電池時" - - #: ../settings/xfpm-settings.c:1156 - msgid "When battery is charging or discharging" --msgstr "當電源充電或放電時" -+msgstr "當電池充電或放電時" - - #: ../settings/xfpm-settings.c:1159 - msgid "Never show icon" --msgstr "永不顯示圖示" -+msgstr "不要顯示圖示" - - #: ../settings/xfpm-settings.c:1185 --msgid "Disable Display Power Management Signaling (DPMS), e.g don't attempt to switch off the display or put it in sleep mode." --msgstr "停用顯示器電源管理發訊 (DPMS) 功能,例:不試圖關閉顯示器或將它切換至睡眠模式。" -+msgid "" -+"Disable Display Power Management Signaling (DPMS), e.g don't attempt to " -+"switch off the display or put it in sleep mode." -+msgstr "" -+"停用顯示器電源管理發訊 (DPMS) 功能,例:不試圖關閉顯示器或將它切換至睡眠模" -+"式。" - - #: ../settings/xfpm-settings.c:1379 - msgid "Suspend operation not supported" --msgstr "暫停操作不被支援" -+msgstr "不支援暫停操作" - - #: ../settings/xfpm-settings.c:1385 - msgid "Suspend operation not permitted" --msgstr "暫停操作不受許可" -+msgstr "不允許暫停操作" - - #: ../settings/xfpm-settings.c:1391 - msgid "Hibernate operation not supported" --msgstr "休眠操作不被支援" -+msgstr "不支援休眠操作" - - #: ../settings/xfpm-settings.c:1396 - msgid "Hibernate operation not permitted" --msgstr "休眠操作不受許可" -+msgstr "不允許休眠操作" - - #: ../settings/xfpm-settings.c:1443 - msgid "When all the power sources of the computer reach this charge level" - msgstr "當電腦的所有電源來源達到此充電等級時" - --#: ../settings/xfpm-settings.c:1546 --#: ../settings/xfpm-settings.c:1551 -+#: ../settings/xfpm-settings.c:1546 ../settings/xfpm-settings.c:1551 - msgid "General" - msgstr "一般" - --#: ../settings/xfpm-settings.c:1560 --#: ../settings/xfpm-settings.c:1565 -+#: ../settings/xfpm-settings.c:1560 ../settings/xfpm-settings.c:1565 - msgid "On AC" - msgstr "使用 AC" - --#: ../settings/xfpm-settings.c:1575 --#: ../settings/xfpm-settings.c:1580 -+#: ../settings/xfpm-settings.c:1575 ../settings/xfpm-settings.c:1580 - msgid "On Battery" - msgstr "使用電池" - --#: ../settings/xfpm-settings.c:1589 --#: ../settings/xfpm-settings.c:1594 -+#: ../settings/xfpm-settings.c:1589 ../settings/xfpm-settings.c:1594 - msgid "Extended" --msgstr "擴展" -+msgstr "擴展功能" - - #: ../settings/xfpm-settings.c:1662 - msgid "Check your power manager installation" --msgstr "檢查您的電源管理員安裝" -+msgstr "檢查您的電源管理員是否正確安裝" - - #: ../settings/xfpm-settings-main.c:78 - msgid "Settings manager socket" -@@ -321,8 +294,7 @@ msgstr "設定值管理員 socket" - msgid "SOCKET ID" - msgstr "SOCKET ID" - --#: ../settings/xfpm-settings-main.c:89 --#: ../src/xfpm-main.c:289 -+#: ../settings/xfpm-settings-main.c:89 ../src/xfpm-main.c:289 - #: ../src/xfpm-power-info.c:946 - #, c-format - msgid "Type '%s --help' for usage." -@@ -330,17 +302,16 @@ msgstr "輸入 '%s --help' 以瞭解用法。" - - #: ../settings/xfpm-settings-main.c:123 - msgid "Failed to load power manager configuration, using defaults" --msgstr "無法載入電源管理員組態,使用預設值" -+msgstr "無法載入電源管理員組態,改為使用預設值" - - #: ../settings/xfpm-settings-main.c:148 - msgid "Unable to connect to Xfce Power Manager" - msgstr "無法連接至 Xfce 電源管理員" - --#: ../settings/xfpm-settings-main.c:190 --#: ../src/xfpm-main.c:329 -+#: ../settings/xfpm-settings-main.c:190 ../src/xfpm-main.c:329 - #, c-format - msgid "Xfce power manager is not running" --msgstr "Xfce 電源管理員不在執行中" -+msgstr "Xfce 電源管理員未有執行" - - #: ../settings/xfpm-settings-main.c:195 - msgid "Run" -@@ -348,17 +319,12 @@ msgstr "執行" - - #: ../settings/xfpm-settings-main.c:196 - msgid "Xfce4 Power Manager is not running, do you want to launch it now?" --msgstr "Xfce4 電源管理員不在執行中,您想要現在啟動它嗎?" -+msgstr "Xfce4 電源管理員未有執行,想要現在啟動嗎?" - - #: ../settings/xfce4-power-manager-settings.desktop.in.h:1 --#: ../src/xfpm-power.c:307 --#: ../src/xfpm-power.c:595 --#: ../src/xfpm-power.c:730 --#: ../src/xfpm-power.c:766 --#: ../src/xfpm-power.c:935 --#: ../src/xfpm-power.c:959 --#: ../src/xfpm-battery.c:351 --#: ../src/xfce4-power-manager.desktop.in.h:1 -+#: ../src/xfpm-power.c:307 ../src/xfpm-power.c:595 ../src/xfpm-power.c:730 -+#: ../src/xfpm-power.c:766 ../src/xfpm-power.c:935 ../src/xfpm-power.c:959 -+#: ../src/xfpm-battery.c:351 ../src/xfce4-power-manager.desktop.in.h:1 - msgid "Power Manager" - msgstr "電源管理員" - -@@ -375,35 +341,39 @@ msgid "_Hibernate" - msgstr "休眠(_H)" - - #: ../src/xfpm-power.c:329 --msgid "An application is currently disabling the automatic sleep. Doing this action now may damage the working state of this application." --msgstr "有個應用程式目前讓自動睡眠停用。若現在執行此動作可能會損壞這個應用程式的工作狀態。" -+msgid "" -+"An application is currently disabling the automatic sleep. Doing this action " -+"now may damage the working state of this application." -+msgstr "" -+"有個應用程式目前讓自動睡眠停用。若現在執行此動作可能會損壞這個應用程式的工作" -+"狀態。" - - #: ../src/xfpm-power.c:331 - msgid "Are you sure you want to hibernate the system?" --msgstr "您確定要讓系統休眠嗎?" -+msgstr "確定要讓系統休眠嗎?" - - #: ../src/xfpm-power.c:426 - msgid "Quit" --msgstr "退出" -+msgstr "結束" - - #: ../src/xfpm-power.c:427 - msgid "All running instances of the power manager will exit" --msgstr "所有執行中的電源管理員實體將離開" -+msgstr "所有執行中的電源管理員實體將結束" - - #: ../src/xfpm-power.c:429 - msgid "Quit the power manager?" --msgstr "要退出電源管理員嗎?" -+msgstr "要結束電源管理員嗎?" - - #. Power information --#: ../src/xfpm-power.c:534 --#: ../src/xfpm-power-info.c:818 -+#: ../src/xfpm-power.c:534 ../src/xfpm-power-info.c:818 - msgid "Power Information" - msgstr "電源資訊" - - #. * - #. * Power Mode - #. * --#. TRANSLATOR: Mode here is the power profile (presentation, power save, normal) -+#. TRANSLATOR: Mode here is the power profile (presentation, power save, -+#. normal) - #: ../src/xfpm-power.c:550 - msgid "Mode" - msgstr "模式" -@@ -430,8 +400,7 @@ msgstr "暫停系統" - msgid "Shutdown the system" - msgstr "關閉系統" - --#: ../src/xfpm-power.c:725 --#: ../src/xfpm-power.c:763 -+#: ../src/xfpm-power.c:725 ../src/xfpm-power.c:763 - msgid "System is running on low power. Save your work to avoid losing data" - msgstr "系統正以低電量執行。請儲存您的工作以避免喪失資料" - -@@ -448,39 +417,31 @@ msgstr "" - "您的 %s 充電等級為低\n" - "預估剩餘時間 %s" - --#: ../src/xfpm-power.c:1158 --#: ../src/xfpm-power.c:1163 -+#: ../src/xfpm-power.c:1158 ../src/xfpm-power.c:1163 - msgid "Adaptor is offline" - msgstr "接配器已離線" - --#: ../src/xfpm-power.c:1159 --#: ../src/xfpm-power.c:1164 --#: ../src/xfpm-battery.c:413 -+#: ../src/xfpm-power.c:1159 ../src/xfpm-power.c:1164 ../src/xfpm-battery.c:413 - #, c-format - msgid "Adaptor is online" - msgstr "接配器已接線" - --#: ../src/xfpm-power.c:1617 --#: ../src/xfpm-power.c:1638 --#: ../src/xfpm-power.c:1653 -+#: ../src/xfpm-power.c:1617 ../src/xfpm-power.c:1638 ../src/xfpm-power.c:1653 - #: ../src/xfpm-power.c:1676 - #, c-format - msgid "Permission denied" --msgstr "許可被拒絕" -+msgstr "許可被拒" - --#: ../src/xfpm-power.c:1661 --#: ../src/xfpm-power.c:1684 -+#: ../src/xfpm-power.c:1661 ../src/xfpm-power.c:1684 - #, c-format - msgid "Suspend not supported" --msgstr "暫停不被支援" -+msgstr "不支援暫停" - --#: ../src/xfpm-power-common.c:122 --#: ../src/xfpm-power-common.c:141 -+#: ../src/xfpm-power-common.c:122 ../src/xfpm-power-common.c:141 - msgid "Battery" - msgstr "電源" - --#: ../src/xfpm-power-common.c:124 --#: ../src/xfpm-battery.c:832 -+#: ../src/xfpm-power-common.c:124 ../src/xfpm-battery.c:832 - msgid "UPS" - msgstr "UPS" - -@@ -504,12 +465,10 @@ msgstr "PDA" - msgid "Phone" - msgstr "手機" - --#: ../src/xfpm-power-common.c:138 --#: ../src/xfpm-power-common.c:153 --#: ../src/xfpm-power-common.c:168 --#: ../src/xfpm-battery.c:850 -+#: ../src/xfpm-power-common.c:138 ../src/xfpm-power-common.c:153 -+#: ../src/xfpm-power-common.c:168 ../src/xfpm-battery.c:850 - msgid "Unknown" --msgstr "未知" -+msgstr "不詳" - - #: ../src/xfpm-power-common.c:155 - msgid "Lithium ion" -@@ -537,7 +496,7 @@ msgstr "鎳氫" - - #: ../src/xfpm-battery.c:171 - msgid "Unknown time" --msgstr "未知時間" -+msgstr "時間不詳" - - #: ../src/xfpm-battery.c:177 - #, c-format -@@ -569,17 +528,15 @@ msgstr[1] "小時" - #: ../src/xfpm-battery.c:196 - msgid "minute" - msgid_plural "minutes" --msgstr[0] "小時" -+msgstr[0] "分鐘" - msgstr[1] "分鐘" - --#: ../src/xfpm-battery.c:211 --#: ../src/xfpm-battery.c:262 -+#: ../src/xfpm-battery.c:211 ../src/xfpm-battery.c:262 - #, c-format - msgid "Your %s is fully charged" - msgstr "您的 %s 已充飽電" - --#: ../src/xfpm-battery.c:214 --#: ../src/xfpm-battery.c:265 -+#: ../src/xfpm-battery.c:214 ../src/xfpm-battery.c:265 - #, c-format - msgid "Your %s is charging" - msgstr "您的 %s 正在充電" -@@ -593,8 +550,7 @@ msgstr "" - "%s (%i%%)\n" - "還要 %s 充飽電。" - --#: ../src/xfpm-battery.c:232 --#: ../src/xfpm-battery.c:268 -+#: ../src/xfpm-battery.c:232 ../src/xfpm-battery.c:268 - #, c-format - msgid "Your %s is discharging" - msgstr "您的 %s 正在放電" -@@ -613,8 +569,7 @@ msgstr "" - "%s (%i%%)\n" - "預估剩餘時間 %s。" - --#: ../src/xfpm-battery.c:250 --#: ../src/xfpm-battery.c:271 -+#: ../src/xfpm-battery.c:250 ../src/xfpm-battery.c:271 - #, c-format - msgid "Your %s is empty" - msgstr "您的 %s 已空" -@@ -735,8 +690,7 @@ msgstr "PDA 電池" - msgid "Phone battery" - msgstr "手機電池" - --#: ../src/xfpm-main.c:53 --#: ../src/xfpm-power-info.c:93 -+#: ../src/xfpm-main.c:53 ../src/xfpm-power-info.c:93 - #, c-format - msgid "" - "\n" -@@ -757,13 +711,11 @@ msgstr "" - "基於 GNU GPL 條款授權。\n" - "\n" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "True" - msgstr "真" - --#: ../src/xfpm-main.c:76 --#: ../src/xfpm-power-info.c:376 -+#: ../src/xfpm-main.c:76 ../src/xfpm-power-info.c:376 - msgid "False" - msgstr "假" - -@@ -811,19 +763,19 @@ msgstr "可以關閉硬碟轉動" - - #: ../src/xfpm-main.c:147 - msgid "Authorized to suspend" --msgstr "授權暫停" -+msgstr "獲授權暫停" - - #: ../src/xfpm-main.c:149 - msgid "Authorized to hibernate" --msgstr "授權休眠" -+msgstr "獲授權休眠" - - #: ../src/xfpm-main.c:151 - msgid "Authorized to shutdown" --msgstr "授權關機" -+msgstr "獲授權關機" - - #: ../src/xfpm-main.c:153 - msgid "Authorized to spin down hard disks" --msgstr "授權關閉硬碟轉動" -+msgstr "獲授權關閉硬碟轉動" - - #: ../src/xfpm-main.c:155 - msgid "Has battery" -@@ -863,24 +815,23 @@ msgstr "傾印所有資訊" - - #: ../src/xfpm-main.c:267 - msgid "Restart the running instance of Xfce power manager" --msgstr "重新啟動 Xfce 電源管理程式執行中的實體" -+msgstr "重新啟動 Xfce 電源管理員執行中的實體" - - #: ../src/xfpm-main.c:268 - msgid "Show the configuration dialog" --msgstr "顯示組態對話窗" -+msgstr "顯示組態對話視窗" - - #: ../src/xfpm-main.c:269 - msgid "Quit any running xfce power manager" --msgstr "退出任何執行中的 xfce 電源管理員" -+msgstr "結束任何執行中的 Xfce 電源管理員" - --#: ../src/xfpm-main.c:270 --#: ../src/xfpm-power-info.c:933 -+#: ../src/xfpm-main.c:270 ../src/xfpm-power-info.c:933 - msgid "Version information" - msgstr "版本資訊" - - #: ../src/xfpm-main.c:320 - msgid "Unable to get connection to the message bus session" --msgstr "無法取得訊息 bus 工作階段的連線" -+msgstr "無法取得訊息匯流排工作階段的連線" - - #: ../src/xfpm-main.c:414 - msgid "Another power manager is already running" -@@ -894,12 +845,12 @@ msgstr "Xfce 電源管理員正在執行中" - #: ../src/xfpm-inhibit.c:331 - #, c-format - msgid "Invalid arguments" --msgstr "無效的引數" -+msgstr "引數無效" - - #: ../src/xfpm-inhibit.c:357 - #, c-format - msgid "Invalid cookie" --msgstr "無效的 cookie" -+msgstr "cookie 無效" - - #. TRANSLATORS: the command line was not provided - #: ../src/xfpm-power-info.c:118 -@@ -907,8 +858,7 @@ msgid "No data" - msgstr "無資料" - - #. TRANSLATORS: kernel module, usually a device driver --#: ../src/xfpm-power-info.c:125 --#: ../src/xfpm-power-info.c:130 -+#: ../src/xfpm-power-info.c:125 ../src/xfpm-power-info.c:130 - msgid "Kernel module" - msgstr "內核模組" - -@@ -953,10 +903,8 @@ msgid "Intel wireless adaptor" - msgstr "Intel 無線接配器" - - #. TRANSLATORS: a timer is something that fires periodically --#: ../src/xfpm-power-info.c:206 --#: ../src/xfpm-power-info.c:209 --#: ../src/xfpm-power-info.c:212 --#: ../src/xfpm-power-info.c:215 -+#: ../src/xfpm-power-info.c:206 ../src/xfpm-power-info.c:209 -+#: ../src/xfpm-power-info.c:212 ../src/xfpm-power-info.c:215 - #: ../src/xfpm-power-info.c:218 - #, c-format - msgid "Timer %s" -@@ -981,8 +929,7 @@ msgid "Wait %s" - msgstr "等候 %s" - - #. TRANSLATORS: a work queue is a list of work that has to be done --#: ../src/xfpm-power-info.c:230 --#: ../src/xfpm-power-info.c:233 -+#: ../src/xfpm-power-info.c:230 ../src/xfpm-power-info.c:233 - #, c-format - msgid "Work queue %s" - msgstr "工作佇列 %s" -@@ -1017,7 +964,7 @@ msgstr "正在重新排程中斷" - - #: ../src/xfpm-power-info.c:331 - msgid "Attribute" --msgstr "特性" -+msgstr "屬性" - - #: ../src/xfpm-power-info.c:338 - msgid "Value" -@@ -1027,8 +974,7 @@ msgstr "值" - msgid "Device" - msgstr "裝置" - --#: ../src/xfpm-power-info.c:363 --#: ../src/xfpm-power-info.c:739 -+#: ../src/xfpm-power-info.c:363 ../src/xfpm-power-info.c:739 - msgid "Type" - msgstr "類型" - -@@ -1045,11 +991,10 @@ msgid "Technology" - msgstr "科技" - - #. TRANSLATORS: Unit here is What hour --#: ../src/xfpm-power-info.c:414 --#: ../src/xfpm-power-info.c:428 -+#: ../src/xfpm-power-info.c:414 ../src/xfpm-power-info.c:428 - #: ../src/xfpm-power-info.c:442 - msgid "Wh" --msgstr "W小時" -+msgstr "瓦特小時" - - #: ../src/xfpm-power-info.c:420 - msgid "Energy full design" -@@ -1118,4 +1063,3 @@ msgstr "找不到裝置" - #: ../panel-plugins/brightness/xfce4-brightness-plugin.desktop.in.in.h:1 - msgid "Brightness plugin" - msgstr "亮度插件" -- diff --git a/desktop/xfce/base/xfce4-power-manager/pspec.xml b/desktop/xfce/base/xfce4-power-manager/pspec.xml deleted file mode 100644 index 4d2f5d8c1c..0000000000 --- a/desktop/xfce/base/xfce4-power-manager/pspec.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - xfce4-power-manager - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - A power manager for the Xfce desktop - This software is a power manager for the Xfce desktop, Xfce power manager manages the power sources on the computer and the devices that can be controlled to reduce their power consumption. - (such as LCD brightness level, monitor sleep, CPU frequency scaling). In addition, xfce4-power-manager provides a set of freedesktop-compliant DBus interfaces to inform other applications about current power level so that they can adjust their power consumption. - http://archive.xfce.org/src/xfce/xfce4-power-manager/1.5/xfce4-power-manager-1.5.2.tar.bz2 - - intltool - xfconf-devel - libxfce4ui-devel - xfce4-panel-devel - dbus-devel - dbus-glib-devel - libnotify-devel - libXrandr-devel - gtk3-devel - libXScrnSaver-devel - upower-devel - libXrandr-devel - libxfce4util-devel - libglade-devel - polkit-devel - ConsoleKit-devel - gtk2-devel - libnotify-devel - libxfce4ui-devel - libxfce4util-devel - libxcb-devel - libXtst-devel - - - - - xfce4-power-manager - - libXScrnSaver - atk - cairo - pango - libXext - gdk-pixbuf - libXrandr - xfconf - libxfce4util - libxfce4ui - gtk2 - upower - libnotify - fontconfig - xfce4-panel - - - /usr/share/doc - /usr/bin - /usr/sbin - /usr/share - /usr/lib/xfce4 - /usr/libexec - /etc/xdg/autostart - - - - - - 2015-10-06 - 1.5.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-power-manager/translations.xml b/desktop/xfce/base/xfce4-power-manager/translations.xml deleted file mode 100644 index eecdae3b5e..0000000000 --- a/desktop/xfce/base/xfce4-power-manager/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfce4-power-manager - Xfce masaüstü için bir güç yöneticisi - Menedżer zasilania dla środowiska Xfce - Xfce güç yöneticisi, kendi güç tüketimini azaltmak için bilgisayar güç kaynakları ve kontrol edilebilir aygıtları yönetir.(LCD parlaklık seviyesi, monitör uyku, CPU frekansı ölçekleme gibi) - Ten menedżer zasilania dla środowiska Xfce4, pozwala użytkownikom laptopów tworzyć profile zasilania dla dwóch różnych trybów: "zasilanie z baterii" i "zasilanie z sieci", jednocześnie wciąż pozwalając użytkownikom zmieniać ustawienia DPMS i częstotliwość CPU. - - diff --git a/desktop/xfce/base/xfce4-session/actions.py b/desktop/xfce/base/xfce4-session/actions.py deleted file mode 100644 index 1389e27f38..0000000000 --- a/desktop/xfce/base/xfce4-session/actions.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --disable-systemd \ - --disable-debug") - - pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""') - pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE") - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "COPYING", "BUGS", "ChangeLog*", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfce4-session/files/xfce4-session-4.10.0-fix-duplicated-accelerators.patch b/desktop/xfce/base/xfce4-session/files/xfce4-session-4.10.0-fix-duplicated-accelerators.patch deleted file mode 100644 index 3f0ca7702b..0000000000 --- a/desktop/xfce/base/xfce4-session/files/xfce4-session-4.10.0-fix-duplicated-accelerators.patch +++ /dev/null @@ -1,1121 +0,0 @@ -From 0288a7ce5ff08d138a3474f34353b48597830782 Mon Sep 17 00:00:00 2001 -From: Jérôme Guelfucci -Date: Wed, 07 Nov 2012 09:23:00 +0000 -Subject: Fix duplicated accelerators. - ---- -diff --git a/settings/main.c b/settings/main.c -index 31a6815..0338b73 100644 ---- a/settings/main.c -+++ b/settings/main.c -@@ -125,7 +125,7 @@ main(int argc, - xfae_page = xfae_window_new(); - gtk_widget_show(xfae_page); - notebook = GTK_WIDGET(gtk_builder_get_object(builder, "plug-child")); -- lbl = gtk_label_new_with_mnemonic(_("_Application Autostart")); -+ lbl = gtk_label_new_with_mnemonic(_("App_lication Autostart")); - gtk_widget_show(lbl); - gtk_notebook_insert_page(GTK_NOTEBOOK(notebook), xfae_page, lbl, 2); - -diff --git a/settings/xfce4-session-settings.glade b/settings/xfce4-session-settings.glade -index b5916d9..b8e2247 100644 ---- a/settings/xfce4-session-settings.glade -+++ b/settings/xfce4-session-settings.glade -@@ -1,20 +1,178 @@ -- -+ - -- -+ - - -+ -+ False -+ 5 -+ Saving Session -+ False -+ center-on-parent -+ True -+ xfce4-session -+ dialog -+ True -+ True -+ xfce4_session_settings_dialog -+ -+ -+ True -+ False -+ 2 -+ -+ -+ True -+ False -+ end -+ -+ -+ gtk-close -+ False -+ True -+ True -+ True -+ True -+ -+ -+ False -+ False -+ 0 -+ -+ -+ -+ -+ False -+ True -+ end -+ 0 -+ -+ -+ -+ -+ True -+ False -+ 6 -+ 6 -+ -+ -+ True -+ False -+ 12 -+ -+ -+ True -+ False -+ gtk-dialog-info -+ 6 -+ -+ -+ False -+ True -+ 0 -+ -+ -+ -+ -+ True -+ False -+ 0 -+ Your session is being saved. If you do not wish to wait, you may close this window. -+ fill -+ True -+ -+ -+ True -+ True -+ 1 -+ -+ -+ -+ -+ False -+ True -+ 0 -+ -+ -+ -+ -+ True -+ False -+ True -+ -+ -+ False -+ True -+ 1 -+ -+ -+ -+ -+ False -+ True -+ 1 -+ -+ -+ -+ -+ -+ button3 -+ -+ - -+ False - Session and Startup - center-on-parent - xfce4-session - dialog -- False - Customize desktop startup and splash screen - - - True -- vertical -+ False - 2 -+ -+ -+ True -+ False -+ -+ -+ gtk-help -+ False -+ True -+ True -+ True -+ True -+ -+ -+ False -+ False -+ 0 -+ -+ -+ -+ -+ gtk-close -+ False -+ True -+ True -+ True -+ True -+ -+ -+ False -+ False -+ 1 -+ -+ -+ -+ -+ False -+ True -+ end -+ 0 -+ -+ - - - True -@@ -23,23 +181,26 @@ - - - True -+ False - 12 -- vertical - 6 - - - True -+ False - 0 - none - - - True -+ False - 6 - 6 - 12 - - - _Display chooser on login -+ False - True - True - False -@@ -53,6 +214,7 @@ - - - True -+ False - <b>Session Chooser</b> - True - -@@ -60,28 +222,32 @@ - - - False -+ True - 0 - - - - - True -+ False - 0 - none - - - True -+ False - 6 - 6 - 12 - - - True -- vertical -+ False - 6 - - -- Automatically save session on _logout -+ Automatically save session on logo_ut -+ False - True - True - False -@@ -91,12 +257,14 @@ - - - False -+ True - 0 - - - - -- _Prompt on logout -+ Pro_mpt on logout -+ False - True - True - False -@@ -107,6 +275,7 @@ - - - False -+ True - 1 - - -@@ -117,12 +286,15 @@ - - - True -+ False - <b>Logout Settings</b> - True - - - - -+ True -+ True - 1 - - -@@ -131,6 +303,7 @@ - - - True -+ False - _General - True - -@@ -141,12 +314,13 @@ - - - True -+ False - 12 - 12 - - - True -- vertical -+ False - 6 - - -@@ -164,11 +338,14 @@ - - - -+ True -+ True - 0 - - - - -+ False - True - False - True -@@ -177,26 +354,33 @@ - - - True -+ False - 4 - - - True -+ False - 1 - gtk-preferences - - -+ True -+ True - 0 - - - - - True -+ False - 0 - Con_figure - True - btn_splash_configure - - -+ True -+ True - 1 - - -@@ -205,11 +389,13 @@ - - - False -+ True - 1 - - - - -+ False - True - False - True -@@ -218,26 +404,33 @@ - - - True -+ False - 4 - - - True -+ False - 1 - gtk-execute - - -+ True -+ True - 0 - - - - - True -+ False - 0 - _Test - True - btn_splash_test - - -+ True -+ True - 1 - - -@@ -246,41 +439,49 @@ - - - False -+ True - 2 - - - - - False -+ True - 0 - - - - - True -- vertical -+ False - 6 - - - True -+ False - gtk-missing-image - - -+ True -+ True - 0 - - - - - True -+ False - 0 - - - True -+ False - 4 - 12 - - - True -+ False - 4 - 2 - 12 -@@ -288,6 +489,7 @@ - - - True -+ False - 0 - <b>Description:</b> - True -@@ -299,6 +501,7 @@ - - - True -+ False - 0 - <b>Version:</b> - True -@@ -312,6 +515,7 @@ - - - True -+ False - 0 - <b>Author:</b> - True -@@ -325,6 +529,7 @@ - - - True -+ False - 0 - <b>Homepage:</b> - True -@@ -338,6 +543,7 @@ - - - True -+ False - 0 - label - True -@@ -350,6 +556,7 @@ - - - True -+ False - 0 - label - True -@@ -364,6 +571,7 @@ - - - True -+ False - 0 - label - True -@@ -378,6 +586,7 @@ - - - True -+ False - 0 - label - True -@@ -396,6 +605,7 @@ - - - True -+ False - <b>Information</b> - True - -@@ -403,11 +613,14 @@ - - - False -+ True - 1 - - - - -+ True -+ True - 1 - - -@@ -419,6 +632,7 @@ - - - True -+ False - S_plash - True - -@@ -430,27 +644,31 @@ - - - True -+ False - 12 -- vertical - 6 - - - True -+ False - 12 - - - True -+ False - gtk-dialog-info - 6 - - - False -+ True - 0 - - - - - True -+ False - 0 - These applications are a part of the currently-running session, and can be saved when you log out. Changes below will only take effect when the session is saved. - fill -@@ -458,12 +676,14 @@ - - - False -+ True - 1 - - - - - False -+ True - 0 - - -@@ -482,40 +702,51 @@ - - - -+ True -+ True - 1 - - - - - True -+ False - 6 - - -+ False - True - True - True - - - True -+ False - 4 - - - True -+ False - 1 - gtk-save - - -+ True -+ True - 0 - - - - - True -+ False - 0 -- Save Sessio_n -+ Save Sess_ion - True - - -+ True -+ True - 1 - - -@@ -524,38 +755,46 @@ - - - False -+ True - 1 - - - - -+ False - True -- True - True - True - Empty the session cache - - - True -+ False - 4 - - - True -+ False - 1 - gtk-clear - - -+ True -+ True - 0 - - - - - True -+ False - 0 -- _Clear saved sessions -+ Clear save_d sessions - True - - -+ True -+ True - 1 - - -@@ -564,11 +803,13 @@ - - - False -+ True - 1 - - - - -+ False - True - False - True -@@ -577,25 +818,32 @@ - - - True -+ False - 4 - - - True -+ False - 1 - gtk-quit - - -+ True -+ True - 0 - - - - - True -+ False - 0 - _Quit Program - True - - -+ True -+ True - 1 - - -@@ -604,6 +852,7 @@ - - - False -+ True - end - 1 - -@@ -611,6 +860,7 @@ - - - False -+ True - 2 - - -@@ -622,7 +872,8 @@ - - - True -- _Session -+ False -+ Sessio_n - True - - -@@ -633,28 +884,31 @@ - - - True -+ False - 12 -- vertical - 6 - - - True -+ False - 0 - none - - - True -+ False - 6 - 6 - 12 - - - True -- vertical -+ False - 6 - - - Launch GN_OME services on startup -+ False - True - True - False -@@ -664,12 +918,14 @@ - - - False -+ True - 0 - - - - - Launch _KDE services on startup -+ False - True - True - False -@@ -679,6 +935,7 @@ - - - False -+ True - 1 - - -@@ -689,6 +946,7 @@ - - - True -+ False - <b>Compatibility</b> - True - -@@ -696,23 +954,27 @@ - - - False -+ True - 0 - - - - - True -+ False - 0 - none - - - True -+ False - 6 - 6 - 12 - - - Manage _remote applications -+ False - True - True - False -@@ -726,6 +988,7 @@ - - - True -+ False - <b>Security</b> - True - -@@ -733,23 +996,27 @@ - - - False -+ True - 1 - - - - - True -+ False - 0 - none - - - True -+ False - 6 - 6 - 12 - - -- _Lock screen before sleep -+ Lock screen be_fore sleep -+ False - True - True - False -@@ -763,6 +1030,7 @@ - - - True -+ False - <b>Shutdown</b> - True - -@@ -770,6 +1038,7 @@ - - - False -+ True - 2 - - -@@ -781,6 +1050,7 @@ - - - True -+ False - Ad_vanced - True - -@@ -791,47 +1061,11 @@ - - - -+ True -+ True - 1 - - -- -- -- True -- -- -- gtk-help -- True -- True -- True -- True -- -- -- False -- False -- 0 -- -- -- -- -- gtk-close -- True -- True -- True -- True -- -- -- False -- False -- 1 -- -- -- -- -- False -- end -- 0 -- -- - - - -@@ -839,107 +1073,4 @@ - button2 - - -- -- 5 -- Saving Session -- False -- center-on-parent -- True -- xfce4-session -- dialog -- True -- True -- xfce4_session_settings_dialog -- False -- -- -- True -- vertical -- 2 -- -- -- True -- 6 -- vertical -- 6 -- -- -- True -- 12 -- -- -- True -- gtk-dialog-info -- 6 -- -- -- False -- 0 -- -- -- -- -- True -- 0 -- Your session is being saved. If you do not wish to wait, you may close this window. -- fill -- True -- -- -- 1 -- -- -- -- -- False -- 0 -- -- -- -- -- True -- True -- -- -- False -- 1 -- -- -- -- -- False -- 1 -- -- -- -- -- True -- end -- -- -- gtk-close -- True -- True -- True -- True -- -- -- False -- False -- 0 -- -- -- -- -- False -- end -- 0 -- -- -- -- -- -- button3 -- -- - --- -cgit v0.9.0.3 - diff --git a/desktop/xfce/base/xfce4-session/pspec.xml b/desktop/xfce/base/xfce4-session/pspec.xml deleted file mode 100644 index bcc884ac48..0000000000 --- a/desktop/xfce/base/xfce4-session/pspec.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - xfce4-session - http://www.xfce.org/projects/xfce4-session - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - app:console - Xfce session manager - The session manager allows the user to save sessions and restore them after login. It is capable of saving several different sessions. It comes with three splash screen engines. And at last it helps you to log out, reboot, and shutdown the system. - http://archive.xfce.org/src/xfce/xfce4-session/4.12/xfce4-session-4.12.1.tar.bz2 - - intltool - libX11-devel - libxfce4util-devel - libxfce4ui-devel - libwnck2-devel - gobject-introspection-devel - polkit-devel - upower-devel - xorg-app-devel - libSM-devel - - - - - xfce4-session - - atk - dbus - gtk2 - cairo - glib2 - pango - libSM - libICE - libX11 - polkit - xfconf - libwnck2 - dbus-glib - libxfce4ui - gdk-pixbuf - libxfce4util - - - /etc - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/xfce4/doc - /usr/share/xfce4 - /usr/share/applications - /usr/share/icons - /usr/share/themes - /usr/share/xsessions - /usr/share/polkit-1/actions - /usr/share/man - - - - - xfce4-session-devel - library - data:doc - Xfce4 Session development files - - xfce4-session - xfconf-devel - libxfce4ui-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc - - - - - - 2015-03-24 - 4.12.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-session/translations.xml b/desktop/xfce/base/xfce4-session/translations.xml deleted file mode 100644 index 91e080a0fe..0000000000 --- a/desktop/xfce/base/xfce4-session/translations.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - xfce4-session - Xfce oturum yöneticisi - Menedżer sesji Xfce4 - Xfce oturum yöneticisi, kullanıcıların oturumlarını kaydetmesine ve giriş yaptıktan sonra tekrar oturumu çağırmalarına izin verir. Birden fazla, farklı oturumları kaydetmede oldukça başarılıdır. Pakette üç tane örnek açılış teması var ve son olarak, sistemi kapatırken, yeniden başlatırken veya çıkarken kullanıcılara yardımcı olur. - Xfce4-session jest zgodny z "menedżerem sesji" X11 zaprojektowanym do użycia ze środowiskiem graficznym Xfce4. Podczas wylogowywania, menedżer sesji zapisuje wszystkie uruchomione aplikacje. Przy ponownym zalogowaniu, przywraca je z oknami na tych samych pozycjach. - - - - xfce4-session-devel - xfce4-session geliştirme dosyaları - Pliki nagłówkowe xfce4-session - - diff --git a/desktop/xfce/base/xfce4-settings/actions.py b/desktop/xfce/base/xfce4-settings/actions.py deleted file mode 100644 index f102e9aa1a..0000000000 --- a/desktop/xfce/base/xfce4-settings/actions.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --enable-xrandr \ - --enable-xcursor \ - --enable-libnotify \ - --enable-libxklavier \ - --enable-pluggable-dialogs \ - --enable-sound-settings \ - --disable-debug") - - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.install() - pisitools.remove("/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml") - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfce4-settings/files/1920x1080.png b/desktop/xfce/base/xfce4-settings/files/1920x1080.png deleted file mode 100644 index 19d0cd88a2..0000000000 Binary files a/desktop/xfce/base/xfce4-settings/files/1920x1080.png and /dev/null differ diff --git a/desktop/xfce/base/xfce4-settings/files/xfce4-desktop.xml b/desktop/xfce/base/xfce4-settings/files/xfce4-desktop.xml deleted file mode 100644 index c7c2667623..0000000000 --- a/desktop/xfce/base/xfce4-settings/files/xfce4-desktop.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/desktop/xfce/base/xfce4-settings/files/xfce4-panel.xml b/desktop/xfce/base/xfce4-settings/files/xfce4-panel.xml deleted file mode 100644 index 3ef57b3b98..0000000000 --- a/desktop/xfce/base/xfce4-settings/files/xfce4-panel.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desktop/xfce/base/xfce4-settings/files/xfce4-settings-xml.patch b/desktop/xfce/base/xfce4-settings/files/xfce4-settings-xml.patch deleted file mode 100644 index 9ee2f6e543..0000000000 --- a/desktop/xfce/base/xfce4-settings/files/xfce4-settings-xml.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- xsettings-orig.xml 2015-03-02 16:14:44.902524959 +0200 -+++ xfsettingsd/xsettings.xml 2015-03-02 16:14:08.013524118 +0200 -@@ -6,8 +6,8 @@ - - - -- -- -+ -+ - - - diff --git a/desktop/xfce/base/xfce4-settings/files/xfwm4.xml b/desktop/xfce/base/xfce4-settings/files/xfwm4.xml deleted file mode 100644 index 7166afa3ed..0000000000 --- a/desktop/xfce/base/xfce4-settings/files/xfwm4.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desktop/xfce/base/xfce4-settings/pspec.xml b/desktop/xfce/base/xfce4-settings/pspec.xml deleted file mode 100644 index ad28351279..0000000000 --- a/desktop/xfce/base/xfce4-settings/pspec.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - xfce4-settings - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - Xfce settings plugins - Xfce4-settings is a configuration manager for Xfce desktop environment. - http://archive.xfce.org/src/xfce/xfce4-settings/4.12/xfce4-settings-4.12.0.tar.bz2 - - libxklavier-devel - libnotify-devel - libcanberra-devel - exo-devel - libxfce4ui-devel - garcon-devel - intltool - libX11-devel - libXcursor-devel - libXrandr-devel - upower-devel - libXtst-devel - - - xfce4-settings-xml.patch - - - - - xfce4-settings - - exo - dbus - gtk2 - libXi - cairo - glib2 - pango - garcon - libX11 - upower - xfconf - dbus-glib - libnotify - libXrandr - libxfce4ui - fontconfig - gdk-pixbuf - libXcursor - libxklavier - libxfce4util - - - /etc - /usr/bin - /usr/lib/xfce4/settings - /usr/share/applications - /usr/share/icons - /usr/share/backgrounds/xfce - /usr/share/doc - /usr/share/locale - - - - - - 2016-09-20 - 4.12.0 - Relase - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-settings/translations.xml b/desktop/xfce/base/xfce4-settings/translations.xml deleted file mode 100644 index 2deaa19f6f..0000000000 --- a/desktop/xfce/base/xfce4-settings/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfce4-settings - Xfce ayar yöneticisi - Graficzna aplikacja do zarządzania ustawieniami Xfce - Xfce4-settings, Xfce masaüstü yöneticisi için yazılmış ayar yöneticisidir. - Xfce4-settings jest interfejsem menedżera ustawień Xfce4. Wywodzi się z kilku różnych komponentów do konfiguracji niezależnych od aplikacji, ustawień wewnątrz xfconf. - - diff --git a/desktop/xfce/base/xfce4-taskmanager/actions.py b/desktop/xfce/base/xfce4-taskmanager/actions.py deleted file mode 100644 index 7ed9ca972d..0000000000 --- a/desktop/xfce/base/xfce4-taskmanager/actions.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static") - -def build(): - autotools.make() - -def install(): - autotools.install() - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS") diff --git a/desktop/xfce/base/xfce4-taskmanager/pspec.xml b/desktop/xfce/base/xfce4-taskmanager/pspec.xml deleted file mode 100644 index f30a77f313..0000000000 --- a/desktop/xfce/base/xfce4-taskmanager/pspec.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - xfce4-taskmanager - http://goodies.xfce.org/projects/applications/xfce4-taskmanager - - Alper Tekinalp - admins@pisilinux.org - - GPLv2 - xfce4_xicon - app:gui - Simple taskmanager for the Xfce - Xfce-taskmanager is a small taskmanager based on the Xfce libraries. - http://archive.xfce.org/src/apps/xfce4-taskmanager/1.0/xfce4-taskmanager-1.0.1.tar.bz2 - - intltool - gtk2-devel - - - - - xfce4-taskmanager - - gtk2 - cairo - glib2 - - - /usr/bin - /usr/libexec - /usr/share/doc - /usr/share/locale - /usr/share/applications - - - - - - 2015-03-02 - 1.0.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfce4-taskmanager/translations.xml b/desktop/xfce/base/xfce4-taskmanager/translations.xml deleted file mode 100644 index 45fa843330..0000000000 --- a/desktop/xfce/base/xfce4-taskmanager/translations.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - xfce4-taskmanager - Xfce görev yöneticisi - Xfce4-taskmanager, Xfce kütüphaneleriyle yazılmış basit bir Xfce görev yöneticisidir. - - diff --git a/desktop/xfce/base/xfconf/actions.py b/desktop/xfce/base/xfconf/actions.py deleted file mode 100644 index 66c1e627d3..0000000000 --- a/desktop/xfce/base/xfconf/actions.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import perlmodules -from pisi.actionsapi import get - -def setup(): - autotools.configure('--prefix=/usr \ - --disable-static \ - --disable-gtk-doc \ - --with-perl-options=INSTALLDIRS="vendor" \ - --disable-debug') - - pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""') - pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE") - pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc('AUTHORS', 'ChangeLog', 'NEWS', 'README', 'TODO', 'COPYING') - - # remove unneeded files - perlmodules.removePodfiles() diff --git a/desktop/xfce/base/xfconf/pspec.xml b/desktop/xfce/base/xfconf/pspec.xml deleted file mode 100644 index 68a7766868..0000000000 --- a/desktop/xfce/base/xfconf/pspec.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - xfconf - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - Xfce multi channel setting library - Xfconf is a hirerchical (tree-like) configuration system for the Xfce graphical desktop environment. - http://archive.xfce.org/xfce/4.12/src/xfconf-4.12.0.tar.bz2 - - xfce4-dev-tools - libxfce4util-devel - intltool - dbus-devel - dbus-glib-devel - - - - - - xfconf - - dbus - glib2 - dbus-glib - libxfce4util - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/dbus-1 - /usr/share/doc - - - - - xfconf-devel - library - data:doc - Xfconf development files - - xfconf - dbus-devel - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc - - - - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfconf/translations.xml b/desktop/xfce/base/xfconf/translations.xml deleted file mode 100644 index 306bfae1ee..0000000000 --- a/desktop/xfce/base/xfconf/translations.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - xfconf - Xfce çoklu ayar kitaplığı - Prosty system przechowywania i odpytywania konfiguracji - xfconf, Xfce masaüstü yöneticisi için yazılmış, ağaç tipi hiyerarşik yapılandırma sistemidir. - Xfconf jest prostym systemem przechowywania i odpytywania konfiguracji. - - - - xfconf-devel - xfconf geliştirme dosyaları - Pliki nagłówkowe xfconf - - diff --git a/desktop/xfce/base/xfdesktop/actions.py b/desktop/xfce/base/xfdesktop/actions.py deleted file mode 100644 index 6689043bc5..0000000000 --- a/desktop/xfce/base/xfdesktop/actions.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - autotools.configure("--prefix=/usr \ - --disable-static \ - --enable-gio-unix \ - --enable-thunarx \ - --enable-notifications \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfdesktop/files/xfdesktop-4.10.0-single-clock.patch b/desktop/xfce/base/xfdesktop/files/xfdesktop-4.10.0-single-clock.patch deleted file mode 100644 index 69c2e45319..0000000000 --- a/desktop/xfce/base/xfdesktop/files/xfdesktop-4.10.0-single-clock.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 18b8fd4603876baa4d1fe546d9199ac95c30bfc3 Mon Sep 17 00:00:00 2001 -From: Eric Koegel -Date: Sun, 3 Jun 2012 09:11:29 +0300 -Subject: [PATCH] Single click continues to work after logout (Bug #8750) - ---- - src/xfdesktop-icon-view.c | 14 +++++++++++--- - 1 file changed, 11 insertions(+), 3 deletions(-) - -diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c -index ef5e869..6c52f6c 100644 ---- a/src/xfdesktop-icon-view.c -+++ b/src/xfdesktop-icon-view.c -@@ -63,6 +63,8 @@ - #define SCREEN_MARGIN 8 - #define DEFAULT_RUBBERBAND_ALPHA 64 - -+#define SINGLE_CLICK_PROPERTY "/desktop-icons/single-click" -+ - #if defined(DEBUG) && DEBUG > 0 - #define DUMP_GRID_LAYOUT(icon_view) \ - {\ -@@ -3372,16 +3374,22 @@ GtkWidget * - xfdesktop_icon_view_new(XfdesktopIconViewManager *manager) - { - XfdesktopIconView *icon_view; -+ XfconfChannel *channel = NULL; - - g_return_val_if_fail(XFDESKTOP_IS_ICON_VIEW_MANAGER(manager), NULL); - - icon_view = g_object_new(XFDESKTOP_TYPE_ICON_VIEW, NULL); - icon_view->priv->manager = manager; - -- icon_view->priv->channel = xfconf_channel_get(XFDESKTOP_CHANNEL); -+ channel = xfconf_channel_get(XFDESKTOP_CHANNEL); -+ icon_view->priv->channel = channel; - -- xfconf_g_property_bind(icon_view->priv->channel, -- "/desktop-icons/single-click", -+ /* Set the single_click property before we bind to it */ -+ icon_view->priv->single_click = xfconf_channel_get_bool(channel, -+ SINGLE_CLICK_PROPERTY, -+ FALSE); -+ xfconf_g_property_bind(channel, -+ SINGLE_CLICK_PROPERTY, - G_TYPE_BOOLEAN, - G_OBJECT(icon_view), - "single_click"); --- -1.7.9.5 - diff --git a/desktop/xfce/base/xfdesktop/pspec.xml b/desktop/xfce/base/xfdesktop/pspec.xml deleted file mode 100644 index 13460a252e..0000000000 --- a/desktop/xfce/base/xfdesktop/pspec.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - xfdesktop - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - xfce4_xicon1 - library - app:gui - Xfce desktop manager - The desktop manager sets the background image, provides a right-click menu to launch applications and can optionally show files (including application launchers) or iconified windows. It includes gradient support for background color, saturation support for background image, real multiscreen and xinerama support, and it provides a desktop menu editor. - http://archive.xfce.org/src/xfce/xfdesktop/4.12/xfdesktop-4.12.1.tar.bz2 - - gtk2-devel - pango-devel - cairo-devel - gdk-pixbuf-devel - Thunar-devel - garcon-devel - xfconf-devel - libnotify-devel - libwnck2-devel - libxfce4ui-devel - libxfce4util-devel - libglade-devel - exo-devel - xfce4-panel-devel - xfce4-dev-tools - gtk-doc - docbook-xml - docbook-xsl - intltool - - - xfdesktop-4.10.0-single-clock.patch - - - - - xfdesktop - - exo - gtk2 - pango - cairo - Thunar - garcon - xfconf - libnotify - libwnck2 - libxfce4ui - libxfce4util - gdk-pixbuf - icon-theme-faenza - - - /etc - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/xfce4/doc - /usr/share/xfce4 - /usr/share/applications - /usr/share/pixmaps - /usr/share/icons - /usr/share/backgrounds - /usr/share/desktop-directories - /usr/share/man - - - - - - 2015-03-23 - 4.12.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfdesktop/translations.xml b/desktop/xfce/base/xfdesktop/translations.xml deleted file mode 100644 index 7b2597ea6e..0000000000 --- a/desktop/xfce/base/xfdesktop/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfdesktop - Xfce masaüstü yöneticisi - Tło pulpitu Xfce, ikony i menedżer menu administratora - Xfce masaüstü yöneticisi arkaplan resmini belirler, uygulamaları başlatmak, simge durumuna küçültülmüş pencereleri veya dosya seçeneklerini göstermek için sağ tık menüsünü hazırlar. Arkaplan rengi için gradyan desteği, arkaplan resmi için doygunluk desteği, gerçek çoklu ekran ve xinerama desteği içerir. Ayrıca, masaüstü menü düzenleme aracını da bünyesinde barındırır. - xfdesktop4 ustawia obraz tła pulpitu, udostępnia menu pod prawym przyciskiem myszy do uruchamiania aplikacji oraz, opcjonalnie, może pokazywać pliki lub zminimalizowane okna. - - diff --git a/desktop/xfce/base/xfwm4/actions.py b/desktop/xfce/base/xfwm4/actions.py deleted file mode 100644 index e1279b08ab..0000000000 --- a/desktop/xfce/base/xfwm4/actions.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 2 -# See the file http://www.gnu.org/copyleft/gpl.txt - -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get - -def setup(): - pisitools.dosed("defaults/defaults", "(use_compositing=).*", r"\1true") - autotools.configure("--prefix=/usr \ - --disable-static \ - --enable-startup-notification \ - --enable-randr \ - --enable-compositor \ - --enable-xsync \ - --disable-debug") - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COMPOSITOR", "COPYING", "NEWS", "README", "TODO") diff --git a/desktop/xfce/base/xfwm4/pspec.xml b/desktop/xfce/base/xfwm4/pspec.xml deleted file mode 100644 index 948d48e7f7..0000000000 --- a/desktop/xfce/base/xfwm4/pspec.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - xfwm4 - http://www.xfce.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - xfwm4 - app:gui - Xfce window manager - The Xfce4 window manager manages the placement of application windows on the screen, provides beautiful window decorations, manages workspaces or virtual desktops, and natively supports multiscreen mode. - http://archive.xfce.org/src/xfce/xfwm4/4.12/xfwm4-4.12.0.tar.bz2 - - libxfce4util-devel - gtk2-devel - libXrender-devel - libXrandr-devel - libXfixes-devel - libXcomposite-devel - startup-notification-devel - pango-devel - gdk-pixbuf-devel - xfconf-devel - libxfce4util-devel - libxfce4ui-devel - libXext-devel - libglade-devel - libwnck2-devel - libXdamage-devel - intltool - - - - - xfwm4 - - libxfce4util - gtk2 - cairo - libXrender - libXrandr - libXfixes - libXcomposite - startup-notification - pango - gdk-pixbuf - xfconf - libxfce4util - libxfce4ui - libXext - libwnck2 - libXdamage - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/xfce4/doc - /usr/share/themes - /usr/share/applications - /usr/share/icons - /usr/share/xfwm4 - - - - - - 2015-03-02 - 4.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - diff --git a/desktop/xfce/base/xfwm4/translations.xml b/desktop/xfce/base/xfwm4/translations.xml deleted file mode 100644 index 7dcee8b349..0000000000 --- a/desktop/xfce/base/xfwm4/translations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - xfwm4 - Xfce pencere yöneticisi - Menedżer okien dla projektu Xfce - Xfce4 pencere yöneticisi, uygulama pencerelerinin ekrana yerleştirmeyi sağlar, pencerelerin güzel görünmesini sağlar, çalışma alanlarını ve sanal masaüstlerini yönetir ve doğal olarak çoklu ekran kipini destekler. - Pakiet zawiera xfwm4, który jest menedżerem okiem do Xfce4. Jest on zaprojektowany do uruchamiania z resztą środowiska Xfce4. - - diff --git a/desktop/xfce/component.xml b/desktop/xfce/component.xml deleted file mode 100644 index e8146e9c7b..0000000000 --- a/desktop/xfce/component.xml +++ /dev/null @@ -1,3 +0,0 @@ - - desktop.xfce -