From 67a433e2051601a305e3fe5a4cca191d5d0ce572 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 00:32:10 +0300 Subject: [PATCH 01/22] nspr and util-linux core repoda --- system/base/nspr/actions.py | 37 --- system/base/nspr/files/generate-pc-config.sh | 36 --- system/base/nspr/files/nspr.pc.in | 10 - system/base/nspr/pspec.xml | 122 ---------- system/base/nspr/translations.xml | 15 -- system/base/util-linux/actions.py | 91 ------- ...nt-FS-id-and-parent-ID-could-be-zero.patch | 98 -------- ...verify-initramfs-by-f_type-not-devno.patch | 59 ----- .../util-linux/files/move_is_mountinfo.patch | 46 ---- system/base/util-linux/files/ntfs-3g.patch | 12 - .../util-linux-ng-2.21-login-lastlog.patch | 11 - system/base/util-linux/pspec.xml | 226 ------------------ system/base/util-linux/translations.xml | 29 --- 13 files changed, 792 deletions(-) delete mode 100644 system/base/nspr/actions.py delete mode 100644 system/base/nspr/files/generate-pc-config.sh delete mode 100644 system/base/nspr/files/nspr.pc.in delete mode 100644 system/base/nspr/pspec.xml delete mode 100644 system/base/nspr/translations.xml delete mode 100644 system/base/util-linux/actions.py delete mode 100644 system/base/util-linux/files/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch delete mode 100644 system/base/util-linux/files/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch delete mode 100644 system/base/util-linux/files/move_is_mountinfo.patch delete mode 100644 system/base/util-linux/files/ntfs-3g.patch delete mode 100644 system/base/util-linux/files/upstream/util-linux-ng-2.21-login-lastlog.patch delete mode 100644 system/base/util-linux/pspec.xml delete mode 100644 system/base/util-linux/translations.xml diff --git a/system/base/nspr/actions.py b/system/base/nspr/actions.py deleted file mode 100644 index e5d6dc7d35..0000000000 --- a/system/base/nspr/actions.py +++ /dev/null @@ -1,37 +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 get -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools - -def setup(): - # -fno-strict-aliasing workarounds some aliasing violations, see: https://bugzilla.redhat.com/show_bug.cgi?id=487844 --> - shelltools.system('nspr/configure \ - --prefix=/usr \ - --disable-debug \ - %s \ - --enable-optimize="%s -fno-strict-aliasing"' % ("--enable-64bit" if get.ARCH() == "x86_64" else "", get.CFLAGS())) - -def build(): - autotools.make() - -def install(): - # Create nss.pc and nss-config dynamically - shelltools.system("./generate-pc-config.sh") - - pisitools.insinto("/usr/lib","dist/lib/*.so",sym=False) - pisitools.insinto("/usr/include/nspr","dist/include/nspr/*.h",sym=False) - pisitools.insinto("/usr/include/nspr/obsolete","dist/include/nspr/obsolete/*.h",sym=False) - pisitools.insinto("/usr/include/nspr/private","dist/include/nspr/private/*.h",sym=False) - - # Fix permissions of headers, they're 0640 by default - shelltools.chmod("%s/usr/include/nspr/*.h" % get.installDIR(), 0644) - shelltools.chmod("%s/usr/include/nspr/*/*.h" % get.installDIR(), 0644) - - pisitools.insinto("/usr/bin","config/nspr-config",sym=False) - pisitools.insinto("/usr/lib/pkgconfig","config/nspr.pc",sym=False) diff --git a/system/base/nspr/files/generate-pc-config.sh b/system/base/nspr/files/generate-pc-config.sh deleted file mode 100644 index fb41397d05..0000000000 --- a/system/base/nspr/files/generate-pc-config.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -# Generate nss.pc from nss.pc.in -# Ozan Caglayan, 2010 -# -# Generate nspr.pc from nspr.pc.in -# Metin Akdere, 2012 - -LIBDIR="/usr/lib/nspr" -PREFIX="/usr" -EXEC_PREFIX="/usr" -INCLUDEDIR="/usr/include/nspr" - -PKGCONFIG="nspr/config/nspr.pc.in" - -NSPR_VERSION=`./config/nspr-config --version` -NSPR_LIBS=`./config/nspr-config --libs` -NSPR_CFLAGS=`./config/nspr-config --cflags` - -echo "NSPR_VERSION: $NSPR_VERSION" -echo "NSPR_LIBS: $NSPR_LIBS" -echo "NSPR_CFLAGS: $NSPR_CFLAGS" - -# Setup pkgconfig file -cat $PKGCONFIG | sed -e "s,%libdir%,$LIBDIR,g" \ - -e "s,%prefix%,$PREFIX,g" \ - -e "s,%exec_prefix%,$EXEC_PREFIX,g" \ - -e "s,%includedir%,$INCLUDEDIR,g" \ - -e "s,%NSPR_VERSION%,$NSPR_VERSION,g" \ - -e "s,%FULL_NSPR_LIBS%,$NSPR_LIBS,g" \ - -e "s,%FULL_NSPR_CFLAGS%,$NSPR_CFLAGS,g" \ - > config/nspr.pc - - -# Clear .in files -rm -rf $PKGCONFIG diff --git a/system/base/nspr/files/nspr.pc.in b/system/base/nspr/files/nspr.pc.in deleted file mode 100644 index 1d8f4a0cad..0000000000 --- a/system/base/nspr/files/nspr.pc.in +++ /dev/null @@ -1,10 +0,0 @@ -prefix=%prefix% -exec_prefix=%exec_prefix% -libdir=%libdir% -includedir=%includedir% - -Name: NSPR -Description: The Netscape Portable Runtime -Version: %NSPR_VERSION% -Libs: %FULL_NSPR_LIBS% -Cflags: %FULL_NSPR_CFLAGS% diff --git a/system/base/nspr/pspec.xml b/system/base/nspr/pspec.xml deleted file mode 100644 index 6c577d5a4a..0000000000 --- a/system/base/nspr/pspec.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - - nspr - http://www.mozilla.org/projects/nspr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - Netscape Portable Runtime - Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc like functions. The API is used in the Mozilla client, many of Netscape/AOL/iPlanet's and other software offerings. - ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v4.10.8/src/nspr-4.10.8.tar.gz - - nspr.pc.in - generate-pc-config.sh - - - - - nspr - - /usr/lib - - - - - nspr-devel - system.devel - Development files for nspr - - nspr - - - /usr/include - /usr/lib/pkgconfig - /usr/bin - - - - - - 2015-04-02 - 4.10.8 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-12-06 - 4.10.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-05 - 4.10.6 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-11 - 4.10.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-29 - 4.10.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-11-18 - 4.10.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-23 - 4.10.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-07-18 - 4.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-17 - 4.9.6 - v.bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-14 - 4.9.5 - New release - PisiLinux Community - admins@pisilinux.org - - - 2012-11-25 - 4.9.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - diff --git a/system/base/nspr/translations.xml b/system/base/nspr/translations.xml deleted file mode 100644 index 1f0c162da6..0000000000 --- a/system/base/nspr/translations.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - nspr - Netscape Taşınabilir Çalışma Zamanı - Netscape Taşınabilir çalışma Zamanı (NSPR) sistem seviyesindeki libc ve benzeri fonksiyonlar için platform bağımsız bir programlama arayüzü sunar. Bu arayüz, Mozilla istemcilerinde, Netscape/AOL/iPlanet'in diğer yazılımlarında kullanılmaktadır. - Netscape Portable Runtime (NSPR -- Exécutable Portable Netscape) fourni une API neutre au sens de la plate-forme pour les fonctions de niveau système ou de type libc. Cette API est utilisée au sein du client Mozilla ainsi que de nombreuses solutions logicielles de Netscape/AOL/iPlanet. - Netscape Portable Runtime (NSPR) provee un API independiente de la plataforma a nivel de sistema y funciones como libc. El API está usado en el cliente Mozilla, y muchos otros software de Netscape/AOL/iPlanet. - - - - nspr-devel - nspr için geliştirme dosyaları - - diff --git a/system/base/util-linux/actions.py b/system/base/util-linux/actions.py deleted file mode 100644 index a5384b21e0..0000000000 --- a/system/base/util-linux/actions.py +++ /dev/null @@ -1,91 +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 get -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools - -pisitools.cflags.add("-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64") -pisitools.cflags.sub("-O[\d]", "-Os") - -def setup(): - shelltools.export("SUID_CFLAGS", "-fpie") - shelltools.export("SUID_LDFLAGS", "-pie -Wl,-z,relro -Wl,-z,now") - shelltools.export("AUTOPOINT", "/bin/true") - - options = "\ - --disable-rpath \ - --disable-silent-rules \ - --disable-use-tty-group \ - --disable-su \ - --disable-last \ - --disable-mesg \ - --disable-vipw \ - --disable-wall \ - --disable-login \ - --disable-newgrp \ - --disable-nologin \ - --disable-runuser \ - --disable-sulogin \ - --disable-utmpdump \ - --disable-chfn-chsh \ - --disable-mountpoint \ - --disable-makeinstall-chown \ - --disable-socket-activation \ - " - - if get.buildTYPE() == "emul32": - options += "\ - --prefix=/emul32 \ - --bindir=/emul32/bin \ - --sbindir=/emul32/sbin \ - --libdir=/usr/lib32 \ - --without-ncurses \ - --disable-static \ - --disable-partx \ - --disable-raw \ - --disable-write \ - --disable-mount \ - --disable-fsck \ - --disable-libmount \ - --with-audit=no \ - " - else: - options += "\ - --bindir=/bin \ - --sbindir=/sbin \ - --enable-static \ - --enable-partx \ - --enable-raw \ - --enable-write \ - --enable-tunelp \ - --without-audit \ - --with-udev \ - --without-utempter \ - " - - autotools.autoreconf("-fi") - autotools.configure(options) - pisitools.dosed("libtool", "( -shared )", r" -Wl,--as-needed\1") - - # Extra fedora switches: - # --enable-login-utils will enable some utilities we ship in shadow - # --enable-kill will enable the kill utility we ship in coreutils - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - #pisitools.doman("sys-utils/klogconsole.man") - pisitools.remove("/usr/share/man/man1/kill.1") - - if get.buildTYPE() == "emul32": return - - pisitools.dodoc("ABOUT-NLS", "AUTHORS", "ChangeLog", "COPYING", "README*") - pisitools.insinto("/%s/%s" % (get.docDIR(), get.srcNAME()), "Documentation") diff --git a/system/base/util-linux/files/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch b/system/base/util-linux/files/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch deleted file mode 100644 index 01a8d441bb..0000000000 --- a/system/base/util-linux/files/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch +++ /dev/null @@ -1,98 +0,0 @@ -From 6c373810f5b1d32824371e9dff6ee5a006388f98 Mon Sep 17 00:00:00 2001 -From: Karel Zak -Date: Thu, 20 Feb 2014 16:59:11 +0100 -Subject: [PATCH] libmount: FS id and parent ID could be zero -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -It seems that linux 3.14 is able to produce things like: - - 19 0 8:3 / / rw,relatime - ext4 /dev/sda3 rw,data=ordered - ^ - -Reported-by: Mantas Mikulėnas -Signed-off-by: Karel Zak ---- - libmount/src/tab.c | 12 ++++-------- - misc-utils/findmnt.c | 5 +++-- - 2 files changed, 7 insertions(+), 10 deletions(-) - -diff --git a/libmount/src/tab.c b/libmount/src/tab.c -index 4c2f8a4..332312b 100644 ---- a/libmount/src/tab.c -+++ b/libmount/src/tab.c -@@ -505,7 +505,7 @@ int mnt_table_get_root_fs(struct libmnt_table *tb, struct libmnt_fs **root) - assert(tb); - assert(root); - -- if (!tb || !root) -+ if (!tb || !root || !is_mountinfo(tb)) - return -EINVAL; - - DBG(TAB, mnt_debug_h(tb, "lookup root fs")); -@@ -515,8 +515,6 @@ int mnt_table_get_root_fs(struct libmnt_table *tb, struct libmnt_fs **root) - mnt_reset_iter(&itr, MNT_ITER_FORWARD); - while(mnt_table_next_fs(tb, &itr, &fs) == 0) { - int id = mnt_fs_get_parent_id(fs); -- if (!id) -- break; /* @tab is not a mountinfo file? */ - - if (!*root || id < root_id) { - *root = fs; -@@ -524,7 +522,7 @@ int mnt_table_get_root_fs(struct libmnt_table *tb, struct libmnt_fs **root) - } - } - -- return root_id ? 0 : -EINVAL; -+ return *root ? 0 : -EINVAL; - } - - /** -@@ -545,15 +543,13 @@ int mnt_table_next_child_fs(struct libmnt_table *tb, struct libmnt_iter *itr, - struct libmnt_fs *fs; - int parent_id, lastchld_id = 0, chld_id = 0; - -- if (!tb || !itr || !parent) -+ if (!tb || !itr || !parent || !is_mountinfo(tb)) - return -EINVAL; - - DBG(TAB, mnt_debug_h(tb, "lookup next child of '%s'", - mnt_fs_get_target(parent))); - - parent_id = mnt_fs_get_id(parent); -- if (!parent_id) -- return -EINVAL; - - /* get ID of the previously returned child */ - if (itr->head && itr->p != itr->head) { -@@ -584,7 +580,7 @@ int mnt_table_next_child_fs(struct libmnt_table *tb, struct libmnt_iter *itr, - } - } - -- if (!chld_id) -+ if (!*chld) - return 1; /* end of iterator */ - - /* set the iterator to the @chld for the next call */ -diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c -index fb21174..988cd73 100644 ---- a/misc-utils/findmnt.c -+++ b/misc-utils/findmnt.c -@@ -822,8 +822,9 @@ static int tab_is_tree(struct libmnt_table *tb) - if (!itr) - return 0; - -- if (mnt_table_next_fs(tb, itr, &fs) == 0) -- rc = mnt_fs_get_id(fs) > 0 && mnt_fs_get_parent_id(fs) > 0; -+ rc = (mnt_table_next_fs(tb, itr, &fs) == 0 && -+ mnt_fs_is_kernel(fs) && -+ mnt_fs_get_root(fs)); - - mnt_free_iter(itr); - return rc; --- -1.9.1 - diff --git a/system/base/util-linux/files/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch b/system/base/util-linux/files/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch deleted file mode 100644 index 56191a30e7..0000000000 --- a/system/base/util-linux/files/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch +++ /dev/null @@ -1,59 +0,0 @@ -From 751c39383adaf5ff5a860516238d524b0e20f835 Mon Sep 17 00:00:00 2001 -From: Dave Reisner -Date: Wed, 2 Apr 2014 10:41:30 -0400 -Subject: [PATCH] switch_root: verify initramfs by f_type, not devno - -As of linux 3.14, the initramfs device will have both major and -minor 0, causing our paranoia check to fail. Make this version agnostic -by checking the filesystem type, rather than a device number. - -[adopted from master for backport into 2.24.x branch] - -Signed-off-by: Dave Reisner ---- - sys-utils/switch_root.c | 15 +++++++++------ - 1 file changed, 9 insertions(+), 6 deletions(-) - -diff --git a/sys-utils/switch_root.c b/sys-utils/switch_root.c -index f26f7da..40e222d 100644 ---- a/sys-utils/switch_root.c -+++ b/sys-utils/switch_root.c -@@ -23,6 +23,7 @@ - #include - #include - #include -+#include - #include - #include - #include -@@ -33,6 +34,8 @@ - #include - #include - -+#include -+ - #include "c.h" - #include "nls.h" - #include "closestream.h" -@@ -174,12 +177,12 @@ static int switchroot(const char *newroot) - if (cfd >= 0) { - pid = fork(); - if (pid <= 0) { -- if (fstat(cfd, &sb) == 0) { -- if (sb.st_dev == makedev(0, 1)) -- recursiveRemove(cfd); -- else -- warn(_("old root filesystem is not an initramfs")); -- } -+ struct statfs stfs; -+ if (fstatfs(cfd, &stfs) == 0 && -+ (stfs.f_type == RAMFS_MAGIC || stfs.f_type == TMPFS_MAGIC)) -+ recursiveRemove(cfd); -+ else -+ warn(_("old root filesystem is not an initramfs")); - - if (pid == 0) - exit(EXIT_SUCCESS); --- -1.9.1 - diff --git a/system/base/util-linux/files/move_is_mountinfo.patch b/system/base/util-linux/files/move_is_mountinfo.patch deleted file mode 100644 index ad9387efc3..0000000000 --- a/system/base/util-linux/files/move_is_mountinfo.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff --git a/libmount/src/tab.c b/libmount/src/tab.c -index 3633b6a..8ae49c8 100644 ---- a/libmount/src/tab.c -+++ b/libmount/src/tab.c -@@ -47,6 +47,20 @@ - #include "strutils.h" - #include "loopdev.h" - -+static int is_mountinfo(struct libmnt_table *tb) -+{ -+ struct libmnt_fs *fs; -+ -+ if (!tb) -+ return 0; -+ -+ fs = list_first_entry(&tb->ents, struct libmnt_fs, ents); -+ if (fs && mnt_fs_is_kernel(fs) && mnt_fs_get_root(fs)) -+ return 1; -+ -+ return 0; -+} -+ - /** - * mnt_new_table: - * -@@ -1229,20 +1335,6 @@ err: - return NULL; - } - --static int is_mountinfo(struct libmnt_table *tb) --{ -- struct libmnt_fs *fs; -- -- if (!tb) -- return 0; -- -- fs = list_first_entry(&tb->ents, struct libmnt_fs, ents); -- if (fs && mnt_fs_is_kernel(fs) && mnt_fs_get_root(fs)) -- return 1; -- -- return 0; --} -- - /** - * mnt_table_is_fs__mounted: - * @tb: /proc/self/mountinfo file diff --git a/system/base/util-linux/files/ntfs-3g.patch b/system/base/util-linux/files/ntfs-3g.patch deleted file mode 100644 index 818f0cbe09..0000000000 --- a/system/base/util-linux/files/ntfs-3g.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nuar util-linux-2.21.2.orig/libblkid/src/superblocks/ntfs.c util-linux-2.21.2/libblkid/src/superblocks/ntfs.c ---- util-linux-2.21.2.orig/libblkid/src/superblocks/ntfs.c 2012-05-24 13:22:56.000000000 +0300 -+++ util-linux-2.21.2/libblkid/src/superblocks/ntfs.c 2012-06-05 14:21:57.967967774 +0300 -@@ -160,7 +160,7 @@ - - const struct blkid_idinfo ntfs_idinfo = - { -- .name = "ntfs", -+ .name = "ntfs-3g", - .usage = BLKID_USAGE_FILESYSTEM, - .probefunc = probe_ntfs, - .magics = diff --git a/system/base/util-linux/files/upstream/util-linux-ng-2.21-login-lastlog.patch b/system/base/util-linux/files/upstream/util-linux-ng-2.21-login-lastlog.patch deleted file mode 100644 index 947a0e55c2..0000000000 --- a/system/base/util-linux/files/upstream/util-linux-ng-2.21-login-lastlog.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -up util-linux-2.21-rc1/login-utils/login.c.kzak util-linux-2.21-rc1/login-utils/login.c ---- util-linux-2.21-rc1/login-utils/login.c.kzak 2012-01-19 13:19:54.886299587 +0100 -+++ util-linux-2.21-rc1/login-utils/login.c 2012-01-19 13:20:40.853451212 +0100 -@@ -499,7 +499,7 @@ static void log_lastlog(struct login_con - if (!cxt->pwd) - return; - -- fd = open(_PATH_LASTLOG, O_RDWR, 0); -+ fd = open(_PATH_LASTLOG, O_RDWR | O_CREAT, 0); - if (fd < 0) - return; diff --git a/system/base/util-linux/pspec.xml b/system/base/util-linux/pspec.xml deleted file mode 100644 index 66f0b8a225..0000000000 --- a/system/base/util-linux/pspec.xml +++ /dev/null @@ -1,226 +0,0 @@ - - - - - util-linux - http://userweb.kernel.org/~kzak/util-linux-ng/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - Various useful Linux utilities - The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. - https://www.kernel.org/pub/linux/utils/util-linux/v2.26/util-linux-2.26.1.tar.xz - - zlib-devel - shadow - ncurses-devel - libcap-ng-devel - - - - - - upstream/util-linux-ng-2.21-login-lastlog.patch - - - - - util-linux - - libuuid - libblkid - zlib - perl - ncurses - libudev - - libcap-ng - - - /etc - /bin - /sbin - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/misc - /usr/share/getopt - /usr/share/bash-completion/completions - /usr/share/locale - /usr/include - /usr/lib - /lib - - - - - uuidd - service - app:console - util.misc - Helper daemon to guarantee uniqueness of time-based UUIDs - - libuuid - - - - /usr/bin/uuidgen - /usr/sbin/uuidd - /usr/share/man/man1/uuidgen.1 - /usr/share/man/man8/uuidd.8 - - - - - libuuid - library - A library for UUID processing - - /usr/share/man/man3/uuid* - /lib/libuuid.* - /usr/lib/libuuid.so - - - - - libuuid-devel - header - system.devel - libuuid header files - - libuuid - - - /usr/include/uuid/* - /usr/lib/pkgconfig/ - /usr/lib32/pkgconfig/uuid.pc - - - - - libblkid - library - A library for block device identifying - - libuuid - - - /usr/share/man/man3/libblkid* - /usr/share/man/man8/blkid* - /lib/libblkid.* - /usr/lib/libblkid.so - - - - - libblkid-devel - header - system.devel - libblkid header files - - libblkid - - - /usr/include/blkid/* - /usr/lib/pkgconfig/blkid.pc - /usr/lib32/pkgconfig/blkid.pc - - - - - libuuid-32bit - emul32 - 32-bit shared libraries for libuuid - emul32 - - glibc-32bit - - - /usr/lib32/libuuid.* - - - - - libblkid-32bit - emul32 - 32-bit shared libraries for libblkid - emul32 - - libblkid - libuuid-32bit - libuuid - glibc-32bit - - - /usr/lib32/libblkid.* - - - - - - 2015-04-01 - 2.26.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 2.24.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-08 - 2.24.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-20 - 2.24 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 2.22.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-26 - 2.22.2 - Release bump for rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-01-14 - 2.22.2 - New release - PisiLinux Community - admins@pisilinux.org - - - 2012-11-17 - 2.22.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - diff --git a/system/base/util-linux/translations.xml b/system/base/util-linux/translations.xml deleted file mode 100644 index 5f4eb08dc4..0000000000 --- a/system/base/util-linux/translations.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - util-linux - Çeşitli kullanışlı Linux araçları - Divers utilitaires Linux utiles. - util-linux paketi, bir Linux sisteminin işlevsel olması için gerekli olan birçok düşük seviye sistem uygulamasını içerir. - - - - libuuid - UUID üretimi için bir kitaplık - - - - libblkid - Disk tanımlama için bir kitaplık - - - - uuidd - Zaman tabanlı UUID'lerin benzersizliğini garantileyen sistem hizmeti - - - - libuuid-32bit - libuuid için 32-bit paylaşımlı kitaplıklar - - From ca642717bdbdd283c84ae91c955b5e053b652830 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 01:57:15 +0300 Subject: [PATCH 02/22] xdg-utils:moved into main repo for pisi 2.0 --- desktop/misc/xdg-utils/actions.py | 19 ++++++ .../xdg-utils/files/drop-xmlto-stuff.patch | 13 ++++ .../xdg-utils/files/enable-other-xdg.patch | 20 ++++++ desktop/misc/xdg-utils/files/gksu.patch | 42 ++++++++++++ .../misc/xdg-utils/files/xfce-detection.patch | 11 +++ desktop/misc/xdg-utils/pspec.xml | 68 +++++++++++++++++++ desktop/misc/xdg-utils/translations.xml | 8 +++ 7 files changed, 181 insertions(+) create mode 100644 desktop/misc/xdg-utils/actions.py create mode 100644 desktop/misc/xdg-utils/files/drop-xmlto-stuff.patch create mode 100644 desktop/misc/xdg-utils/files/enable-other-xdg.patch create mode 100644 desktop/misc/xdg-utils/files/gksu.patch create mode 100644 desktop/misc/xdg-utils/files/xfce-detection.patch create mode 100644 desktop/misc/xdg-utils/pspec.xml create mode 100644 desktop/misc/xdg-utils/translations.xml diff --git a/desktop/misc/xdg-utils/actions.py b/desktop/misc/xdg-utils/actions.py new file mode 100644 index 0000000000..49cd44e248 --- /dev/null +++ b/desktop/misc/xdg-utils/actions.py @@ -0,0 +1,19 @@ +#!/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.autoreconf("-vif") + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) diff --git a/desktop/misc/xdg-utils/files/drop-xmlto-stuff.patch b/desktop/misc/xdg-utils/files/drop-xmlto-stuff.patch new file mode 100644 index 0000000000..9aa060c7e4 --- /dev/null +++ b/desktop/misc/xdg-utils/files/drop-xmlto-stuff.patch @@ -0,0 +1,13 @@ +Index: xdg-utils-1.0.2.20100618/scripts/Makefile.in +=================================================================== +--- xdg-utils-1.0.2.20100618.orig/scripts/Makefile.in ++++ xdg-utils-1.0.2.20100618/scripts/Makefile.in +@@ -5,7 +5,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(IN + INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS) + INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS) + INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS) +-XMLTO = @XMLTO@ ++XMLTO = @XMLTO@ --skip-validation + + prefix = @prefix@ + exec_prefix = @exec_prefix@ diff --git a/desktop/misc/xdg-utils/files/enable-other-xdg.patch b/desktop/misc/xdg-utils/files/enable-other-xdg.patch new file mode 100644 index 0000000000..a020b2c923 --- /dev/null +++ b/desktop/misc/xdg-utils/files/enable-other-xdg.patch @@ -0,0 +1,20 @@ +diff -Nur xdg-utils-1.0.2.20100618-old//scripts/Makefile.in xdg-utils-1.0.2.20100618//scripts/Makefile.in +--- xdg-utils-1.0.2.20100618-old//scripts/Makefile.in 2010-10-27 10:39:56.381000014 +0300 ++++ xdg-utils-1.0.2.20100618//scripts/Makefile.in 2010-10-27 10:41:44.799000093 +0300 +@@ -20,11 +20,11 @@ + xdg-open \ + xdg-email \ + xdg-screensaver \ +- xdg-settings +-# xdg-su +-# xdg-copy \ +-# xdg-file-dialog +-# xdg-terminal ++ xdg-settings \ ++ xdg-su \ ++ xdg-copy \ ++ xdg-file-dialog \ ++ xdg-terminal + + MANPAGES= $(SCRIPTS:%=man/%.1) + WEBPAGES= $(SCRIPTS:%=%.html) diff --git a/desktop/misc/xdg-utils/files/gksu.patch b/desktop/misc/xdg-utils/files/gksu.patch new file mode 100644 index 0000000000..2f55acb754 --- /dev/null +++ b/desktop/misc/xdg-utils/files/gksu.patch @@ -0,0 +1,42 @@ +Index: xdg-utils-1.0.2/scripts/xdg-su +=================================================================== +--- xdg-utils-1.0.2.orig/scripts/xdg-su ++++ xdg-utils-1.0.2/scripts/xdg-su +@@ -351,6 +351,26 @@ su_gnome() + exit_failure_operation_failed + fi + else ++ su_gk ++ fi ++} ++ ++su_gk() ++{ ++ GKSU=`which gksu 2>/dev/null` ++ if [ $? -eq 0 ] ; then ++ if [ -z "$user" ] ; then ++ $GKSU "$cmd" ++ else ++ $GKSU -u "$user" "$cmd" ++ fi ++ ++ if [ $? -eq 0 ]; then ++ exit_success ++ else ++ exit_failure_operation_failed ++ fi ++ else + su_generic + fi + } +@@ -427,6 +447,10 @@ case "$DE" in + su_gnome + ;; + ++ xfce) ++ su_gk ++ ;; ++ + generic) + su_generic + ;; diff --git a/desktop/misc/xdg-utils/files/xfce-detection.patch b/desktop/misc/xdg-utils/files/xfce-detection.patch new file mode 100644 index 0000000000..06445bf86c --- /dev/null +++ b/desktop/misc/xdg-utils/files/xfce-detection.patch @@ -0,0 +1,11 @@ +--- scripts/xdg-utils-common.in.OSmanOS 2012-10-08 18:26:46.000000000 +0300 ++++ scripts/xdg-utils-common.in 2013-04-05 18:22:55.816631216 +0300 +@@ -280,7 +280,7 @@ + elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome; + elif [ x"$MATE_DESKTOP_SESSION_ID" != x"" ]; then DE=mate; + elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome; +- elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce; ++ elif xprop -root | grep -qw XFCE_DESKTOP_WINDOW 2>&1; then DE=xfce; + elif xprop -root 2> /dev/null | grep -i '^xfce_desktop_window' >/dev/null 2>&1; then DE=xfce + fi + fi diff --git a/desktop/misc/xdg-utils/pspec.xml b/desktop/misc/xdg-utils/pspec.xml new file mode 100644 index 0000000000..a2d2b94b74 --- /dev/null +++ b/desktop/misc/xdg-utils/pspec.xml @@ -0,0 +1,68 @@ + + + + + xdg-utils + http://portland.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + Common desktop utilities + Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. + http://source.pisilinux.org/1.0/xdg-utils.tar.xz + + xmlto + docbook-xsl + lynx + + + + enable-other-xdg.patch + xfce-detection.patch + + drop-xmlto-stuff.patch + + + + + xdg-utils + + /usr/bin + /usr/share/man + + + + + + 2014-02-16 + 1.1.0_20140207 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-23 + 20131006 + Release bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 1.1.0_rc1 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-05 + 1.1.0_rc1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + \ No newline at end of file diff --git a/desktop/misc/xdg-utils/translations.xml b/desktop/misc/xdg-utils/translations.xml new file mode 100644 index 0000000000..21bf42fa08 --- /dev/null +++ b/desktop/misc/xdg-utils/translations.xml @@ -0,0 +1,8 @@ + + + + xdg-utils + Ortak masaüstü komutları + Utilitaires de bureaux communs. + + From 8aca2fdf52d40d84f851c72d898757be857c9c88 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 01:58:13 +0300 Subject: [PATCH 03/22] atk:moved into main repo for pisi 2.0 --- desktop/toolkit/gtk/atk/actions.py | 26 +++++ desktop/toolkit/gtk/atk/pspec.xml | 121 +++++++++++++++++++++++ desktop/toolkit/gtk/atk/translations.xml | 19 ++++ 3 files changed, 166 insertions(+) create mode 100644 desktop/toolkit/gtk/atk/actions.py create mode 100644 desktop/toolkit/gtk/atk/pspec.xml create mode 100644 desktop/toolkit/gtk/atk/translations.xml diff --git a/desktop/toolkit/gtk/atk/actions.py b/desktop/toolkit/gtk/atk/actions.py new file mode 100644 index 0000000000..ec9ba2d284 --- /dev/null +++ b/desktop/toolkit/gtk/atk/actions.py @@ -0,0 +1,26 @@ +#!/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + pisitools.dosed(".", "^(SUBDIRS =.*)tests(.*)$", "\\1\\2", filePattern="^Makefile.(am|in)", level=0) + autotools.autoreconf("-fiv") + autotools.configure("\ + --disable-static \ + --enable-introspection=%s \ + " % ("no" if get.buildTYPE() == "emul32" else "yes")) + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.removeDir("/usr/share/gtk-doc") + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/desktop/toolkit/gtk/atk/pspec.xml b/desktop/toolkit/gtk/atk/pspec.xml new file mode 100644 index 0000000000..b2ea252763 --- /dev/null +++ b/desktop/toolkit/gtk/atk/pspec.xml @@ -0,0 +1,121 @@ + + + + + atk + http://developer.gnome.org/atk + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + GTK+ and GNOME Accessibility Toolkit + These libraries provide tools for making software for people with disabilities. + mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz + + gobject-introspection-devel + gnome-common + + + + + atk + + /usr/lib/libatk* + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/doc + + + + + atk-devel + Development files for atk + + atk + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + atk-32bit + emul32 + 32-bit shared libraries for atk + emul32 + + glib2-32bit + + + atk + glib2-32bit + + + /usr/lib32 + + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.12.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.12.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-21 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.7.91 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/desktop/toolkit/gtk/atk/translations.xml b/desktop/toolkit/gtk/atk/translations.xml new file mode 100644 index 0000000000..1c5014a9a5 --- /dev/null +++ b/desktop/toolkit/gtk/atk/translations.xml @@ -0,0 +1,19 @@ + + + + atk + GTK+ ve GNOME erişilebilirlik kitaplığı + Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. + Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. + + + + atk-devel + atk için geliştirme dosyaları + + + + atk-32bit + atk için 32-bit paylaşımlı kitaplıklar + + From a84b0532871101b96980b67946143017d049cd68 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 01:58:47 +0300 Subject: [PATCH 04/22] gdk-pixbuf:moved into main repo for pisi 2.0 --- desktop/toolkit/gtk/gdk-pixbuf/actions.py | 43 +++++ .../gtk/gdk-pixbuf/comar/pakhandler-32.py | 23 +++ .../gtk/gdk-pixbuf/comar/pakhandler.py | 23 +++ desktop/toolkit/gtk/gdk-pixbuf/pspec.xml | 177 ++++++++++++++++++ .../toolkit/gtk/gdk-pixbuf/translations.xml | 23 +++ 5 files changed, 289 insertions(+) create mode 100644 desktop/toolkit/gtk/gdk-pixbuf/actions.py create mode 100644 desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py create mode 100644 desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py create mode 100644 desktop/toolkit/gtk/gdk-pixbuf/pspec.xml create mode 100644 desktop/toolkit/gtk/gdk-pixbuf/translations.xml diff --git a/desktop/toolkit/gtk/gdk-pixbuf/actions.py b/desktop/toolkit/gtk/gdk-pixbuf/actions.py new file mode 100644 index 0000000000..bc00299dba --- /dev/null +++ b/desktop/toolkit/gtk/gdk-pixbuf/actions.py @@ -0,0 +1,43 @@ +#!/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + options = "\ + --disable-static \ + --disable-silent-rules \ + --with-libjasper \ + --with-x11 \ + --with-included-loaders=png \ + " + + options += "\ + --bindir=/_emul32/bin \ + --disable-introspection \ + " if get.buildTYPE() == "emul32" else \ + "\ + --enable-introspection \ + " + autotools.configure(options) + + 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()) + if get.buildTYPE() == "emul32": + pisitools.domove("/_emul32/bin/gdk-pixbuf-query-loaders", "/usr/bin", "gdk-pixbuf-query-loaders-32") + pisitools.removeDir("/_emul32") + return + pisitools.dosym("/usr/bin/gdk-pixbuf-query-loaders", "/usr/bin/gdk-pixbuf-query-loaders-64") + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") diff --git a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py new file mode 100644 index 0000000000..6edaa81706 --- /dev/null +++ b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +import piksemel +import os + +def updateData(filepath): + parse = piksemel.parse(filepath) + + for icon in parse.tags("File"): + path = icon.getTagData("Path") + if path.startswith("usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders"): + os.system("/usr/bin/gdk-pixbuf-query-loaders-32 --update-cache") + return + +def setupPackage(metapath, filepath): + updateData(filepath) + +def cleanupPackage(metapath, filepath): + pass + +def postCleanupPackage(metapath, filepath): + updateData(filepath) diff --git a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py new file mode 100644 index 0000000000..0e2637d6b0 --- /dev/null +++ b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +import piksemel +import os + +def updateData(filepath): + parse = piksemel.parse(filepath) + + for icon in parse.tags("File"): + path = icon.getTagData("Path") + if path.startswith("usr/lib/gdk-pixbuf-2.0/2.10.0/loaders"): + os.system("/usr/bin/gdk-pixbuf-query-loaders --update-cache") + return + +def setupPackage(metapath, filepath): + updateData(filepath) + +def cleanupPackage(metapath, filepath): + pass + +def postCleanupPackage(metapath, filepath): + updateData(filepath) diff --git a/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml b/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml new file mode 100644 index 0000000000..3ae3292f1d --- /dev/null +++ b/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml @@ -0,0 +1,177 @@ + + + + + gdk-pixbuf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + GDK pixbuf library + gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications + mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.3.tar.xz + + gtk-doc + glib2-devel + libX11-devel + tiff-devel + libjpeg-turbo-devel + libpng-devel + jasper-devel + gobject-introspection-devel + + + + + gdk-pixbuf + + tiff + jasper + libjpeg-turbo + > + + /etc + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + System.PackageHandler + + + + + gdk-pixbuf-devel + Development files for gdk-pixbuf + + gdk-pixbuf + libpng-devel + + + /usr/bin/gdk-pixbuf-csource + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/gir-1.0 + + + + + gdk-pixbuf-docs + Reference documents for gdk-pixbuf + + /usr/share/gtk-doc + + + + + gdk-pixbuf-32bit + emul32 + 32-bit shared libraries for gdk-pixbuf + emul32 + + tiff-32bit + libjpeg-turbo-32bit + glib2-32bit + libX11-32bit + libpng-32bit + jasper-32bit + libX11-32bit + + + gdk-pixbuf + tiff-32bit + glib2-32bit + libpng-32bit + libX11-32bit + jasper-32bit + libjpeg-turbo-32bit + + + /usr/bin/gdk-pixbuf-query-loaders-32 + /usr/lib32 + + + System.PackageHandler + + + + + + 2015-04-27 + 2.31.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.30.7 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.30.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.30.0 + Add missing method and fix pakhandler.py + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-05 + 2.28.2 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 2.28.2 + Fix build emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-11 + 2.28.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.28.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.27.1 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-11-25 + 2.26.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + diff --git a/desktop/toolkit/gtk/gdk-pixbuf/translations.xml b/desktop/toolkit/gtk/gdk-pixbuf/translations.xml new file mode 100644 index 0000000000..b2815ba5ad --- /dev/null +++ b/desktop/toolkit/gtk/gdk-pixbuf/translations.xml @@ -0,0 +1,23 @@ + + + + gdk-pixbuf + GDK pixbuf kitaplığı + gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. + + + + gdk-pixbuf-devel + gdk-pixbuf için geliştirme dosyaları + + + + gdk-pixbuf-docs + gdk-pixbuf için başvuru belgeleri + + + + gdk-pixbuf-32bit + gdk-pixbuf için 32-bit paylaşımlı kitaplıklar + + From cd16450b2a36ff126f9e6fd1500aff12db070cec Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:12:15 +0300 Subject: [PATCH 05/22] aalib:moved into main repo for pisi 2.0 --- multimedia/graphics/aalib/actions.py | 26 ++++++++ multimedia/graphics/aalib/files/m4.patch | 9 +++ multimedia/graphics/aalib/pspec.xml | 74 ++++++++++++++++++++++ multimedia/graphics/aalib/translations.xml | 15 +++++ 4 files changed, 124 insertions(+) create mode 100644 multimedia/graphics/aalib/actions.py create mode 100644 multimedia/graphics/aalib/files/m4.patch create mode 100644 multimedia/graphics/aalib/pspec.xml create mode 100644 multimedia/graphics/aalib/translations.xml diff --git a/multimedia/graphics/aalib/actions.py b/multimedia/graphics/aalib/actions.py new file mode 100644 index 0000000000..06996f8d14 --- /dev/null +++ b/multimedia/graphics/aalib/actions.py @@ -0,0 +1,26 @@ +#!/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.autoreconf("-vfi") + + autotools.configure("--with-slang-driver \ + --with-x11-driver \ + --disable-static") + +def build(): + autotools.make("CC=%s" % get.CC()) + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("ChangeLog", "AUTHORS", "NEWS", "README*", "COPYING", "ANNOUNCE") + diff --git a/multimedia/graphics/aalib/files/m4.patch b/multimedia/graphics/aalib/files/m4.patch new file mode 100644 index 0000000000..3670f19125 --- /dev/null +++ b/multimedia/graphics/aalib/files/m4.patch @@ -0,0 +1,9 @@ +Get rid of aclocal warning: +/usr/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB +--- aalib-1.4.0/aalib.m4 ++++ aalib-1.4.0/aalib.m4 +@@ -11,3 +11,3 @@ + dnl +-AC_DEFUN(AM_PATH_AALIB, ++AC_DEFUN([AM_PATH_AALIB], + [dnl diff --git a/multimedia/graphics/aalib/pspec.xml b/multimedia/graphics/aalib/pspec.xml new file mode 100644 index 0000000000..afa8e0b324 --- /dev/null +++ b/multimedia/graphics/aalib/pspec.xml @@ -0,0 +1,74 @@ + + + + + aalib + http://aa-project.sourceforge.net/aalib/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + An ASCII-graphics Library + Aalib is an ASCII-graphics library generating ASCII character outputs. + mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz + + gpm + + + m4.patch + + + + + aalib + + gpm + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + + aalib-devel + Development files for aalib + + aalib + + + /usr/share/aclocal + /usr/include + /usr/share/man/man3 + + + + + + 2014-05-20 + 1.4_rc5 + Rebuild, cleanup, fix gpm linking. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-16 + 1.4_rc5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-12-20 + 1.4_rc5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/multimedia/graphics/aalib/translations.xml b/multimedia/graphics/aalib/translations.xml new file mode 100644 index 0000000000..27fac646de --- /dev/null +++ b/multimedia/graphics/aalib/translations.xml @@ -0,0 +1,15 @@ + + + + aalib + Bir ASCII-grafik Kitaplığı + AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. + Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. + Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. + + + + aalib-devel + aalib için geliştirme dosyaları + + From 6d8ec22557c9048307edb51afc667385fd4cbe29 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:12:55 +0300 Subject: [PATCH 06/22] babl:moved into main repo for pisi 2.0 --- multimedia/graphics/babl/actions.py | 21 +++++++ multimedia/graphics/babl/pspec.xml | 74 +++++++++++++++++++++++ multimedia/graphics/babl/translations.xml | 13 ++++ 3 files changed, 108 insertions(+) create mode 100644 multimedia/graphics/babl/actions.py create mode 100644 multimedia/graphics/babl/pspec.xml create mode 100644 multimedia/graphics/babl/translations.xml diff --git a/multimedia/graphics/babl/actions.py b/multimedia/graphics/babl/actions.py new file mode 100644 index 0000000000..1453027ac4 --- /dev/null +++ b/multimedia/graphics/babl/actions.py @@ -0,0 +1,21 @@ +#!/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 + +def setup(): + autotools.configure("--enable-mmx \ + --enable-sse \ + --disable-altivec") + +def build(): + autotools.make() + +def install(): + autotools.install() + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/multimedia/graphics/babl/pspec.xml b/multimedia/graphics/babl/pspec.xml new file mode 100644 index 0000000000..d5204d1f4e --- /dev/null +++ b/multimedia/graphics/babl/pspec.xml @@ -0,0 +1,74 @@ + + + + + babl + http://gegl.org/babl + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + A dynamic, any to any, pixel format translation library + babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. + http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2 + + + librsvg + + + + + babl + + /usr/lib + /usr/share/doc + + + + + babl-devel + Development files for babl + + babl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + + 2015-02-07 + 0.1.12 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-19 + 0.1.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-18 + 0.1.10 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-28 + 0.1.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/multimedia/graphics/babl/translations.xml b/multimedia/graphics/babl/translations.xml new file mode 100644 index 0000000000..5708fcdbea --- /dev/null +++ b/multimedia/graphics/babl/translations.xml @@ -0,0 +1,13 @@ + + + + babl + Dinamik piksel biçimi dönüştürme kütüphanesi + babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. + + + + babl-devel + babl için geliştirme dosyaları + + From f6ebe1e30adfe2e0fc071f956c7a31ddf3664978 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:13:26 +0300 Subject: [PATCH 07/22] gegl:moved into main repo for pisi 2.0 --- multimedia/graphics/gegl/actions.py | 59 +++++++ .../gegl-0.2.0-cve-2012-4433-1e92e523.patch | 68 +++++++++ .../gegl-0.2.0-cve-2012-4433-4757cdf7.patch | 70 +++++++++ .../gegl/files/gegl-0.2.0-ffmpeg-0.11.patch | 11 ++ multimedia/graphics/gegl/pspec.xml | 144 ++++++++++++++++++ multimedia/graphics/gegl/translations.xml | 13 ++ 6 files changed, 365 insertions(+) create mode 100644 multimedia/graphics/gegl/actions.py create mode 100644 multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-1e92e523.patch create mode 100644 multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-4757cdf7.patch create mode 100644 multimedia/graphics/gegl/files/gegl-0.2.0-ffmpeg-0.11.patch create mode 100644 multimedia/graphics/gegl/pspec.xml create mode 100644 multimedia/graphics/gegl/translations.xml diff --git a/multimedia/graphics/gegl/actions.py b/multimedia/graphics/gegl/actions.py new file mode 100644 index 0000000000..4a645c3146 --- /dev/null +++ b/multimedia/graphics/gegl/actions.py @@ -0,0 +1,59 @@ +#!/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 shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.autoreconf("-fi") + autotools.configure("--enable-mmx \ + --enable-sse \ + --includedir=/usr/include \ + --datadir=/usr/share \ + --with-pic \ + --with-gio \ + --with-gtk \ + --with-cairo \ + --with-pango \ + --with-pangocairo \ + --with-gdk-pixbuf \ + --with-lensfun \ + --with-libjpeg \ + --with-libpng \ + --with-librsvg \ + --with-openexr \ + --with-sdl \ + --with-libopenraw \ + --with-jasper \ + --with-graphviz \ + --with-lua \ + --without-libavformat \ + --with-libv4l \ + --with-libspiro \ + --with-exiv2 \ + --with-umfpack \ + --disable-static \ + --disable-gtk-doc \ + --enable-gtk-doc-html=no \ + --disable-docs \ + --disable-workshop") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +# disabled due sandbox violations +#def check(): +# autotools.make("check") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "COPYING.LESSER", "NEWS", "README") + diff --git a/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-1e92e523.patch b/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-1e92e523.patch new file mode 100644 index 0000000000..0babb0f41c --- /dev/null +++ b/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-1e92e523.patch @@ -0,0 +1,68 @@ +From 1e92e5235ded0415d555aa86066b8e4041ee5a53 Mon Sep 17 00:00:00 2001 +From: Nils Philippsen +Date: Tue, 16 Oct 2012 14:58:27 +0000 +Subject: ppm-load: CVE-2012-4433: don't overflow memory allocation + +Carefully selected width/height values could cause the size of a later +allocation to overflow, resulting in a buffer much too small to store +the data which would then written beyond its end. +--- +diff --git a/operations/external/ppm-load.c b/operations/external/ppm-load.c +index efe6d56..3d6bce7 100644 +--- a/operations/external/ppm-load.c ++++ b/operations/external/ppm-load.c +@@ -84,7 +84,6 @@ ppm_load_read_header(FILE *fp, + /* Get Width and Height */ + img->width = strtol (header,&ptr,0); + img->height = atoi (ptr); +- img->numsamples = img->width * img->height * CHANNEL_COUNT; + + fgets (header,MAX_CHARS_IN_ROW,fp); + maxval = strtol (header,&ptr,0); +@@ -109,6 +108,16 @@ ppm_load_read_header(FILE *fp, + g_warning ("%s: Programmer stupidity error", G_STRLOC); + } + ++ /* Later on, img->numsamples is multiplied with img->bpc to allocate ++ * memory. Ensure it doesn't overflow. */ ++ if (!img->width || !img->height || ++ G_MAXSIZE / img->width / img->height / CHANNEL_COUNT < img->bpc) ++ { ++ g_warning ("Illegal width/height: %ld/%ld", img->width, img->height); ++ return FALSE; ++ } ++ img->numsamples = img->width * img->height * CHANNEL_COUNT; ++ + return TRUE; + } + +@@ -229,12 +238,24 @@ process (GeglOperation *operation, + if (!ppm_load_read_header (fp, &img)) + goto out; + +- rect.height = img.height; +- rect.width = img.width; +- + /* Allocating Array Size */ ++ ++ /* Should use g_try_malloc(), but this causes crashes elsewhere because the ++ * error signalled by returning FALSE isn't properly acted upon. Therefore ++ * g_malloc() is used here which aborts if the requested memory size can't be ++ * allocated causing a controlled crash. */ + img.data = (guchar*) g_malloc (img.numsamples * img.bpc); + ++ /* No-op without g_try_malloc(), see above. */ ++ if (! img.data) ++ { ++ g_warning ("Couldn't allocate %" G_GSIZE_FORMAT " bytes, giving up.", ((gsize)img.numsamples * img.bpc)); ++ goto out; ++ } ++ ++ rect.height = img.height; ++ rect.width = img.width; ++ + switch (img.bpc) + { + case 1: +-- +cgit v0.9.0.2 diff --git a/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-4757cdf7.patch b/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-4757cdf7.patch new file mode 100644 index 0000000000..f78557f577 --- /dev/null +++ b/multimedia/graphics/gegl/files/gegl-0.2.0-cve-2012-4433-4757cdf7.patch @@ -0,0 +1,70 @@ +From 4757cdf73d3675478d645a3ec8250ba02168a230 Mon Sep 17 00:00:00 2001 +From: Nils Philippsen +Date: Tue, 16 Oct 2012 14:56:40 +0000 +Subject: ppm-load: CVE-2012-4433: add plausibility checks for header fields + +Refuse values that are non-decimal, negative or overflow the target +type. +--- +diff --git a/operations/external/ppm-load.c b/operations/external/ppm-load.c +index 3d6bce7..465096d 100644 +--- a/operations/external/ppm-load.c ++++ b/operations/external/ppm-load.c +@@ -36,6 +36,7 @@ gegl_chant_file_path (path, _("File"), "", _("Path of file to load.")) + #include "gegl-chant.h" + #include + #include ++#include + + typedef enum { + PIXMAP_ASCII = 51, +@@ -44,8 +45,8 @@ typedef enum { + + typedef struct { + map_type type; +- gint width; +- gint height; ++ glong width; ++ glong height; + gsize numsamples; /* width * height * channels */ + gsize bpc; /* bytes per channel */ + guchar *data; +@@ -82,11 +83,33 @@ ppm_load_read_header(FILE *fp, + } + + /* Get Width and Height */ +- img->width = strtol (header,&ptr,0); +- img->height = atoi (ptr); ++ errno = 0; ++ img->width = strtol (header,&ptr,10); ++ if (errno) ++ { ++ g_warning ("Error reading width: %s", strerror(errno)); ++ return FALSE; ++ } ++ else if (img->width < 0) ++ { ++ g_warning ("Error: width is negative"); ++ return FALSE; ++ } ++ ++ img->height = strtol (ptr,&ptr,10); ++ if (errno) ++ { ++ g_warning ("Error reading height: %s", strerror(errno)); ++ return FALSE; ++ } ++ else if (img->width < 0) ++ { ++ g_warning ("Error: height is negative"); ++ return FALSE; ++ } + + fgets (header,MAX_CHARS_IN_ROW,fp); +- maxval = strtol (header,&ptr,0); ++ maxval = strtol (header,&ptr,10); + + if ((maxval != 255) && (maxval != 65535)) + { +-- +cgit v0.9.0.2 diff --git a/multimedia/graphics/gegl/files/gegl-0.2.0-ffmpeg-0.11.patch b/multimedia/graphics/gegl/files/gegl-0.2.0-ffmpeg-0.11.patch new file mode 100644 index 0000000000..d68444d5ff --- /dev/null +++ b/multimedia/graphics/gegl/files/gegl-0.2.0-ffmpeg-0.11.patch @@ -0,0 +1,11 @@ +--- operations/external/ff-load.c.orig 2012-04-01 13:17:57.000000000 +0200 ++++ operations/external/ff-load.c 2012-07-11 12:42:05.174756560 +0200 +@@ -271,7 +271,7 @@ + gint err; + + ff_cleanup (o); +- err = av_open_input_file (&p->ic, o->path, NULL, 0, NULL); ++err = avformat_open_input (&p->ic, o->path, NULL, NULL); + if (err < 0) + { + print_error (o->path, err); diff --git a/multimedia/graphics/gegl/pspec.xml b/multimedia/graphics/gegl/pspec.xml new file mode 100644 index 0000000000..7271a1c16b --- /dev/null +++ b/multimedia/graphics/gegl/pspec.xml @@ -0,0 +1,144 @@ + + + + + gegl + http://gegl.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + LGPLv3+ + library + app:console + A graph based image processing framework + gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. + http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 + + SuiteSparse-devel + libopenraw-devel + libspiro-devel + librsvg-devel + openexr-devel + ffmpeg-devel + libsdl-devel + libv4l-devel + jasper-devel + cairo-devel + pango-devel + exiv2-devel + babl-devel + libjpeg-turbo-devel + gtk2-devel + lua-devel + asciidoc + graphviz + enscript + ruby + ilmbase-devel + + + gegl-0.2.0-cve-2012-4433-1e92e523.patch + gegl-0.2.0-cve-2012-4433-4757cdf7.patch + gegl-0.2.0-ffmpeg-0.11.patch + + + + + gegl + + openexr-libs + SuiteSparse + gdk-pixbuf + libopenraw + libspiro + graphviz + librsvg + ffmpeg + jasper + libsdl + libv4l + cairo + pango + ruby + babl + libjpeg-turbo + gtk2 + lua + ilmbase + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale/ + + + + + gegl-devel + Development files for gegl + + gegl + babl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc/html + + + + + + 2014-12-20 + 0.2.0 + Rebuild for lua + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 0.2.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-31 + 0.2.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-29 + 0.2.0 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-08-23 + 0.2.0 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-20 + 0.2.0 + Configure parameter fixed + Ertan Güven + ertan@pisilinux.org + + + 2012-12-08 + 0.2.0 + First release + marcin bojara + marcin@pisilinux.org + + + diff --git a/multimedia/graphics/gegl/translations.xml b/multimedia/graphics/gegl/translations.xml new file mode 100644 index 0000000000..29e023a772 --- /dev/null +++ b/multimedia/graphics/gegl/translations.xml @@ -0,0 +1,13 @@ + + + + gegl + Graf tabanlı resim işleme altyapısı + gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. + + + + gegl-devel + gegl için geliştirme dosyaları + + From 60ef02b1cf0db99676a03aeaefa0f4bcfee16a89 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:14:34 +0300 Subject: [PATCH 08/22] gimp: moved into main repo for pisi 2.0 --- multimedia/graphics/gimp/addon/component.xml | 3 +++ multimedia/graphics/gimp/component.xml | 3 +++ multimedia/graphics/gimp/l10n/component.xml | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 multimedia/graphics/gimp/addon/component.xml create mode 100644 multimedia/graphics/gimp/component.xml create mode 100644 multimedia/graphics/gimp/l10n/component.xml diff --git a/multimedia/graphics/gimp/addon/component.xml b/multimedia/graphics/gimp/addon/component.xml new file mode 100644 index 0000000000..88d46201c5 --- /dev/null +++ b/multimedia/graphics/gimp/addon/component.xml @@ -0,0 +1,3 @@ + + multimedia.graphics.gimp.addon + diff --git a/multimedia/graphics/gimp/component.xml b/multimedia/graphics/gimp/component.xml new file mode 100644 index 0000000000..ac1ec9f9b8 --- /dev/null +++ b/multimedia/graphics/gimp/component.xml @@ -0,0 +1,3 @@ + + multimedia.graphics.gimp + diff --git a/multimedia/graphics/gimp/l10n/component.xml b/multimedia/graphics/gimp/l10n/component.xml new file mode 100644 index 0000000000..b941842b8e --- /dev/null +++ b/multimedia/graphics/gimp/l10n/component.xml @@ -0,0 +1,3 @@ + + multimedia.graphics.gimp.l10n + From 172318a0d10a16e21fbf1cbe22622a9a65522cf9 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:15:01 +0300 Subject: [PATCH 09/22] lcms:moved into main repo for pisi 2.0 --- multimedia/graphics/lcms/actions.py | 42 +++++++++ .../graphics/lcms/files/CVE-2009-0793.patch | 22 +++++ multimedia/graphics/lcms/pspec.xml | 91 +++++++++++++++++++ multimedia/graphics/lcms/translations.xml | 18 ++++ 4 files changed, 173 insertions(+) create mode 100644 multimedia/graphics/lcms/actions.py create mode 100644 multimedia/graphics/lcms/files/CVE-2009-0793.patch create mode 100644 multimedia/graphics/lcms/pspec.xml create mode 100644 multimedia/graphics/lcms/translations.xml diff --git a/multimedia/graphics/lcms/actions.py b/multimedia/graphics/lcms/actions.py new file mode 100644 index 0000000000..d3d79f9756 --- /dev/null +++ b/multimedia/graphics/lcms/actions.py @@ -0,0 +1,42 @@ +#!/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(): + #needed by mozilla patch + autotools.autoreconf("-vfi") + options = "--disable-dependency-tracking \ + --disable-static \ + --with-jpeg \ + --with-tiff \ + --with-zlib \ + --with-python" + + if get.buildTYPE() == "emul32": + options += " --without-python" + + autotools.configure(options) + +def build(): + #needed by mozilla patch, swig must be run again + shelltools.cd("python") + shelltools.system("./swig_lcms") + shelltools.cd("..") + + autotools.make() + +def install(): + autotools.rawInstall('DESTDIR=%s \ + BINDIR=%s/usr/bin \ + includedir=/usr/include' % (get.installDIR(), get.installDIR())) + + pisitools.insinto("/usr/share/lcms/profiles", "testbed/*.icm") + + pisitools.dodoc("AUTHORS", "README*", "NEWS", "doc/*") diff --git a/multimedia/graphics/lcms/files/CVE-2009-0793.patch b/multimedia/graphics/lcms/files/CVE-2009-0793.patch new file mode 100644 index 0000000000..d147b93c86 --- /dev/null +++ b/multimedia/graphics/lcms/files/CVE-2009-0793.patch @@ -0,0 +1,22 @@ +--- src/cmsxform.c~ 2009-03-26 17:53:27.000000000 +0000 ++++ src/cmsxform.c 2009-03-26 18:31:41.000000000 +0000 +@@ -689,6 +689,9 @@ + GrayTRC = cmsReadICCGamma(hProfile, icSigGrayTRCTag); + FromLstarToXYZ(GrayTRC, Shapes1); + ++ if (GrayTRC == NULL) ++ return NULL; ++ + // Reversing must be done after curve translation + + Shapes[0] = cmsReverseGamma(Shapes1[0]->nEntries, Shapes1[0]); +@@ -704,6 +707,9 @@ + + GrayTRC = cmsReadICCGammaReversed(hProfile, icSigGrayTRCTag); // Y + ++ if (GrayTRC == NULL) ++ return NULL; ++ + Shapes[0] = cmsDupGamma(GrayTRC); + Shapes[1] = cmsDupGamma(GrayTRC); + Shapes[2] = cmsDupGamma(GrayTRC); diff --git a/multimedia/graphics/lcms/pspec.xml b/multimedia/graphics/lcms/pspec.xml new file mode 100644 index 0000000000..5c6a481351 --- /dev/null +++ b/multimedia/graphics/lcms/pspec.xml @@ -0,0 +1,91 @@ + + + + + lcms + http://www.littlecms.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + A lightweight, speed optimized color management engine + LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. + + mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz + + tiff-devel + libjpeg-turbo-devel + + + CVE-2009-0793.patch + + + + + lcms + + tiff + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/lcms + /usr/share/doc + /usr/share/man + + + + + lcms-devel + + lcms + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + + lcms-32bit + emul32 + 32-bit shared libraries for lcms + emul32 + + tiff-32bit + libjpeg-turbo-32bit + + + lcms + tiff-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + + 2014-05-19 + 1.19 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2011-05-04 + 1.19 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/multimedia/graphics/lcms/translations.xml b/multimedia/graphics/lcms/translations.xml new file mode 100644 index 0000000000..09f1798698 --- /dev/null +++ b/multimedia/graphics/lcms/translations.xml @@ -0,0 +1,18 @@ + + + + lcms + Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru + Moteur de gestion de couleurs léger et optimisé pour la vitesse. + + + + lcms-devel + lcms için geliştirme dosyaları + + + + lcms-32bit + lcms için 32-bit paylaşımlı kitaplıklar + + From ea0b76966b09f539d3b90cc6976d3820a24a0183 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:15:26 +0300 Subject: [PATCH 10/22] libwmf:moved into main repo for pisi 2.0 --- multimedia/graphics/libwmf/actions.py | 46 +++++++++++++ multimedia/graphics/libwmf/pspec.xml | 72 +++++++++++++++++++++ multimedia/graphics/libwmf/translations.xml | 14 ++++ 3 files changed, 132 insertions(+) create mode 100644 multimedia/graphics/libwmf/actions.py create mode 100644 multimedia/graphics/libwmf/pspec.xml create mode 100644 multimedia/graphics/libwmf/translations.xml diff --git a/multimedia/graphics/libwmf/actions.py b/multimedia/graphics/libwmf/actions.py new file mode 100644 index 0000000000..75d26c2a46 --- /dev/null +++ b/multimedia/graphics/libwmf/actions.py @@ -0,0 +1,46 @@ +#!/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 get +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import autotools + +def setup(): + shelltools.unlink("configure.ac") + shelltools.sym("patches/acconfig.h", "acconfig.h") + + autotools.autoreconf("-fi") + pisitools.dosed("src/Makefile.in", "@LIBWMF_GDK_PIXBUF_TRUE@", "#") + autotools.configure("--without-expat \ + --with-libxml2 \ + --with-jpeg \ + --with-x \ + --with-gsfontdir=/usr/share/fonts/default/ghostscript \ + --with-fontdir=/usr/share/libwmf/fonts \ + --with-docdir=/usr/share/doc/%s \ + --disable-static" % get.srcNAME() ) +def build(): + autotools.make("LIBTOOL=/usr/bin/libtool") + +def install(): + pisitools.dosed("fonts/fontmap", "libwmf/fonts", "fonts/default/ghostscript") + + autotools.rawInstall("DESTDIR=%s \ + fontdir=/usr/share/libwmf/fonts \ + wmfonedocdir=/usr/share/doc/%s/caolan \ + wmfdocdir=/usr/share/doc/%s" % + ( get.installDIR(), get.srcNAME(), get.srcNAME() ) ) + + if shelltools.isDirectory("%s/usr/lib/gtk-2.0" % get.installDIR()): + # seems "/usr/lib/gtk-2.0" no longer exists, so need check + pisitools.removeDir("/usr/lib/gtk-2.0") + + # These fonts included in gnu-gs-fonts-std package. + pisitools.remove("/usr/share/libwmf/fonts/*afm") + pisitools.remove("/usr/share/libwmf/fonts/*pfb") + + pisitools.dodoc("README", "AUTHORS", "CREDITS", "ChangeLog", "NEWS", "TODO") diff --git a/multimedia/graphics/libwmf/pspec.xml b/multimedia/graphics/libwmf/pspec.xml new file mode 100644 index 0000000000..6e57b30b84 --- /dev/null +++ b/multimedia/graphics/libwmf/pspec.xml @@ -0,0 +1,72 @@ + + + + + libwmf + http://wvware.sourceforge.net/libwmf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + Library for reading and converting WMF files + A library for reading and converting Windows MetaFile vector graphics (WMF). + mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz + + libjpeg-turbo-devel + harfbuzz-devel + + + + + libwmf + + libjpeg-turbo + harfbuzz + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libwmf + + + + + libwmf-devel + Development files for libwmf + + libwmf + + + /usr/bin/libwmf-config + /usr/include + /usr/lib/pkgconfig + + + + + + 2014-05-24 + 0.2.8.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.2.8.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.2.8.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/multimedia/graphics/libwmf/translations.xml b/multimedia/graphics/libwmf/translations.xml new file mode 100644 index 0000000000..720176f23d --- /dev/null +++ b/multimedia/graphics/libwmf/translations.xml @@ -0,0 +1,14 @@ + + + + libwmf + WMF (Windows metafile) okuma ve dönüştürme kitaplığı + Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. + Librairie pour convertir les fichiers WMF. + + + + libwmf-devel + libwmf için geliştirme dosyaları + + From de162740eb8ff0f0472f8f2a6d72a2eac1842662 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:15:56 +0300 Subject: [PATCH 11/22] libexif:moved into main repo for pisi 2.0 --- multimedia/misc/libexif/actions.py | 20 ++++++ .../files/libexif-0.6.13-pkgconfig.patch | 11 +++ multimedia/misc/libexif/pspec.xml | 69 +++++++++++++++++++ multimedia/misc/libexif/translations.xml | 13 ++++ 4 files changed, 113 insertions(+) create mode 100644 multimedia/misc/libexif/actions.py create mode 100644 multimedia/misc/libexif/files/libexif-0.6.13-pkgconfig.patch create mode 100644 multimedia/misc/libexif/pspec.xml create mode 100644 multimedia/misc/libexif/translations.xml diff --git a/multimedia/misc/libexif/actions.py b/multimedia/misc/libexif/actions.py new file mode 100644 index 0000000000..0f2bc598b3 --- /dev/null +++ b/multimedia/misc/libexif/actions.py @@ -0,0 +1,20 @@ +#!/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 + +def setup(): + autotools.configure("--enable-nls \ + --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.install() + + pisitools.dodoc("ChangeLog", "README") diff --git a/multimedia/misc/libexif/files/libexif-0.6.13-pkgconfig.patch b/multimedia/misc/libexif/files/libexif-0.6.13-pkgconfig.patch new file mode 100644 index 0000000000..391025c2bf --- /dev/null +++ b/multimedia/misc/libexif/files/libexif-0.6.13-pkgconfig.patch @@ -0,0 +1,11 @@ +--- libexif.pc.in ++++ libexif.pc.in +@@ -1,7 +1,7 @@ + prefix=@prefix@ + exec_prefix=@exec_prefix@ + libdir=@libdir@ +-includedir=@includedir@ ++includedir=@includedir@/libexif + + Name: libexif + Description: Library for easy access to EXIF data diff --git a/multimedia/misc/libexif/pspec.xml b/multimedia/misc/libexif/pspec.xml new file mode 100644 index 0000000000..88232f0069 --- /dev/null +++ b/multimedia/misc/libexif/pspec.xml @@ -0,0 +1,69 @@ + + + + + libexif + http://libexif.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + Library for parsing, editing, and saving EXIF data + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. + mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 + + doxygen + + + libexif-0.6.13-pkgconfig.patch + + + + + libexif + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + + libexif-devel + Development files for libexif + + libexif + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libexif/libexif-api.html + + + + + + 2014-05-24 + 0.6.21 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.6.21 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.6.21 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/multimedia/misc/libexif/translations.xml b/multimedia/misc/libexif/translations.xml new file mode 100644 index 0000000000..92916b416a --- /dev/null +++ b/multimedia/misc/libexif/translations.xml @@ -0,0 +1,13 @@ + + + + libexif + EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane + Librairie pour analyser, éditer et sauvegarder des données EXIF. + + + + libexif-devel + libexif için geliştirme dosyaları + + From 79f28ae19ce7d239d6961f9b1858cd3c71424302 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:16:39 +0300 Subject: [PATCH 12/22] webkit-gtk2: moved into main repo for pisi 2.0 --- network/misc/webkit-gtk2/actions.py | 47 +++ .../files/webkitgtk-2.4.8-gcc5.patch | 33 ++ .../files/webkitgtk-2.4.8-gmutexlocker.patch | 281 ++++++++++++++++++ network/misc/webkit-gtk2/pspec.xml | 174 +++++++++++ 4 files changed, 535 insertions(+) create mode 100644 network/misc/webkit-gtk2/actions.py create mode 100644 network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gcc5.patch create mode 100644 network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gmutexlocker.patch create mode 100644 network/misc/webkit-gtk2/pspec.xml diff --git a/network/misc/webkit-gtk2/actions.py b/network/misc/webkit-gtk2/actions.py new file mode 100644 index 0000000000..8dfed9b57a --- /dev/null +++ b/network/misc/webkit-gtk2/actions.py @@ -0,0 +1,47 @@ +#!/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +shelltools.export("XDG_DATA_HOME", get.workDIR()) +pisitools.flags.replace("-ggdb3", "-g") + +paths = ["JavaScriptCore", "WebCore", "WebKit"] +docs = ["AUTHORS", "ChangeLog", "COPYING.LIB", "THANKS", \ + "LICENSE-LGPL-2", "LICENSE-LGPL-2.1", "LICENSE"] + +def setup(): + autotools.configure("\ + --disable-gtk-doc \ + --disable-silent-rules \ + --disable-webkit2 \ + --enable-dependency-tracking \ + --enable-introspection \ + --enable-video \ + --with-gnu-ld \ + --with-gtk=2.0 \ + ") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("-j1 DESTDIR=%s" % get.installDIR()) + + pisitools.domove("/usr/share/gtk-doc/html", "/usr/share/doc/webkit-gtk2") + + pisitools.dodoc("NEWS") + shelltools.cd("Source") + for path in paths: + for doc in docs: + if shelltools.isFile("%s/%s" % (path, doc)): + pisitools.insinto("%s/%s/%s" % (get.docDIR(), get.srcNAME(), path), + "%s/%s" % (path, doc)) diff --git a/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gcc5.patch b/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gcc5.patch new file mode 100644 index 0000000000..73f6855e40 --- /dev/null +++ b/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gcc5.patch @@ -0,0 +1,33 @@ +diff -up webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4.gcc5 webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4 +--- webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4.gcc5 2015-01-07 10:45:43.000000000 +0100 ++++ webkitgtk-2.4.8/Source/autotools/CheckSystemAndBasicDependencies.m4 2015-02-18 13:09:57.359888184 +0100 +@@ -87,12 +87,12 @@ AC_SYS_LARGEFILE + c_compiler="unknown" + AC_LANG_PUSH([C]) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ +-#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7) ++#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7))) + #error Not a supported GCC compiler + #endif + ])], [c_compiler="gcc"], []) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ +-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3) ++#if !(defined(__clang__) && (__apple_build_version__ >= 4250024 || (!defined(__apple_build_version__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 3))))) + #error Not a supported Clang compiler + #endif + ])], [c_compiler="clang"], []) +@@ -106,12 +106,12 @@ fi + cxx_compiler="unknown" + AC_LANG_PUSH([C++]) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ +-#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7) ++#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7))) + #error Not a supported G++ compiler + #endif + ])], [cxx_compiler="g++"], []) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ +-#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3) ++#if !(defined(__clang__) && (__apple_build_version__ >= 4250024 || (!defined(__apple_build_version__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 3))))) + #error Not a supported Clang++ compiler + #endif + ])], [cxx_compiler="clang++"], []) diff --git a/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gmutexlocker.patch b/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gmutexlocker.patch new file mode 100644 index 0000000000..81455bdd7d --- /dev/null +++ b/network/misc/webkit-gtk2/files/webkitgtk-2.4.8-gmutexlocker.patch @@ -0,0 +1,281 @@ +diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp +--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.gmutexlocker 2015-02-18 15:40:21.851816374 +0100 ++++ Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp 2015-02-18 15:45:58.560092191 +0100 +@@ -316,7 +316,7 @@ void MediaPlayerPrivateGStreamerBase::mu + #if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER_GL) && !USE(COORDINATED_GRAPHICS) + PassRefPtr MediaPlayerPrivateGStreamerBase::updateTexture(TextureMapper* textureMapper) + { +- GMutexLocker lock(m_bufferMutex); ++ WebCore::GMutexLocker lock(m_bufferMutex); + if (!m_buffer) + return nullptr; + +@@ -366,7 +366,7 @@ void MediaPlayerPrivateGStreamerBase::tr + g_return_if_fail(GST_IS_BUFFER(buffer)); + + { +- GMutexLocker lock(m_bufferMutex); ++ WebCore::GMutexLocker lock(m_bufferMutex); + gst_buffer_replace(&m_buffer, buffer); + } + +@@ -398,7 +398,7 @@ void MediaPlayerPrivateGStreamerBase::pa + if (!m_player->visible()) + return; + +- GMutexLocker lock(m_bufferMutex); ++ WebCore::GMutexLocker lock(m_bufferMutex); + if (!m_buffer) + return; + +diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp +diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp +--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.gmutexlocker 2015-02-18 15:16:11.995228731 +0100 ++++ Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp 2015-02-18 15:45:42.686843477 +0100 +@@ -118,7 +118,7 @@ static gboolean webkitVideoSinkTimeoutCa + WebKitVideoSink* sink = reinterpret_cast(data); + WebKitVideoSinkPrivate* priv = sink->priv; + +- GMutexLocker lock(priv->bufferMutex); ++ WebCore::GMutexLocker lock(priv->bufferMutex); + GstBuffer* buffer = priv->buffer; + priv->buffer = 0; + priv->timeoutId = 0; +@@ -140,7 +140,7 @@ static GstFlowReturn webkitVideoSinkRend + WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(baseSink); + WebKitVideoSinkPrivate* priv = sink->priv; + +- GMutexLocker lock(priv->bufferMutex); ++ WebCore::GMutexLocker lock(priv->bufferMutex); + + if (priv->unlocked) + return GST_FLOW_OK; +@@ -279,7 +279,7 @@ static void webkitVideoSinkGetProperty(G + + static void unlockBufferMutex(WebKitVideoSinkPrivate* priv) + { +- GMutexLocker lock(priv->bufferMutex); ++ WebCore::GMutexLocker lock(priv->bufferMutex); + + if (priv->buffer) { + gst_buffer_unref(priv->buffer); +@@ -305,7 +305,7 @@ static gboolean webkitVideoSinkUnlockSto + WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv; + + { +- GMutexLocker lock(priv->bufferMutex); ++ WebCore::GMutexLocker lock(priv->bufferMutex); + priv->unlocked = false; + } + +@@ -330,7 +330,7 @@ static gboolean webkitVideoSinkStart(Gst + { + WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv; + +- GMutexLocker lock(priv->bufferMutex); ++ WebCore::GMutexLocker lock(priv->bufferMutex); + priv->unlocked = false; + return TRUE; + } +diff -up webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.gmutexlocker webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp +--- webkitgtk-2.4.8/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.gmutexlocker 2015-02-18 15:16:40.954678407 +0100 ++++ Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp 2015-02-18 15:45:19.567481225 +0100 +@@ -346,7 +346,7 @@ static void webKitWebSrcSetProperty(GObj + + switch (propID) { + case PROP_IRADIO_MODE: { +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + priv->iradioMode = g_value_get_boolean(value); + break; + } +@@ -364,7 +364,7 @@ static void webKitWebSrcGetProperty(GObj + WebKitWebSrc* src = WEBKIT_WEB_SRC(object); + WebKitWebSrcPrivate* priv = src->priv; + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + switch (propID) { + case PROP_IRADIO_MODE: + g_value_set_boolean(value, priv->iradioMode); +@@ -417,7 +417,7 @@ static gboolean webKitWebSrcStop(WebKitW + + ASSERT(isMainThread()); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + + bool seeking = priv->seekID; + +@@ -476,7 +476,7 @@ static gboolean webKitWebSrcStart(WebKit + + ASSERT(isMainThread()); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + + priv->startID = 0; + priv->corsAccessCheck = CORSNoCheck; +@@ -573,7 +573,7 @@ static GstStateChangeReturn webKitWebSrc + return ret; + } + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + switch (transition) { + case GST_STATE_CHANGE_READY_TO_PAUSED: + GST_DEBUG_OBJECT(src, "READY->PAUSED"); +@@ -604,7 +604,7 @@ static gboolean webKitWebSrcQueryWithPar + gst_query_parse_duration(query, &format, NULL); + + GST_DEBUG_OBJECT(src, "duration query in format %s", gst_format_get_name(format)); +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + if (format == GST_FORMAT_BYTES && src->priv->size > 0) { + gst_query_set_duration(query, format, src->priv->size); + result = TRUE; +@@ -612,7 +612,7 @@ static gboolean webKitWebSrcQueryWithPar + break; + } + case GST_QUERY_URI: { +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + gst_query_set_uri(query, src->priv->uri); + result = TRUE; + break; +@@ -653,7 +653,7 @@ static gchar* webKitWebSrcGetUri(GstURIH + WebKitWebSrc* src = WEBKIT_WEB_SRC(handler); + gchar* ret; + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + ret = g_strdup(src->priv->uri); + return ret; + } +@@ -668,7 +668,7 @@ static gboolean webKitWebSrcSetUri(GstUR + return FALSE; + } + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + + g_free(priv->uri); + priv->uri = 0; +@@ -704,7 +704,7 @@ static gboolean webKitWebSrcNeedDataMain + + ASSERT(isMainThread()); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + // already stopped + if (!priv->needDataID) + return FALSE; +@@ -725,7 +725,7 @@ static void webKitWebSrcNeedDataCb(GstAp + + GST_DEBUG_OBJECT(src, "Need more data: %u", length); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + if (priv->needDataID || !priv->paused) { + return; + } +@@ -739,7 +739,7 @@ static gboolean webKitWebSrcEnoughDataMa + + ASSERT(isMainThread()); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + // already stopped + if (!priv->enoughDataID) + return FALSE; +@@ -760,7 +760,7 @@ static void webKitWebSrcEnoughDataCb(Gst + + GST_DEBUG_OBJECT(src, "Have enough data"); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + if (priv->enoughDataID || priv->paused) { + return; + } +@@ -774,7 +774,7 @@ static gboolean webKitWebSrcSeekMainCb(W + + ASSERT(isMainThread()); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + // already stopped + if (!priv->seekID) + return FALSE; +@@ -792,7 +792,7 @@ static gboolean webKitWebSrcSeekDataCb(G + WebKitWebSrcPrivate* priv = src->priv; + + GST_DEBUG_OBJECT(src, "Seeking to offset: %" G_GUINT64_FORMAT, offset); +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + if (offset == priv->offset && priv->requestedOffset == priv->offset) + return TRUE; + +@@ -811,7 +811,7 @@ static gboolean webKitWebSrcSeekDataCb(G + void webKitWebSrcSetMediaPlayer(WebKitWebSrc* src, WebCore::MediaPlayer* player) + { + ASSERT(player); +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + src->priv->player = player; + } + +@@ -841,7 +841,7 @@ char* StreamingClient::createReadBuffer( + + mapGstBuffer(buffer); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + priv->buffer = adoptGRef(buffer); + locker.unlock(); + +@@ -867,7 +867,7 @@ void StreamingClient::handleResponseRece + return; + } + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + + priv->corsAccessCheck = corsAccessCheck; + +@@ -966,7 +966,7 @@ void StreamingClient::handleDataReceived + WebKitWebSrc* src = WEBKIT_WEB_SRC(m_src); + WebKitWebSrcPrivate* priv = src->priv; + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + + GST_LOG_OBJECT(src, "Have %lld bytes of data", priv->buffer ? static_cast(gst_buffer_get_size(priv->buffer.get())) : length); + +@@ -1035,7 +1035,7 @@ void StreamingClient::handleNotifyFinish + + GST_DEBUG_OBJECT(src, "Have EOS"); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + if (!priv->seekID) { + locker.unlock(); + gst_app_src_end_of_stream(priv->appsrc); +@@ -1194,7 +1194,7 @@ void ResourceHandleStreamingClient::wasB + + GST_ERROR_OBJECT(src, "Request was blocked"); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + uri.reset(g_strdup(src->priv->uri)); + locker.unlock(); + +@@ -1208,7 +1208,7 @@ void ResourceHandleStreamingClient::cann + + GST_ERROR_OBJECT(src, "Cannot show URL"); + +- GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); ++ WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src)); + uri.reset(g_strdup(src->priv->uri)); + locker.unlock(); + +diff -up webkitgtk-2.4.8/Source/WTF/wtf/gobject/GMutexLocker.h.gmutexlocker webkitgtk-2.4.8/Source/WTF/wtf/gobject/GMutexLocker.h diff --git a/network/misc/webkit-gtk2/pspec.xml b/network/misc/webkit-gtk2/pspec.xml new file mode 100644 index 0000000000..90003d9c83 --- /dev/null +++ b/network/misc/webkit-gtk2/pspec.xml @@ -0,0 +1,174 @@ + + + + + webkit-gtk2 + http://webkitgtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + LGPLv2.1 + BSD + library + An opensource web browser engine for GTK+ applications + The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. + http://www.webkitgtk.org/releases/webkitgtk-2.4.8.tar.xz + + mesa-devel + gtk-doc + atk-devel + zlib-devel + glib2-devel + gtk2-devel + ruby-devel + webp-devel + cairo-devel + icu4c-devel + libXt-devel + pango-devel + enchant-devel + sqlite-devel + geoclue-devel + libsoup-devel + fontconfig-devel + libxslt-devel + harfbuzz-devel + libsecret-devel + gdk-pixbuf-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-next-devel + gobject-introspection-devel + gst-plugins-base-next-devel + which + icon-theme-hicolor + + + + webkitgtk-2.4.8-gmutexlocker.patch + + + + + webkit-gtk2 + + atk + zlib + glib2 + gtk2 + mesa + webp + cairo + icu4c + libXt + libX11 + libgcc + libpng + libxml2 + pango + sqlite + enchant + libsoup + libxslt + harfbuzz + freetype + libsecret + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/share + /usr/share/doc + + + + + webkit-gtk2-devel + library + data:doc + Development files for GTK+ port of WebKit + + libgcc + gtk2-devel + glib2-devel + webkit-gtk2 + libsoup-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/webkit-gtk/Web* + /usr/share/doc/webkit-gtk2/html + /usr/share/doc/webkit-gtk/JavaScriptCore + + + + + + 2015-04-07 + 2.4.8 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-16 + 2.4.8 + Version Bump + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-24 + 2.4.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-21 + 2.4.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-14 + 1.10.2 + Rebuild for icu4c + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 1.10.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-25 + 1.10.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-23 + 1.10.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + From d898d33034843f1afdb0e02c5283b2493789de07 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:17:11 +0300 Subject: [PATCH 13/22] python-gtk:moved into main repo for pisi 2.0 --- .../language/python/python-gtk/actions.py | 32 +++++ .../language/python/python-gtk/pspec.xml | 112 ++++++++++++++++++ .../python/python-gtk/translations.xml | 24 ++++ 3 files changed, 168 insertions(+) create mode 100644 programming/language/python/python-gtk/actions.py create mode 100644 programming/language/python/python-gtk/pspec.xml create mode 100644 programming/language/python/python-gtk/translations.xml diff --git a/programming/language/python/python-gtk/actions.py b/programming/language/python/python-gtk/actions.py new file mode 100644 index 0000000000..1f15a6a321 --- /dev/null +++ b/programming/language/python/python-gtk/actions.py @@ -0,0 +1,32 @@ +#!/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 + +WorkDir = "pygtk-%s" % (get.srcVERSION()) + +def setup(): + shelltools.unlink("py-compile" ) + shelltools.sym("/bin/true", "%s/py-compile" % get.curDIR()) + + autotools.configure("--enable-thread \ + --disable-docs") + + shelltools.touch("%s/style.css" % get.curDIR()) + pisitools.dosed("docs/Makefile", "CSS_FILES = .*", "CSS_FILES = %s/style.css" % get.curDIR()) + + pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "MAPPING", "NEWS", "README", "THREADS", "TODO") diff --git a/programming/language/python/python-gtk/pspec.xml b/programming/language/python/python-gtk/pspec.xml new file mode 100644 index 0000000000..f9defa28e5 --- /dev/null +++ b/programming/language/python/python-gtk/pspec.xml @@ -0,0 +1,112 @@ + + + + + python-gtk + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + GTK+ bindings for Python + python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. + mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 + + cairo-devel + pango-devel + atk-devel + gtk2-devel + libglade-devel + python-pygobject-devel + python-cairo-devel + python-numpy + + + + + python-gtk + + cairo + pango + atk + gtk2 + libglade + gdk-pixbuf + python-pygobject + python-cairo + python-numpy + + + /usr/lib + /usr/share/doc + + + + + python-gtk-demo + app:gui + Demo applications for python-gtk + + python-gtk + + + /usr/bin/pygtk-demo + /usr/lib/pygtk/2.0/pygtk-demo.py + /usr/lib/pygtk/2.0/demos + + + + + python-gtk-docs + data:doc + Reference documents for python-gtk + + python-gtk + + + /usr/share/gtk-doc + + + + + python-gtk-devel + Development files for python-gtk + + python-gtk + python-pygobject-devel + gtk2-devel + + + /usr/bin/pygtk-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygtk + + + + + + 2013-08-17 + 2.24.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 2.24.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-11 + 2.24.0 + First release + Erdinç Gültekin + admins@pisilinux.org + + + \ No newline at end of file diff --git a/programming/language/python/python-gtk/translations.xml b/programming/language/python/python-gtk/translations.xml new file mode 100644 index 0000000000..c77b510540 --- /dev/null +++ b/programming/language/python/python-gtk/translations.xml @@ -0,0 +1,24 @@ + + + + python-gtk + Python için GTK+ bağlayıcıları + python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. + Bindings (liens) GTK+2 pour Python. + + + + python-gtk-demo + python-gtk için demo uygulamalar + + + + python-gtk-docs + python-gtk için referans belgeleri + + + + python-gtk-devel + python-gtk için geliştirme dosyaları + + From ad44997a5da47fd18363d2cc875088d9063b362d Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:17:37 +0300 Subject: [PATCH 14/22] libXmu:moved into main repo for pisi 2.0 --- x11/library/libXmu/actions.py | 20 +++++ x11/library/libXmu/pspec.xml | 127 ++++++++++++++++++++++++++++ x11/library/libXmu/translations.xml | 20 +++++ 3 files changed, 167 insertions(+) create mode 100644 x11/library/libXmu/actions.py create mode 100644 x11/library/libXmu/pspec.xml create mode 100644 x11/library/libXmu/translations.xml diff --git a/x11/library/libXmu/actions.py b/x11/library/libXmu/actions.py new file mode 100644 index 0000000000..2ac322d1b1 --- /dev/null +++ b/x11/library/libXmu/actions.py @@ -0,0 +1,20 @@ +# -*- 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.autoreconf("-vif") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("ChangeLog", "COPYING", "README") diff --git a/x11/library/libXmu/pspec.xml b/x11/library/libXmu/pspec.xml new file mode 100644 index 0000000000..6a9e028b89 --- /dev/null +++ b/x11/library/libXmu/pspec.xml @@ -0,0 +1,127 @@ + + + + + libXmu + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org Xmu library + libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. + mirrors://xorg/individual/lib/libXmu-1.1.2.tar.bz2 + + libXt-devel + libXext-devel + + + + + libXmu + + libXt + libXext + + + /usr/lib + /usr/share/doc + + + + + libXmu-devel + Development files for libXmu + + libXmu + libXt-devel + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + libXmu-32bit + emul32 + 32-bit shared libraries for libXmu + emul32 + + libXt-32bit + libXext-32bit + + + libXmu + libXt-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + + 2014-05-16 + 1.1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.1.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.1.1 + Revert back to 1.1.1. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2012-06-01 + 1.1.1 + First release + Erdem Artan + admins@pisilinux.org + + + diff --git a/x11/library/libXmu/translations.xml b/x11/library/libXmu/translations.xml new file mode 100644 index 0000000000..d83274dfef --- /dev/null +++ b/x11/library/libXmu/translations.xml @@ -0,0 +1,20 @@ + + + + libXmu + X.Org Xmu kitaplığı + Librairie Xmu de X.Org + X.Org Xmu Bibliothek + LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. + + + + libXmu-devel + libXmu için geliştirme dosyaları + + + + libXmu-32bit + libXmu için 32-bit paylaşımlı kitaplıklar + + From f1058c2e80285e5abc013709254a001dbf61fb01 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 02:18:03 +0300 Subject: [PATCH 15/22] libXpm:moved into main repo for pisi 2.0 --- x11/library/libXpm/actions.py | 20 +++++ x11/library/libXpm/pspec.xml | 114 ++++++++++++++++++++++++++++ x11/library/libXpm/translations.xml | 19 +++++ 3 files changed, 153 insertions(+) create mode 100644 x11/library/libXpm/actions.py create mode 100644 x11/library/libXpm/pspec.xml create mode 100644 x11/library/libXpm/translations.xml diff --git a/x11/library/libXpm/actions.py b/x11/library/libXpm/actions.py new file mode 100644 index 0000000000..d5a16a4458 --- /dev/null +++ b/x11/library/libXpm/actions.py @@ -0,0 +1,20 @@ +# -*- 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.autoreconf("-vif") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README") diff --git a/x11/library/libXpm/pspec.xml b/x11/library/libXpm/pspec.xml new file mode 100644 index 0000000000..a7603566c8 --- /dev/null +++ b/x11/library/libXpm/pspec.xml @@ -0,0 +1,114 @@ + + + + + libXpm + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org Xpm library + LibXpm is the X pixmap library. + mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 + + libXext-devel + libXt-devel + + + + + libXpm + + libXext + libXt + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + libXpm-devel + Development files for libXpm + + libXpm + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + libXpm-32bit + emul32 + 32-bit shared libraries for libXpm + emul32 + + libXext-32bit + libXt-32bit + libX11-32bit + + + libXpm + libXext-32bit + libXt-32bit + libX11-32bit + + + /usr/lib32 + + + + + + 2014-05-16 + 3.5.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 3.5.11 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-12 + 3.5.10 + Revert back to 3.5.10. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 3.5.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 3.5.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 3.5.10 + First release + Erdem Artan + admins@pisilinux.org + + + diff --git a/x11/library/libXpm/translations.xml b/x11/library/libXpm/translations.xml new file mode 100644 index 0000000000..8bea9a6e1d --- /dev/null +++ b/x11/library/libXpm/translations.xml @@ -0,0 +1,19 @@ + + + + libXpm + X.Org Xpm kitaplığı + Librairie Xpm de X.Org + X.Org Xpm Bibliothek + + + + libXpm-devel + libXpm için geliştirme dosyaları + + + + libXpm-32bit + libXpm için 32-bit paylaşımlı kitaplıklar + + From a269e9e0a0fb990705a06c31b461d1c273194864 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:05:06 +0300 Subject: [PATCH 16/22] GraphicsMagick:moved into main repo for pisi 2.0 --- multimedia/graphics/GraphicsMagick/actions.py | 60 ++++++++ .../GraphicsMagick-1.3.14-perl_linkage.patch | 12 ++ .../GraphicsMagick-1.3.16-multilib.patch | 43 ++++++ multimedia/graphics/GraphicsMagick/pspec.xml | 139 ++++++++++++++++++ .../graphics/GraphicsMagick/translations.xml | 8 + 5 files changed, 262 insertions(+) create mode 100644 multimedia/graphics/GraphicsMagick/actions.py create mode 100644 multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.14-perl_linkage.patch create mode 100644 multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.16-multilib.patch create mode 100644 multimedia/graphics/GraphicsMagick/pspec.xml create mode 100644 multimedia/graphics/GraphicsMagick/translations.xml diff --git a/multimedia/graphics/GraphicsMagick/actions.py b/multimedia/graphics/GraphicsMagick/actions.py new file mode 100644 index 0000000000..5ff6e2ae68 --- /dev/null +++ b/multimedia/graphics/GraphicsMagick/actions.py @@ -0,0 +1,60 @@ +#!/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 perlmodules +from pisi.actionsapi import get + +# .la files needed to load modules +KeepSpecial = ["libtool"] + +def setup(): + # ghostscript is better than dps + # unstable fpx support disabled + # trio is for old systems not providing vsnprintf + autotools.configure("--enable-openmp \ + --enable-shared \ + --disable-static \ + --with-threads \ + --with-modules \ + --with-magick-plus-plus \ + --with-perl \ + --with-bzlib \ + --without-dps \ + --without-fpx \ + --with-gslib \ + --with-jbig \ + --with-jpeg \ + --with-jp2 \ + --with-lcms \ + --with-png \ + --with-tiff \ + --without-trio \ + --with-ttf \ + --with-wmf \ + --with-fontpath=/usr/share/fonts \ + --with-gs-font-dir=/usr/share/fonts/default/ghostscript \ + --with-xml \ + --with-zlib \ + --with-x \ + --with-quantum-depth=16") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + autotools.make("perl-build") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + autotools.rawInstall("DESTDIR=%s -C PerlMagick" % get.installDIR()) + for d in ("demo/", "Changelog", "README.txt"): + pisitools.insinto("/usr/share/doc/PerlMagick", "PerlMagick/%s" % d) + + pisitools.remove("/usr/lib/*.la") + perlmodules.removePacklist() + perlmodules.removePodfiles() diff --git a/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.14-perl_linkage.patch b/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.14-perl_linkage.patch new file mode 100644 index 0000000000..db504a0ec3 --- /dev/null +++ b/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.14-perl_linkage.patch @@ -0,0 +1,12 @@ +diff -up GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in.perl_linkage GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in +--- GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in.perl_linkage 2012-02-25 14:43:38.000000000 -0600 ++++ GraphicsMagick-1.3.14/PerlMagick/Makefile.PL.in 2012-02-26 07:35:38.542731280 -0600 +@@ -78,7 +78,7 @@ WriteMakefile + 'INSTALLBIN' => $magick_BIN_DIR, + + # Library specification +- 'LIBS' => ["-L$magick_LIB_DIR -lGraphicsMagick $magick_LDFLAGS $magick_DEP_LIBS"], ++ 'LIBS' => ["-L$magick_LIB_DIR -L../magick/.libs -lGraphicsMagick $magick_LDFLAGS $magick_DEP_LIBS"], + + # Perl binary name (if a Perl binary is built) + 'MAP_TARGET' => 'PerlMagick', diff --git a/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.16-multilib.patch b/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.16-multilib.patch new file mode 100644 index 0000000000..e3c8e90305 --- /dev/null +++ b/multimedia/graphics/GraphicsMagick/files/GraphicsMagick-1.3.16-multilib.patch @@ -0,0 +1,43 @@ +diff -up GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in.multilib GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in +--- GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in.multilib 2011-11-12 14:39:22.000000000 -0600 ++++ GraphicsMagick-1.3.16/Magick++/bin/GraphicsMagick++-config.in 2012-06-24 11:25:12.603862643 -0500 +@@ -33,13 +33,13 @@ while test $# -gt 0; do + echo '@MAGICK_API_CPPFLAGS@' + ;; + --cxxflags) +- echo '@CXXFLAGS@' ++ echo '' + ;; + --ldflags) +- echo '@MAGICK_API_LDFLAGS@' ++ echo '' + ;; + --libs) +- echo '-lGraphicsMagick++ @MAGICK_API_LIBS@' ++ echo '-lGraphicsMagick++' + ;; + *) + echo "${usage}" 1>&2 +diff -up GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in.multilib GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in +--- GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in.multilib 2011-11-12 14:39:26.000000000 -0600 ++++ GraphicsMagick-1.3.16/magick/GraphicsMagick-config.in 2012-06-24 11:14:55.947571850 -0500 +@@ -30,16 +30,16 @@ while test $# -gt 0; do + echo @PACKAGE_VERSION@ + ;; + --cflags) +- echo '@CFLAGS@' ++ echo '' + ;; + --cppflags) + echo '@MAGICK_API_CPPFLAGS@' + ;; + --ldflags) +- echo '@MAGICK_API_LDFLAGS@' ++ echo '' + ;; + --libs) +- echo '@MAGICK_API_LIBS@' ++ echo '-lGraphicsMagick' + ;; + *) + echo "${usage}" 1>&2 diff --git a/multimedia/graphics/GraphicsMagick/pspec.xml b/multimedia/graphics/GraphicsMagick/pspec.xml new file mode 100644 index 0000000000..24a72c0ed6 --- /dev/null +++ b/multimedia/graphics/GraphicsMagick/pspec.xml @@ -0,0 +1,139 @@ + + + + + GraphicsMagick + http://www.graphicsmagick.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + GraphicsMagick Image Processing System + GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. + mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz + + tiff-devel + webp-devel + lcms2-devel + libSM-devel + libwmf-devel + libICE-devel + jasper-devel + jbigkit-devel + libXext-devel + libjpeg-turbo-devel + ghostscript-devel + + + GraphicsMagick-1.3.14-perl_linkage.patch + GraphicsMagick-1.3.16-multilib.patch + + + + + GraphicsMagick + app:console + + tiff + webp + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp + ghostscript + libjpeg-turbo + + + /etc + /usr/bin/gm + /usr/lib/GraphicsMagick-* + /usr/lib/lib* + /usr/share/GraphicsMagick-* + /usr/share/doc + /usr/share/man + + + + + GraphicsMagick-devel + Development files for GraphicsMagick + + GraphicsMagick + + + /usr/bin/*-config + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/GraphicsMagick/www + /usr/share/man/man1/*-config.* + + + + + PerlMagick + GraphicsMagick perl bindings + + GraphicsMagick + + + /usr/lib/perl5 + /usr/share/doc/PerlMagick + + + + + + 2014-09-13 + 1.3.20 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 1.3.19 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-23 + 1.3.19 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-07 + 1.3.19 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-04 + 1.3.19 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 1.3.17 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2012-11-22 + 1.3.17 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/GraphicsMagick/translations.xml b/multimedia/graphics/GraphicsMagick/translations.xml new file mode 100644 index 0000000000..177ce8b331 --- /dev/null +++ b/multimedia/graphics/GraphicsMagick/translations.xml @@ -0,0 +1,8 @@ + + + + GraphicsMagick + GraphicsMagick Resim İşleme Sistemi + GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. + + From 2abc81994b2056ae18364fa5584bcff9bc4d04c1 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:06:44 +0300 Subject: [PATCH 17/22] gimp:moved into main repo for pisi 2.0 --- .../gimp/addon/colorize-gimp/actions.py | 22 + .../gimp/addon/colorize-gimp/files/COPYING | 340 + .../gimp/addon/colorize-gimp/pspec.xml | 70 + .../gimp/addon/colorize-gimp/translations.xml | 8 + .../gimp/addon/gimp-data-extras/actions.py | 20 + .../gimp/addon/gimp-data-extras/pspec.xml | 56 + .../addon/gimp-data-extras/translations.xml | 8 + .../gimp/addon/gimp-dds-plugin/actions.py | 17 + .../gimp/addon/gimp-dds-plugin/pspec.xml | 62 + .../addon/gimp-focusblur-plugin/actions.py | 23 + .../addon/gimp-focusblur-plugin/pspec.xml | 60 + .../gimp/addon/gimp-gmic-plugin/actions.py | 31 + .../files/gentoo/gmic-1.5.2.2-makefile.patch | 101 + .../gimp/addon/gimp-gmic-plugin/pspec.xml | 123 + .../addon/gimp-gmic-plugin/translations.xml | 18 + .../gimp/addon/gimp-layer-effects/actions.py | 12 + .../addon/gimp-layer-effects/files/COPYING | 674 + .../gimp/addon/gimp-layer-effects/pspec.xml | 56 + .../addon/gimp-layer-effects/translations.xml | 8 + .../gimp/addon/gimp-lqr-plugin/actions.py | 20 + .../gimp/addon/gimp-lqr-plugin/pspec.xml | 61 + .../addon/gimp-refocus-it-plugin/actions.py | 19 + .../addon/gimp-refocus-it-plugin/pspec.xml | 60 + .../gimp-refocus-it-plugin/translations.xml | 8 + .../gimp/addon/gimp-resynthesizer/actions.py | 17 + .../gimp/addon/gimp-resynthesizer/pspec.xml | 61 + .../gimp/addon/gimp-save-for-web/actions.py | 19 + .../gimp/addon/gimp-save-for-web/pspec.xml | 61 + .../addon/gimp-save-for-web/translations.xml | 8 + .../gimp/addon/gimpfx-foundry/actions.py | 13 + .../gimp/addon/gimpfx-foundry/pspec.xml | 54 + .../addon/gimpfx-foundry/translations.xml | 8 + multimedia/graphics/gimp/gimp/actions.py | 52 + .../gimp/gimp/files/gimp-splash-colors.png | Bin 0 -> 342227 bytes .../graphics/gimp/gimp/files/gimp-splash.png | Bin 0 -> 272386 bytes .../files/po-libgimp_gimp20-libgimp-tr.po | 1853 +++ .../po-plug-ins_gimp20-std-plug-ins-tr.po | 12498 +++++++++++++++ .../files/po-script-fu_gimp20-script-fu-tr.po | 2775 ++++ .../graphics/gimp/gimp/files/po_gimp20-tr.po | 12875 ++++++++++++++++ multimedia/graphics/gimp/gimp/pspec.xml | 1206 ++ .../graphics/gimp/gimp/translations.xml | 317 + 41 files changed, 33694 insertions(+) create mode 100644 multimedia/graphics/gimp/addon/colorize-gimp/actions.py create mode 100644 multimedia/graphics/gimp/addon/colorize-gimp/files/COPYING create mode 100644 multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/colorize-gimp/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-data-extras/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-data-extras/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-dds-plugin/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-focusblur-plugin/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-gmic-plugin/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-gmic-plugin/files/gentoo/gmic-1.5.2.2-makefile.patch create mode 100644 multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-gmic-plugin/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-layer-effects/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-layer-effects/files/COPYING create mode 100644 multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-layer-effects/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-lqr-plugin/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-resynthesizer/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-save-for-web/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimp-save-for-web/translations.xml create mode 100644 multimedia/graphics/gimp/addon/gimpfx-foundry/actions.py create mode 100644 multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml create mode 100644 multimedia/graphics/gimp/addon/gimpfx-foundry/translations.xml create mode 100644 multimedia/graphics/gimp/gimp/actions.py create mode 100644 multimedia/graphics/gimp/gimp/files/gimp-splash-colors.png create mode 100644 multimedia/graphics/gimp/gimp/files/gimp-splash.png create mode 100644 multimedia/graphics/gimp/gimp/files/po-libgimp_gimp20-libgimp-tr.po create mode 100644 multimedia/graphics/gimp/gimp/files/po-plug-ins_gimp20-std-plug-ins-tr.po create mode 100644 multimedia/graphics/gimp/gimp/files/po-script-fu_gimp20-script-fu-tr.po create mode 100644 multimedia/graphics/gimp/gimp/files/po_gimp20-tr.po create mode 100644 multimedia/graphics/gimp/gimp/pspec.xml create mode 100644 multimedia/graphics/gimp/gimp/translations.xml diff --git a/multimedia/graphics/gimp/addon/colorize-gimp/actions.py b/multimedia/graphics/gimp/addon/colorize-gimp/actions.py new file mode 100644 index 0000000000..265197558b --- /dev/null +++ b/multimedia/graphics/gimp/addon/colorize-gimp/actions.py @@ -0,0 +1,22 @@ +#!/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 + +WorkDir="colorize-gimp" + +def setup(): + #pisitools.dosed("Makefile", "pardus_cflags", "%s" % get.CFLAGS()) + pisitools.dosed("Makefile", "^CC=.*", "CC=%s" % get.CC()) + +def build(): + autotools.make() + +def install(): + pisitools.insinto("/usr/lib/gimp/2.0/plug-ins", "colorize") diff --git a/multimedia/graphics/gimp/addon/colorize-gimp/files/COPYING b/multimedia/graphics/gimp/addon/colorize-gimp/files/COPYING new file mode 100644 index 0000000000..3912109b5c --- /dev/null +++ b/multimedia/graphics/gimp/addon/colorize-gimp/files/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml b/multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml new file mode 100644 index 0000000000..382c6ce13e --- /dev/null +++ b/multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml @@ -0,0 +1,70 @@ + + + + + colorize-gimp + http://zenthought.org/content/project/colorize + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + gimp + library + Colorization plugin for GIMP + colorize-gimp is an implementation of colorization using optimization for GIMP. + http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz + + gimp-devel + gtk2-devel + atlas-devel + SuiteSparse-devel + + + + + colorize-gimp + + gimp + gtk2 + atlas + SuiteSparse + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + + 2014-06-19 + 2.6.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 2.6.0 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/colorize-gimp/translations.xml b/multimedia/graphics/gimp/addon/colorize-gimp/translations.xml new file mode 100644 index 0000000000..eba43d4fd0 --- /dev/null +++ b/multimedia/graphics/gimp/addon/colorize-gimp/translations.xml @@ -0,0 +1,8 @@ + + + + colorize-gimp + GIMP için renklendirme eklentisi + colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. + + diff --git a/multimedia/graphics/gimp/addon/gimp-data-extras/actions.py b/multimedia/graphics/gimp/addon/gimp-data-extras/actions.py new file mode 100644 index 0000000000..33bf87d432 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-data-extras/actions.py @@ -0,0 +1,20 @@ +#!/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() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall('DESTDIR="%s"' % get.installDIR()) + + pisitools.dodoc("README", "COPYING", "ChangeLog", "AUTHORS") diff --git a/multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml b/multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml new file mode 100644 index 0000000000..c473aa451a --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml @@ -0,0 +1,56 @@ + + + + + gimp-data-extras + http//www.gimp.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + gimp + data + Gimp extras + Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. + ftp://ftp.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2 + + gimp-devel + + + + + gimp-data-extras + + gimp + + + /usr/share/gimp + /usr/share/doc + + + + + + 2014-06-19 + 2.0.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2009-09-07 + 2.0.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-data-extras/translations.xml b/multimedia/graphics/gimp/addon/gimp-data-extras/translations.xml new file mode 100644 index 0000000000..82b3bc35e0 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-data-extras/translations.xml @@ -0,0 +1,8 @@ + + + + gimp-data-extras + Gimp ekleri + Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. + + diff --git a/multimedia/graphics/gimp/addon/gimp-dds-plugin/actions.py b/multimedia/graphics/gimp/addon/gimp-dds-plugin/actions.py new file mode 100644 index 0000000000..ee5bdce289 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-dds-plugin/actions.py @@ -0,0 +1,17 @@ +#!/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 pisitools + +def build(): + pisitools.dosed("Makefile", "CFLAGS=.*\$\(", "CFLAGS+=$(") + autotools.make() + +def install(): + pisitools.doexe("dds", "/usr/lib/gimp/2.0/plug-ins") + pisitools.dodoc("doc/gimp-dds.pdf", "COPYING", "LICENSE", "README*", "TODO") + +# By PiSiDo 2.0.0 diff --git a/multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml b/multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml new file mode 100644 index 0000000000..94856474aa --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml @@ -0,0 +1,62 @@ + + + + + gimp-dds-plugin + http://code.google.com/p/gimp-dds/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + DirectDraw Surface (DDS) format plugin for Gimp + This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. + + gimp-devel + gtk2-devel + + http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2 + + + gimp-dds-plugin + + atk + cairo + fontconfig + gdk-pixbuf + gimp + gtk2 + pango + libgomp + + + /usr/lib/gimp/2.0/plug-ins/dds + /usr/share/doc/gimp-dds-plugin + + + + + + 2014-06-19 + 3.0.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.0.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-07-07 + 2.2.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/actions.py b/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/actions.py new file mode 100644 index 0000000000..2da9a5ab23 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/actions.py @@ -0,0 +1,23 @@ +#!/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +def setup(): + #fix error "Only can be included directly." + for f in shelltools.ls("src/*"): + pisitools.dosed(f, "(#include\s)", r"\1\2") + autotools.configure("LIBS=-lm") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README") diff --git a/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml b/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml new file mode 100644 index 0000000000..d0da8f4a54 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml @@ -0,0 +1,60 @@ + + + + + gimp-focusblur-plugin + http://registry.gimp.org/node/1444 + + PisiLinux Community + admins@pisilinux.org + + library + GPLv2 + Makes out of focus with luminosity and depth. + Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. + + fftw3-devel + gimp-devel + + http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2 + + + + gimp-focusblur-plugin + + fftw3 + gdk-pixbuf + gimp + gtk2 + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + /usr/share/locale + + + + + + 2014-06-19 + 3.2.6 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.2.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-10 + 3.2.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-gmic-plugin/actions.py b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/actions.py new file mode 100644 index 0000000000..a80d1f3702 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/actions.py @@ -0,0 +1,31 @@ +#!/usr/bin/python +# -*- actions.pycoding: 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 pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +#def setup(): + +def build(): + #pisitools.dosed("src/Makefile", "^(FFMPEG_LDFLAGS\s=.*)", r"\1 -lavutil") + autotools.make("-C src gimp custom lib -j1") + +def install(): + pisitools.doman("man/gmic.1.gz") + pisitools.dodoc("COPYING", "README") + pisitools.insinto("/usr/share/doc/gimp-gmic-plugin", "COPYING") + pisitools.insinto("/etc/bash_completion.d/", "resources/gmic_bashcompletion.sh", destinationFile = "gmic") + shelltools.cd("src") + pisitools.dobin("gmic") + pisitools.doexe("gmic_gimp", "/usr/lib/gimp/2.0/plug-ins/") + pisitools.insinto("/usr/include", "gmic.h") + pisitools.dolib("libgmic.so") + ver = ".%s" % get.srcVERSION() + while ver: + pisitools.dosym("libgmic.so", "/usr/lib/libgmic.so%s" % ver) + ver = ver[:ver.rfind('.')] diff --git a/multimedia/graphics/gimp/addon/gimp-gmic-plugin/files/gentoo/gmic-1.5.2.2-makefile.patch b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/files/gentoo/gmic-1.5.2.2-makefile.patch new file mode 100644 index 0000000000..c93c639fda --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/files/gentoo/gmic-1.5.2.2-makefile.patch @@ -0,0 +1,101 @@ +--- gmic-1.5.2.2/src/Makefile ++++ gmic-1.5.2.2/src/Makefile +@@ -77,7 +77,7 @@ + + # Flags that are mandatory to compile 'gmic'. + MANDATORY_CFLAGS += -Dgmic_build -I$(USR)/include +-MANDATORY_LDFLAGS += -L$(USR)/lib ++MANDATORY_LDFLAGS += + ifeq ($(IS_GCC),yes) + MANDATORY_CFLAGS += -Wall -W + MANDATORY_LDFLAGS += -lm +@@ -85,28 +85,20 @@ + MANDATORY_CFLAGS+=$(IS_BETA_CFLAGS) + + # Flags to enable debugging. +-DEBUG_CFLAGS = -Dcimg_use_vt100 -Dcimg_verbosity=3 -g +- +-# Flags to enable optimizations. +-ifeq ($(IS_GCC),yes) +-OPT_CFLAGS = -O3 # -fno-tree-pre # -ffast-math +-endif +-ifeq ($(CC),icc) +-OPT_CFLAGS = -O3 -ipo -no-prec-div -override-limits +-endif ++DEBUG_CFLAGS = -Dcimg_use_vt100 -Dcimg_verbosity=3 + + # Flags to enable image display, using X11 + # (keep /usr/ dirname here since X11 is located in /usr/ on Mac too). + # This requires the presence of the X11 include and library files. + # (package 'libx11-dev' on Debian). +-X11_CFLAGS = -Dcimg_display=1 -Dcimg_appname=\\\"gmic\\\" -I/usr/X11R6/include #-Dcimg_use_xrandr +-X11_LDFLAGS = -L/usr/X11R6/lib -lX11 -lpthread #-lXrandr ++X11_CFLAGS = -Dcimg_display=1 -Dcimg_appname=\\\"gmic\\\" #-Dcimg_use_xrandr ++X11_LDFLAGS = -lX11 -lpthread #-lXrandr + + # Flags to enable fast display, using XShm. + # This requires the presence of the X11 extension include and library files. + # (package 'libx11-dev' on Debian). + XSHM_CFLAGS = -Dcimg_use_xshm +-XSHM_LDFLAGS = -L$(USR)/X11R6/lib -lXext ++XSHM_LDFLAGS = -lXext + + # Flags to enable image display, using GDI32. + # This requires the presence of the GDI32 include and library files. +@@ -152,14 +144,8 @@ + # Flags to enable native support of webcams, using the OpenCV library. + # This requires the presence of the OpenCV include and library files. + # (package 'libcv3-2-dev' on Debian). +-ifeq ($(OS),Darwin) + OPENCV_CFLAGS = -Dcimg_use_opencv -I$(USR)/include -I$(USR)/include/opencv + OPENCV_LDFLAGS = `pkg-config opencv --libs` #-> Use this for OpenCV 2.2.0 ! +-else +-OPENCV_CFLAGS = -Dcimg_use_opencv -I$(USR)/include -I$(USR)/include/opencv +-# OPENCV_LDFLAGS = -lcv -lhighgui +-OPENCV_LDFLAGS = -lopencv_core -lopencv_highgui #-> Use this for OpenCV >= 2.2.0 ! +-endif + + # Flags to enable native support of most classical image file formats, using the GraphicsMagick++ library. + # This requires the presence of the GraphicsMagick++ include and library files. +@@ -287,10 +273,10 @@ + endif + + gimp: +- $(MAKE) "CFLAGS=$(STD_GIMP_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_GIMP_LDFLAGS) $(OPT_LDFLAGS)" "STRIP_EXE=1" gmic_gimp ++ $(MAKE) "CFLAGS+=$(STD_GIMP_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_GIMP_LDFLAGS) $(OPT_LDFLAGS)" gmic_gimp + + lib: +- $(MAKE) "CFLAGS=$(STD_LIB_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_LIB_LDFLAGS) $(OPT_LDFLAGS)" gmic_lib ++ $(MAKE) "CFLAGS+=$(STD_LIB_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_LIB_LDFLAGS) $(OPT_LDFLAGS)" gmic_lib + + zart: lib + ifneq ($(OS),Darwin) +@@ -313,10 +299,10 @@ + $(MAKE) "CFLAGS+=$(DEBUG_UNIX_CFLAGS)" "LDFLAGS+=$(DEBUG_UNIX_LDFLAGS)" gmic_minimal + + linux: +- $(MAKE) "CFLAGS=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(STD_UNIX_LDFLAGS)" "STRIP_EXE=1" gmic_gmic ++ $(MAKE) "CFLAGS+=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_UNIX_LDFLAGS)" gmic_gmic + + custom: +- $(MAKE) "CFLAGS=$(CUST_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(CUST_UNIX_LDFLAGS)" "STRIP_EXE=1" gmic_gmic ++ $(MAKE) "CFLAGS+=$(CUST_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(CUST_UNIX_LDFLAGS)" gmic_gmic + + solaris: + $(MAKE) "CFLAGS=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(STD_UNIX_LDFLAGS) -R$(USR)/X11R6/lib -lrt -lnsl -lsocket" "STRIP_EXE=1" gmic_gmic +@@ -346,7 +332,6 @@ + $(CC) -o gmic_gimp.o -c gmic.cpp $(CFLAGS) -Dgmic_gimp -Dgmic_float_only + gmic_gimp : gmic_gimp.o gmic_gimp.cpp + $(CC) -o gmic_gimp gmic_gimp.cpp gmic_gimp.o `gimptool-2.0$(EXE) --cflags` $(CFLAGS) `gimptool-2.0$(EXE) --libs` $(LDFLAGS) +- strip gmic_gimp$(EXE) + + gmic_minimal: gmic.cpp + $(CC) -o gmic gmic.cpp $(CFLAGS) -Dgmic_float_only -Dgmic_main $(LDFLAGS) +@@ -371,7 +356,6 @@ + $(CC) -o gmic_double.o -c gmic.cpp $(CFLAGS) -Dgmic_split_compilation -Dgmic_double + gmic_gmic: gmic_bool.o gmic_uchar.o gmic_char.o gmic_ushort.o gmic_short.o gmic_uint.o gmic_int.o gmic_float.o gmic_double.o gmic_def.h + $(CC) -o gmic gmic_bool.o gmic_uchar.o gmic_char.o gmic_ushort.o gmic_short.o gmic_uint.o gmic_int.o gmic_float.o gmic_double.o $(LDFLAGS) +- strip gmic$(EXE) + + def: + @echo "#ifndef gmic_gimp" > gmic_def.h diff --git a/multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml new file mode 100644 index 0000000000..db936c0ed0 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml @@ -0,0 +1,123 @@ + + + + + gimp-gmic-plugin + http://gmic.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + CeCILL-2 + app:console + library + Image procession framework. + G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. + mirrors://sourceforge/gmic/gmic_1.6.0.3.tar.gz + + ffmpeg-devel + fftw3-devel + gimp-devel + GraphicsMagick-devel + libjpeg-turbo-devel + lapack-devel + opencv-devel + openexr-devel + tiff-devel + + + + + + + + gmic + + tiff + fftw3 + ffmpeg + opencv + libgomp + ilmbase + libXext + openexr-libs + libjpeg-turbo + GraphicsMagick + + + /etc/bash_completion.d + /usr/bin + /usr/lib + /usr/share/doc/gmic + /usr/share/man + + + + + gmic-devel + Development files for gmic + + gmic + + + /usr/include + + + + + gimp-gmic-plugin + Gimp plugin for the GMIC image procession framework. + + atk + gtk2 + gimp + cairo + pango + fftw3 + fontconfig + gdk-pixbuf + + + /usr/lib/gimp + /usr/share/doc/gimp-gmic-plugin + + + + + + 2014-12-25 + 1.6.0.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-06-19 + 1.5.5.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-01 + 1.5.5.0 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-27 + 1.5.5.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-13 + 1.5.1.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-gmic-plugin/translations.xml b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/translations.xml new file mode 100644 index 0000000000..7f9166501b --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-gmic-plugin/translations.xml @@ -0,0 +1,18 @@ + + + + gmic + Image procession framework. + G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. + + + + gmic-devel + Development files for gmic + + + + gimp-gmic-plugin + Gimp plugin for the GMIC image procession framework. + + diff --git a/multimedia/graphics/gimp/addon/gimp-layer-effects/actions.py b/multimedia/graphics/gimp/addon/gimp-layer-effects/actions.py new file mode 100644 index 0000000000..c4cef6f288 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-layer-effects/actions.py @@ -0,0 +1,12 @@ +#!/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 pisitools + +WorkDir="layer-effects" + +def install(): + pisitools.insinto("/usr/lib/gimp/2.0/plug-ins", "layerfx.py") diff --git a/multimedia/graphics/gimp/addon/gimp-layer-effects/files/COPYING b/multimedia/graphics/gimp/addon/gimp-layer-effects/files/COPYING new file mode 100644 index 0000000000..94a9ed024d --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-layer-effects/files/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml b/multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml new file mode 100644 index 0000000000..031d1a2204 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml @@ -0,0 +1,56 @@ + + + + + gimp-layer-effects + http://registry.gimp.org/node/186 + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + gimp + library + Layer effects for GIMP + Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. + http://ozbekanil.googlepages.com/layer-effects.tar.gz + + + + gimp-layer-effects + + gimp + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + + 2014-06-19 + 2.6.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.6.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-layer-effects/translations.xml b/multimedia/graphics/gimp/addon/gimp-layer-effects/translations.xml new file mode 100644 index 0000000000..0b70fbdda0 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-layer-effects/translations.xml @@ -0,0 +1,8 @@ + + + + gimp-layer-effects + GIMP için katman efektleri + Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. + + diff --git a/multimedia/graphics/gimp/addon/gimp-lqr-plugin/actions.py b/multimedia/graphics/gimp/addon/gimp-lqr-plugin/actions.py new file mode 100644 index 0000000000..270ee752b7 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-lqr-plugin/actions.py @@ -0,0 +1,20 @@ +#!/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.autoreconf("-fi") + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README", "TODO") diff --git a/multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml b/multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml new file mode 100644 index 0000000000..fd6fc3773a --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml @@ -0,0 +1,61 @@ + + + + + gimp-lqr-plugin + http://liquidrescale.wikidot.com/ + + PisiLinux Community + admins@pisilinux.org + + library + GPLv2 + Plugin for The GIMP providing Liquid Rescale. + Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. + + gimp-devel + liblqr-devel + + http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 + + + gimp-lqr-plugin + + gdk-pixbuf + gimp + gtk2 + liblqr + + + /usr/lib/gimp/2.0/plug-ins/* + /usr/share/doc/gimp-lqr-plugin/* + /usr/share/gimp-lqr-plugin/* + /usr/share/gimp/2.0/scripts/* + /usr/share/locale/* + + + + + + 2014-06-19 + 0.7.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 0.7.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-14 + 0.7.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/actions.py b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/actions.py new file mode 100644 index 0000000000..c6e41a994f --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/actions.py @@ -0,0 +1,19 @@ +#!/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 pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml new file mode 100644 index 0000000000..851cc2b3cf --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml @@ -0,0 +1,60 @@ + + + + + gimp-refocus-it-plugin + http://sourceforge.net/projects/refocus-it + + Osman Erkan + osman.erkan@pisilinux.org + + library + GPLv2 + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. + mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz + + gimp-devel + gtk2-devel + + + + + gimp-refocus-it-plugin + + gimp + gtk2 + + + /usr/bin + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc/gimp-refocus-it-plugin + /usr/share/help + /usr/share/locale + + + + + + 2014-06-19 + 2.0.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-03-28 + 2.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/translations.xml b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/translations.xml new file mode 100644 index 0000000000..7ca1629d1a --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/translations.xml @@ -0,0 +1,8 @@ + + + + gimp-refocus-it-plugin + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-resynthesizer/actions.py b/multimedia/graphics/gimp/addon/gimp-resynthesizer/actions.py new file mode 100644 index 0000000000..bcd289badb --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-resynthesizer/actions.py @@ -0,0 +1,17 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + + +from pisi.actionsapi import pisitools +from pisi.actionsapi import autotools + +WorkDir = "resynthesizer-0.16" + +def build(): + autotools.make() + +def install(): + pisitools.insinto("/usr/share/gimp/2.0/scripts","smart-enlarge.scm") + pisitools.insinto("/usr/share/gimp/2.0/scripts","smart-remove.scm") + pisitools.insinto("/usr/lib/gimp/2.0/plug-ins","resynth") + pisitools.dodoc("COPYING","README") diff --git a/multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml b/multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml new file mode 100644 index 0000000000..a4420b97b9 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml @@ -0,0 +1,61 @@ + + + + + gimp-resynthesizer + http://www.logarithmic.net/pfh/resynthesizer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + addon + Resynthesizer is a Gimp plug-in for texture synthesis + Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. + http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz + + gimp-devel + + + + gimp-resynthesizer + + gimp + atk + gtk2 + cairo + pango + fontconfig + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + + 2014-06-19 + 0.16 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 0.16 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-02-20 + 0.16 + First release + erdem.artan@linux.org.tr + Erdem Artan + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-save-for-web/actions.py b/multimedia/graphics/gimp/addon/gimp-save-for-web/actions.py new file mode 100644 index 0000000000..7fab99cc06 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-save-for-web/actions.py @@ -0,0 +1,19 @@ +#!/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() + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "HACKING", "README", "TODO") diff --git a/multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml b/multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml new file mode 100644 index 0000000000..0ef6e23628 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml @@ -0,0 +1,61 @@ + + + + + gimp-save-for-web + http://registry.gimp.org/node/33 + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + GIMP Save for Web + GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. + http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2 + + gimp-devel + gtk2-devel + gdk-pixbuf-devel + + + + + gimp-save-for-web + + gimp + gtk2 + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp-save-for-web + /usr/share/locale + /usr/share/doc + + + + + + 2014-06-19 + 0.29.3 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-30 + 0.29.3 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-01-30 + 0.29.0 + First release + Anıl Özbek + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimp-save-for-web/translations.xml b/multimedia/graphics/gimp/addon/gimp-save-for-web/translations.xml new file mode 100644 index 0000000000..f96e8231f4 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimp-save-for-web/translations.xml @@ -0,0 +1,8 @@ + + + + gimp-save-for-web + GIMP Save for Web + GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. + + diff --git a/multimedia/graphics/gimp/addon/gimpfx-foundry/actions.py b/multimedia/graphics/gimp/addon/gimpfx-foundry/actions.py new file mode 100644 index 0000000000..f6ec551345 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimpfx-foundry/actions.py @@ -0,0 +1,13 @@ +#!/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 pisitools + +WorkDir = "." + +def install(): + pisitools.insinto("/usr/share/gimp/2.0/scripts/", "*.scm") + pisitools.dodoc("release-notes.txt") diff --git a/multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml b/multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml new file mode 100644 index 0000000000..2122efb950 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml @@ -0,0 +1,54 @@ + + + + + gimpfx-foundry + http://gimpfx-foundry.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + public-domain + data + A scripts collection for GIMP + FX-Foundry project is constantly updating custom scripts for each major GIMP release. + mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz + + + + gimpfx-foundry + + gimp + + + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + + 2014-06-19 + 2.6.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.6.1 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2009-07-24 + 2.6.1 + First release + Anıl Özbek + admins@pisilinux.org + + + \ No newline at end of file diff --git a/multimedia/graphics/gimp/addon/gimpfx-foundry/translations.xml b/multimedia/graphics/gimp/addon/gimpfx-foundry/translations.xml new file mode 100644 index 0000000000..554d246b04 --- /dev/null +++ b/multimedia/graphics/gimp/addon/gimpfx-foundry/translations.xml @@ -0,0 +1,8 @@ + + + + gimpfx-foundry + GIMP için zengin bir betik paketi + FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. + + diff --git a/multimedia/graphics/gimp/gimp/actions.py b/multimedia/graphics/gimp/gimp/actions.py new file mode 100644 index 0000000000..7e4e55f244 --- /dev/null +++ b/multimedia/graphics/gimp/gimp/actions.py @@ -0,0 +1,52 @@ +#!/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 shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + pisitools.dosed("app/text/gimpfont.c", "freetype/tttables.h", "freetype2/tttables.h") + autotools.autoreconf("-fi") + autotools.configure("--without-webkit \ + --disable-gtk-doc \ + --disable-altivec \ + --disable-alsatest \ + --enable-python \ + --enable-default-binary \ + --enable-mmx \ + --enable-sse \ + --enable-mp \ + --with-linux-input \ + --with-poppler \ + --with-libjpeg \ + --with-libexif \ + --with-librsvg \ + --with-libtiff \ + --with-libmng \ + --with-libpng \ + --with-webkit \ + --with-lcms \ + --with-alsa \ + --with-dbus \ + --with-aa \ + --with-x") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + + # Add illustrator and other mime types + pisitools.dosed("desktop/gimp.desktop.in", "^MimeType=application/postscript;application/pdf;(.*)$", + "MimeType=\\1;image/x-sun-raster;image/x-gray;image/x-pcx;image/jpg;image/x-bmp;image/pjpeg;image/x-png;application/illustrator;") + + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog*", "HACKING", "NEWS", "README", "INSTALL", "LICENSE") \ No newline at end of file diff --git a/multimedia/graphics/gimp/gimp/files/gimp-splash-colors.png b/multimedia/graphics/gimp/gimp/files/gimp-splash-colors.png new file mode 100644 index 0000000000000000000000000000000000000000..b72c2d442f2433ed39c3a637b865ad85bfd23dd5 GIT binary patch literal 342227 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 q=Wl96JfqtZ;>XC{RB)vp}06Dr^i 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

C5mH?GMliDY+T z330q5(HSGgT?_CSdk1%dNZxrsDc}@V5Jr0ySQ7kF2UTViP69#BScjoA*5dl0Wkfy} zvBQ`wkuieT{=d;sRexth>qZp+VLrl;0d1NE=&9?9!zs#oN#S2rBcMq`AH3XhX)!%8 ziCQ^iMbf(gMZ4@UL#JSxQewL76XF-aKY5X)IHE_l5Y-#!^~Cbhl5Q4Hw-H%k jO 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%0D* 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%0DmO$a21euu#*~~h-LO$++O|GMPQtZOa7cq; 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

!->pQTOe`DI0>KUCzEF5&xc=C972 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 Se7w&90000, 2001. +# Alper Ersoy , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: GIMP 1.2.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-08 19:59+0000\n" +"PO-Revision-Date: 2011-01-22 15:37+0000\n" +"Last-Translator: Alper Ersoy \n" +"Language-Team: Turkish \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" +"X-Launchpad-Export-Date: 2011-08-09 06:12+0000\n" +"X-Generator: Launchpad (build 13628)\n" + +#. procedure executed successfully +#: ../libgimp/gimp.c:1045 +msgid "success" +msgstr "Başarılı" + +#. procedure execution failed +#: ../libgimp/gimp.c:1049 +msgid "execution error" +msgstr "Uygulama Hatası" + +#. procedure called incorrectly +#: ../libgimp/gimp.c:1053 +msgid "calling error" +msgstr "Çağırma Hatası" + +#. procedure execution cancelled +#: ../libgimp/gimp.c:1057 +msgid "cancelled" +msgstr "İptal edildi" + +#: ../libgimp/gimpbrushselectbutton.c:170 +msgid "Brush Selection" +msgstr "Fırça Seçimi" + +#: ../libgimp/gimpbrushselectbutton.c:913 +#: ../libgimp/gimppatternselectbutton.c:714 +msgid "_Browse..." +msgstr "_Gözat..." + +#: ../libgimp/gimpexport.c:217 ../libgimp/gimpexport.c:253 +#, c-format +msgid "%s plug-in can't handle layers" +msgstr "%s eklentisi katmanları kullanamaz" + +#: ../libgimp/gimpexport.c:218 ../libgimp/gimpexport.c:227 +#: ../libgimp/gimpexport.c:236 ../libgimp/gimpexport.c:254 +msgid "Merge Visible Layers" +msgstr "Görülen Katmanları Birleştir" + +#: ../libgimp/gimpexport.c:226 +#, c-format +msgid "%s plug-in can't handle layer offsets, size or opacity" +msgstr "" +"%s eklentisi katmanın göreli konumlarını, boyutunu ya da ışık geçirmezliğini " +"kullanamaz" + +#: ../libgimp/gimpexport.c:235 ../libgimp/gimpexport.c:244 +#, c-format +msgid "%s plug-in can only handle layers as animation frames" +msgstr "" +"%s eklentisi katmanları sadece canlandırma karesi olarak kullanabilir" + +#: ../libgimp/gimpexport.c:236 ../libgimp/gimpexport.c:245 +msgid "Save as Animation" +msgstr "Animasyon olarak kaydet" + +#: ../libgimp/gimpexport.c:245 ../libgimp/gimpexport.c:254 +#: ../libgimp/gimpexport.c:263 +msgid "Flatten Image" +msgstr "Resmi Düzleştir" + +#: ../libgimp/gimpexport.c:262 +#, c-format +msgid "%s plug-in can't handle transparency" +msgstr "%s eklentisi saydamlığı kullanamaz" + +#: ../libgimp/gimpexport.c:271 +#, c-format +msgid "%s plug-in can't handle layer masks" +msgstr "%s eklentisi katman maskelerini kullanamaz" + +#: ../libgimp/gimpexport.c:272 +msgid "Apply Layer Masks" +msgstr "Katman Maskelerini Uygula" + +#: ../libgimp/gimpexport.c:280 +#, c-format +msgid "%s plug-in can only handle RGB images" +msgstr "%s eklentisi sadece RGB görüntülerini kullanabilir" + +#: ../libgimp/gimpexport.c:281 ../libgimp/gimpexport.c:319 +#: ../libgimp/gimpexport.c:328 +msgid "Convert to RGB" +msgstr "KYM'ye çevir" + +#: ../libgimp/gimpexport.c:289 +#, c-format +msgid "%s plug-in can only handle grayscale images" +msgstr "%s eklentisi sadece gri ölçekli görüntüleri kullanabilir" + +#: ../libgimp/gimpexport.c:290 ../libgimp/gimpexport.c:319 +#: ../libgimp/gimpexport.c:340 +msgid "Convert to Grayscale" +msgstr "Griölçekliye çevir" + +#: ../libgimp/gimpexport.c:298 +#, c-format +msgid "%s plug-in can only handle indexed images" +msgstr "%s eklentisi sadece sıralanmış görüntüleri kullanabilir" + +#: ../libgimp/gimpexport.c:299 ../libgimp/gimpexport.c:328 +#: ../libgimp/gimpexport.c:338 +msgid "" +"Convert to Indexed using default settings\n" +"(Do it manually to tune the result)" +msgstr "" +"Öntanımlıları kullanarak dizinliye çevir\n" +"(Sonuç üzerinde ince ayar için kendiniz çevirin)" + +#: ../libgimp/gimpexport.c:308 +#, c-format +msgid "%s plug-in can only handle bitmap (two color) indexed images" +msgstr "" +"%s eklentisi sadece ikil eşlemli (iki renk) sıralanmış görüntüleri " +"kullanabilir" + +#: ../libgimp/gimpexport.c:309 +msgid "" +"Convert to Indexed using bitmap default settings\n" +"(Do it manually to tune the result)" +msgstr "" +"İkil eşlemli varsayılan ayarları kullanarak sıralanmışa çevir\n" +"(Sonucu ayarlamak için bunu kendiniz yapın)" + +#: ../libgimp/gimpexport.c:318 +#, c-format +msgid "%s plug-in can only handle RGB or grayscale images" +msgstr "%s eklentisi sadece RGB ya da gri ölçekli görüntüler kullanabilir" + +#: ../libgimp/gimpexport.c:327 +#, c-format +msgid "%s plug-in can only handle RGB or indexed images" +msgstr "%s eklentisi sadece RGB ya da sıralanmış görüntüler kullanabilir" + +#: ../libgimp/gimpexport.c:337 +#, c-format +msgid "%s plug-in can only handle grayscale or indexed images" +msgstr "" +"%s eklentisi sadece gri ölçekli ya da sıralanmış görüntüler kullanabilir" + +#: ../libgimp/gimpexport.c:348 +#, c-format +msgid "%s plug-in needs an alpha channel" +msgstr "%s eklentisi bir görünür kanalına gereksiniyor" + +#: ../libgimp/gimpexport.c:349 +msgid "Add Alpha Channel" +msgstr "Alfa Kanalı Ekle" + +#: ../libgimp/gimpexport.c:383 +msgid "Confirm Save" +msgstr "Kaydetmeyi Onayla" + +#: ../libgimp/gimpexport.c:389 +msgid "Confirm" +msgstr "Onayla" + +#: ../libgimp/gimpexport.c:464 +msgid "Export File" +msgstr "Dosyayı Dışarı Aktar" + +#: ../libgimp/gimpexport.c:468 +msgid "_Ignore" +msgstr "_Yoksay" + +#: ../libgimp/gimpexport.c:470 +msgid "_Export" +msgstr "_Dışa aktar" + +#. the headline +#: ../libgimp/gimpexport.c:499 +#, c-format +msgid "" +"Your image should be exported before it can be saved as %s for the following " +"reasons:" +msgstr "" +"Görüntünüz %s olarak kaydedilmeden önce izleyen nedenler için dışa " +"aktarılmalıdır:" + +#. the footline +#: ../libgimp/gimpexport.c:573 +msgid "The export conversion won't modify your original image." +msgstr "Dışarı aktarma işlemi orjinal resimde değişiklik yapmaz." + +#: ../libgimp/gimpexport.c:673 +#, c-format +msgid "" +"You are about to save a layer mask as %s.\n" +"This will not save the visible layers." +msgstr "" +"Bir katman maskesini %s olarak imlemek üzeresiniz.\n" +"Bu işlem görünebilir katmanları kaydetmeyecektir." + +#: ../libgimp/gimpexport.c:679 +#, c-format +msgid "" +"You are about to save a channel (saved selection) as %s.\n" +"This will not save the visible layers." +msgstr "" +"Bir katmanı (kaydedilmiş seçim) %s olarak kaydetmek üzeresiniz.\n" +"Bu işlem görünebilir katmanları kaydetmeyecektir." + +#: ../libgimp/gimpfontselectbutton.c:130 +msgid "Font Selection" +msgstr "Yazıyüzü Seçimi" + +#: ../libgimp/gimpfontselectbutton.c:145 +msgid "Sans" +msgstr "Sans" + +#: ../libgimp/gimpgradientselectbutton.c:148 +msgid "Gradient Selection" +msgstr "Renk Geçişi Seçimi" + +#: ../libgimp/gimpmenu.c:450 ../libgimpwidgets/gimpintstore.c:239 +msgid "(Empty)" +msgstr "(Boş)" + +#: ../libgimp/gimppaletteselectbutton.c:130 +msgid "Palette Selection" +msgstr "Palet Seçimi" + +#: ../libgimp/gimppatternselectbutton.c:156 +msgid "Pattern Selection" +msgstr "Desen Seçimi" + +#: ../libgimp/gimpprocbrowserdialog.c:140 +msgid "by name" +msgstr "ada göre" + +#: ../libgimp/gimpprocbrowserdialog.c:141 +msgid "by description" +msgstr "betimlemeye göre" + +#: ../libgimp/gimpprocbrowserdialog.c:142 +msgid "by help" +msgstr "yardıma göre" + +#: ../libgimp/gimpprocbrowserdialog.c:143 +msgid "by author" +msgstr "yazara göre" + +#: ../libgimp/gimpprocbrowserdialog.c:144 +msgid "by copyright" +msgstr "telif hakkına göre" + +#: ../libgimp/gimpprocbrowserdialog.c:145 +msgid "by date" +msgstr "tarihe göre" + +#: ../libgimp/gimpprocbrowserdialog.c:146 +msgid "by type" +msgstr "türe göre" + +#: ../libgimp/gimpprocbrowserdialog.c:377 +msgid "Searching" +msgstr "Aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:388 +msgid "Searching by name" +msgstr "Ada göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:409 +msgid "Searching by description" +msgstr "Betimlemeye göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:416 +msgid "Searching by help" +msgstr "Yardıma göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:423 +msgid "Searching by author" +msgstr "Yazara göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:430 +msgid "Searching by copyright" +msgstr "Telif hakkına göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:437 +msgid "Searching by date" +msgstr "Tarihe göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:444 +msgid "Searching by type" +msgstr "Türe göre aranıyor" + +#: ../libgimp/gimpprocbrowserdialog.c:454 +#, c-format +msgid "%d procedure" +msgid_plural "%d procedures" +msgstr[0] "%d yordam" + +#: ../libgimp/gimpprocbrowserdialog.c:463 +msgid "No matches for your query" +msgstr "Sorgulamanız için uygun eşleşme yok" + +#: ../libgimp/gimpprocbrowserdialog.c:467 +#, c-format +msgid "%d procedure matches your query" +msgid_plural "%d procedures match your query" +msgstr[0] "%d yordam sorgulamanız ile eşleşiyor" + +#. count label +#: ../libgimp/gimpprocbrowserdialog.c:516 ../libgimpwidgets/gimpbrowser.c:114 +msgid "No matches" +msgstr "Eşleşme yok" + +#: ../libgimp/gimpprocview.c:143 +msgid "Parameters" +msgstr "Değiştirgeler" + +#: ../libgimp/gimpprocview.c:156 +msgid "Return Values" +msgstr "Değerleri Geri Getir" + +#: ../libgimp/gimpprocview.c:169 +msgid "Additional Information" +msgstr "Ek Bilgi" + +#: ../libgimp/gimpprocview.c:209 +msgid "Author:" +msgstr "Yazar:" + +#: ../libgimp/gimpprocview.c:221 +msgid "Date:" +msgstr "Tarih:" + +#: ../libgimp/gimpprocview.c:233 +msgid "Copyright:" +msgstr "Telif Hakkı:" + +#: ../libgimp/gimpunitcache.c:57 +msgid "percent" +msgstr "yüzdelik" + +#: ../libgimpbase/gimpbaseenums.c:28 +msgid "_White (full opacity)" +msgstr "_Beyaz (tam ışık geçirmezlik)" + +#: ../libgimpbase/gimpbaseenums.c:29 +msgid "_Black (full transparency)" +msgstr "_Siyah (tam saydamlık)" + +#: ../libgimpbase/gimpbaseenums.c:30 +msgid "Layer's _alpha channel" +msgstr "Katmanın _görünür kanalı" + +#: ../libgimpbase/gimpbaseenums.c:31 +msgid "_Transfer layer's alpha channel" +msgstr "Katmanın görünür kanalını a_ktar" + +#: ../libgimpbase/gimpbaseenums.c:32 +msgid "_Selection" +msgstr "S_eçim" + +#: ../libgimpbase/gimpbaseenums.c:33 +msgid "_Grayscale copy of layer" +msgstr "Katmanın _gri ölçekli kopyası" + +#: ../libgimpbase/gimpbaseenums.c:34 +msgid "C_hannel" +msgstr "Ka_tman" + +#: ../libgimpbase/gimpbaseenums.c:64 +msgid "FG to BG (RGB)" +msgstr "Önplandan Arkaplana (RGB)" + +#: ../libgimpbase/gimpbaseenums.c:65 +msgid "FG to BG (HSV)" +msgstr "Önplandan Arkaplana (RDD)" + +#: ../libgimpbase/gimpbaseenums.c:66 +msgid "FG to transparent" +msgstr "Önalandan saydama" + +#: ../libgimpbase/gimpbaseenums.c:67 +msgid "Custom gradient" +msgstr "Özel renk geçişi" + +#: ../libgimpbase/gimpbaseenums.c:96 +msgid "FG color fill" +msgstr "ÖA renk doldurma" + +#: ../libgimpbase/gimpbaseenums.c:97 +msgid "BG color fill" +msgstr "AA renk doldurma" + +#: ../libgimpbase/gimpbaseenums.c:98 +msgid "Pattern fill" +msgstr "Desen doldurma" + +#: ../libgimpbase/gimpbaseenums.c:128 +msgid "Add to the current selection" +msgstr "Geçerli seçime ekle" + +#: ../libgimpbase/gimpbaseenums.c:129 +msgid "Subtract from the current selection" +msgstr "Geçerli seçimden çıkar" + +#: ../libgimpbase/gimpbaseenums.c:130 +msgid "Replace the current selection" +msgstr "Geçerli seçimin yerine yaz" + +#: ../libgimpbase/gimpbaseenums.c:131 +msgid "Intersect with the current selection" +msgstr "Geçerli seçimle kesiştir" + +#: ../libgimpbase/gimpbaseenums.c:163 ../libgimpwidgets/gimpwidgetsenums.c:126 +msgid "Red" +msgstr "Kırmızı" + +#: ../libgimpbase/gimpbaseenums.c:164 ../libgimpwidgets/gimpwidgetsenums.c:127 +msgid "Green" +msgstr "Yeşil" + +#: ../libgimpbase/gimpbaseenums.c:165 ../libgimpwidgets/gimpwidgetsenums.c:128 +msgid "Blue" +msgstr "Mavi" + +#: ../libgimpbase/gimpbaseenums.c:166 +msgid "Gray" +msgstr "Gri" + +#: ../libgimpbase/gimpbaseenums.c:167 ../libgimpbase/gimpbaseenums.c:532 +msgid "Indexed" +msgstr "İndisli" + +#: ../libgimpbase/gimpbaseenums.c:168 ../libgimpwidgets/gimpwidgetsenums.c:129 +msgid "Alpha" +msgstr "Alfa" + +#: ../libgimpbase/gimpbaseenums.c:197 +msgid "Small" +msgstr "Ufak" + +#: ../libgimpbase/gimpbaseenums.c:198 +msgid "Medium" +msgstr "Orta" + +#: ../libgimpbase/gimpbaseenums.c:199 +msgid "Large" +msgstr "Büyük" + +#: ../libgimpbase/gimpbaseenums.c:231 +msgid "Light checks" +msgstr "Açık denetimler" + +#: ../libgimpbase/gimpbaseenums.c:232 +msgid "Mid-tone checks" +msgstr "Orta-Tonda denetimler" + +#: ../libgimpbase/gimpbaseenums.c:233 +msgid "Dark checks" +msgstr "Koyu denetimler" + +#: ../libgimpbase/gimpbaseenums.c:234 +msgid "White only" +msgstr "Sadece beyaz" + +#: ../libgimpbase/gimpbaseenums.c:235 +msgid "Gray only" +msgstr "Sadece gri" + +#: ../libgimpbase/gimpbaseenums.c:236 +msgid "Black only" +msgstr "Sadece siyah" + +#: ../libgimpbase/gimpbaseenums.c:264 +msgid "Image" +msgstr "Görüntü" + +#: ../libgimpbase/gimpbaseenums.c:265 +msgid "Pattern" +msgstr "Desen" + +#: ../libgimpbase/gimpbaseenums.c:294 +msgid "Lightness" +msgstr "Hafiflik" + +#: ../libgimpbase/gimpbaseenums.c:295 +msgid "Luminosity" +msgstr "Parlaklık" + +#: ../libgimpbase/gimpbaseenums.c:296 +msgid "Average" +msgstr "Ortalama" + +#: ../libgimpbase/gimpbaseenums.c:324 +msgid "Dodge" +msgstr "Temizleme" + +#: ../libgimpbase/gimpbaseenums.c:325 +msgid "Burn" +msgstr "Yakma" + +#: ../libgimpbase/gimpbaseenums.c:389 +msgid "gradient|Linear" +msgstr "Doğrusal" + +#: ../libgimpbase/gimpbaseenums.c:390 +msgid "Bi-linear" +msgstr "Çift çizgi" + +#: ../libgimpbase/gimpbaseenums.c:391 +msgid "Radial" +msgstr "Dairesel" + +#: ../libgimpbase/gimpbaseenums.c:392 ../libgimpwidgets/gimpwidgetsenums.c:24 +msgid "Square" +msgstr "Kare" + +#: ../libgimpbase/gimpbaseenums.c:393 +msgid "Conical (sym)" +msgstr "Konuk (sim)" + +#: ../libgimpbase/gimpbaseenums.c:394 +msgid "Conical (asym)" +msgstr "Konuk (asim)" + +#: ../libgimpbase/gimpbaseenums.c:395 +msgid "Shaped (angular)" +msgstr "Şekillenmiş (açısal)" + +#: ../libgimpbase/gimpbaseenums.c:396 +msgid "Shaped (spherical)" +msgstr "Şekillenmiş (küresel)" + +#: ../libgimpbase/gimpbaseenums.c:397 +msgid "Shaped (dimpled)" +msgstr "Şekillenmiş (çukurlu)" + +#: ../libgimpbase/gimpbaseenums.c:398 +msgid "Spiral (cw)" +msgstr "Spiral (saat yönünde)" + +#: ../libgimpbase/gimpbaseenums.c:399 +msgid "Spiral (ccw)" +msgstr "Spiral (saat yönünün tersinde)" + +#: ../libgimpbase/gimpbaseenums.c:430 +msgid "Intersections (dots)" +msgstr "Kesişimler (noktalar)" + +#: ../libgimpbase/gimpbaseenums.c:431 +msgid "Intersections (crosshairs)" +msgstr "Kesişimler (artı imleçler)" + +#: ../libgimpbase/gimpbaseenums.c:432 +msgid "Dashed" +msgstr "Tireli" + +#: ../libgimpbase/gimpbaseenums.c:433 +msgid "Double dashed" +msgstr "Çift çizgili" + +#: ../libgimpbase/gimpbaseenums.c:434 +msgid "Solid" +msgstr "Kesiksiz" + +#: ../libgimpbase/gimpbaseenums.c:463 +msgid "Stock ID" +msgstr "Depo Kimliği" + +#: ../libgimpbase/gimpbaseenums.c:464 +msgid "Inline pixbuf" +msgstr "Satıriçi pixbuf" + +#: ../libgimpbase/gimpbaseenums.c:465 +msgid "Image file" +msgstr "Görüntü dosyası" + +#: ../libgimpbase/gimpbaseenums.c:494 +msgid "RGB color" +msgstr "RGB rengi" + +#: ../libgimpbase/gimpbaseenums.c:495 ../libgimpbase/gimpbaseenums.c:530 +msgid "Grayscale" +msgstr "Griölçekli" + +#: ../libgimpbase/gimpbaseenums.c:496 +msgid "Indexed color" +msgstr "Sıralanmış renk" + +#: ../libgimpbase/gimpbaseenums.c:528 +msgid "RGB" +msgstr "RGB" + +#: ../libgimpbase/gimpbaseenums.c:529 +msgid "RGB-alpha" +msgstr "RGB-görünür" + +#: ../libgimpbase/gimpbaseenums.c:531 +msgid "Grayscale-alpha" +msgstr "Gri ölçekli-görünür" + +#: ../libgimpbase/gimpbaseenums.c:533 +msgid "Indexed-alpha" +msgstr "Sıralanmış-görünür" + +#: ../libgimpbase/gimpbaseenums.c:563 +msgid "interpolation|None" +msgstr "Hiçbiri" + +#: ../libgimpbase/gimpbaseenums.c:564 +msgid "interpolation|Linear" +msgstr "Doğrusal" + +#: ../libgimpbase/gimpbaseenums.c:565 +msgid "Cubic" +msgstr "Kübik" + +#: ../libgimpbase/gimpbaseenums.c:566 +msgid "Sinc (Lanczos3)" +msgstr "Sinc (Lanczos3)" + +#: ../libgimpbase/gimpbaseenums.c:594 +msgid "Constant" +msgstr "Sabit" + +#: ../libgimpbase/gimpbaseenums.c:595 +msgid "Incremental" +msgstr "Artımlı" + +#: ../libgimpbase/gimpbaseenums.c:624 ../modules/display-filter-lcms.c:191 +msgid "None" +msgstr "Yok" + +#: ../libgimpbase/gimpbaseenums.c:625 +msgid "Sawtooth wave" +msgstr "Testere dişi dalga" + +#: ../libgimpbase/gimpbaseenums.c:626 +msgid "Triangular wave" +msgstr "Üçgensel dalga" + +#: ../libgimpbase/gimpbaseenums.c:655 +msgid "Run interactively" +msgstr "Etkileşimli çalıştır" + +#: ../libgimpbase/gimpbaseenums.c:656 +msgid "Run non-interactively" +msgstr "Etkileşimsiz çalıştır" + +#: ../libgimpbase/gimpbaseenums.c:657 +msgid "Run with last used values" +msgstr "Kullanılmış son değerlerle çalıştır" + +#: ../libgimpbase/gimpbaseenums.c:685 +msgid "Pixels" +msgstr "Piksel" + +#: ../libgimpbase/gimpbaseenums.c:686 +msgid "Points" +msgstr "Noktalar" + +#: ../libgimpbase/gimpbaseenums.c:715 +msgid "Shadows" +msgstr "Gölgeler" + +#: ../libgimpbase/gimpbaseenums.c:716 +msgid "Midtones" +msgstr "Ortatonlar" + +#: ../libgimpbase/gimpbaseenums.c:717 +msgid "Highlights" +msgstr "Yüksektonlar" + +#: ../libgimpbase/gimpbaseenums.c:745 +msgid "Normal (Forward)" +msgstr "Normal (İleriye)" + +#: ../libgimpbase/gimpbaseenums.c:746 +msgid "Corrective (Backward)" +msgstr "Düzeltici (Geriye)" + +#: ../libgimpbase/gimpbaseenums.c:776 +msgid "Adjust" +msgstr "Ayarla" + +#: ../libgimpbase/gimpbaseenums.c:777 +msgid "Clip" +msgstr "Kırp" + +#: ../libgimpbase/gimpbaseenums.c:778 +msgid "Crop to result" +msgstr "Sonuca kırp" + +#: ../libgimpbase/gimpbaseenums.c:779 +msgid "Crop with aspect" +msgstr "En boy ile kırp" + +#: ../libgimpbase/gimpbaseenums.c:909 +msgid "Internal GIMP procedure" +msgstr "İçsel GIMP yordamı" + +#: ../libgimpbase/gimpbaseenums.c:910 +msgid "GIMP Plug-In" +msgstr "GIMP Eklentisi" + +#: ../libgimpbase/gimpbaseenums.c:911 +msgid "GIMP Extension" +msgstr "GIMP Uzantısı" + +#: ../libgimpbase/gimpbaseenums.c:912 +msgid "Temporary Procedure" +msgstr "Geçici Yordam" + +#: ../libgimpbase/gimpbaseenums.c:1074 +msgid "From left to right" +msgstr "Soldan sağa" + +#: ../libgimpbase/gimpbaseenums.c:1075 +msgid "From right to left" +msgstr "Sağdan sola" + +#: ../libgimpbase/gimpbaseenums.c:1105 +msgid "Left justified" +msgstr "Sola hizalı" + +#: ../libgimpbase/gimpbaseenums.c:1106 +msgid "Right justified" +msgstr "Sağa hizalı" + +#: ../libgimpbase/gimpbaseenums.c:1107 +msgid "Centered" +msgstr "Merkezde" + +#: ../libgimpbase/gimpbaseenums.c:1108 +msgid "Filled" +msgstr "Doldurulmuş" + +#: ../libgimpbase/gimputils.c:170 ../libgimpbase/gimputils.c:175 +#: ../modules/display-filter-lcms.c:183 +#: ../modules/color-selector-cmyk-lcms.c:422 +#: ../modules/color-selector-cmyk-lcms.c:428 +msgid "(invalid UTF-8 string)" +msgstr "(geçersiz UTF-8 satırı)" + +#: ../libgimpconfig/gimpcolorconfig.c:42 +msgid "Mode of operation for color management." +msgstr "Renk yönetimi için işlem kipi" + +#: ../libgimpconfig/gimpcolorconfig.c:44 +msgid "The color profile of your (primary) monitor." +msgstr "Birincil monitörünüzün renk profili." + +#: ../libgimpconfig/gimpcolorconfig.c:46 +msgid "" +"When enabled, GIMP will try to use the display color profile from the " +"windowing system. The configured monitor profile is then only used as a " +"fallback." +msgstr "" +"Etkinleştirildiğinde, GIMP, pencere sistemindeki renk ekranı profilini " +"kullanmayı deneyecek. Sonra yapılandırılmış gösterim profili sadece geri " +"alınmış gibi kullanılır." + +#: ../libgimpconfig/gimpcolorconfig.c:50 +msgid "The default RGB working space color profile." +msgstr "Varsayılan RGB çalışma alanı renk profili." + +#: ../libgimpconfig/gimpcolorconfig.c:52 +msgid "The CMYK color profile used to convert between RGB and CMYK." +msgstr "CMYK renk profili, RGB ve CMYK arasında dönüştürmek için kullanılır." + +#: ../libgimpconfig/gimpcolorconfig.c:54 +msgid "The color profile used for simulating a printed version (softproof)." +msgstr "Yazdırılmış sürümün bir benzetimi için renk profili." + +#: ../libgimpconfig/gimpcolorconfig.c:56 +msgid "Sets how colors are mapped for your display." +msgstr "Görüntülemeniz için renklerin nasıl eşleneceğini ayarlar." + +#: ../libgimpconfig/gimpcolorconfig.c:58 +msgid "" +"Sets how colors are converted from RGB working space to the print simulation " +"device." +msgstr "" +"RGB çalışma alanından yazdırma benzetimi aygıtına renklerin nasıl " +"dönüştürüleceğini ayarlar." + +#: ../libgimpconfig/gimpcolorconfig.c:61 +msgid "" +"When enabled, the print simulation will mark colors which can not be " +"represented in the target color space." +msgstr "" +"Etkin olduğunda, yazdırma benzetimi hedef renk alanı içinde resmedilmemiş " +"renkleri imleyecek." + +#: ../libgimpconfig/gimpcolorconfig.c:64 +msgid "The color to use for marking colors which are out of gamut." +msgstr "Takımın dışındaki renkleri işaretlemek için kullanılacak renk" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:24 +msgid "No color management" +msgstr "Renk yönetimi yok" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:25 +msgid "Color managed display" +msgstr "Renk yönetimli görüntüleme" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:26 +msgid "Print simulation" +msgstr "Benzetimi yazdır" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:56 +msgid "Perceptual" +msgstr "Algısal" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:57 +msgid "Relative colorimetric" +msgstr "Göreceli renk ölçer" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:58 +msgid "intent|Saturation" +msgstr "Doygunluk" + +#: ../libgimpconfig/gimpcolorconfig-enums.c:59 +msgid "Absolute colorimetric" +msgstr "Salt renk ölçer" + +#: ../libgimpconfig/gimpconfig-deserialize.c:97 +#, c-format +msgid "value for token %s is not a valid UTF-8 string" +msgstr "%s anahtarına verilen değer geçerli bir UTF-8 dizgesi değil" + +#. please don't translate 'yes' and 'no' +#: ../libgimpconfig/gimpconfig-deserialize.c:436 +#, c-format +msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" +msgstr "Boole anahtar %s için 'yes' veya 'no' bekleniyordu, '%s' alındı" + +#: ../libgimpconfig/gimpconfig-deserialize.c:510 +#, c-format +msgid "invalid value '%s' for token %s" +msgstr "Geçersiz seçenek '%s' (anahtar %s)" + +#: ../libgimpconfig/gimpconfig-deserialize.c:525 +#, c-format +msgid "invalid value '%ld' for token %s" +msgstr "Geçersiz değer '%ld' (anahtar %s)" + +#: ../libgimpconfig/gimpconfig-deserialize.c:594 +#, c-format +msgid "while parsing token '%s': %s" +msgstr "'%s' belirteci ayrıştırılırken: '%s" + +#: ../libgimpconfig/gimpconfig-iface.c:474 +#: ../libgimpconfig/gimpconfig-iface.c:487 ../libgimpconfig/gimpscanner.c:498 +#: ../libgimpconfig/gimpscanner.c:579 +#: ../libgimpwidgets/gimpcolorprofilestore.c:656 +msgid "fatal parse error" +msgstr "ölümcül ayrıştırma hatası" + +#: ../libgimpconfig/gimpconfig-path.c:377 +#, c-format +msgid "Cannot expand ${%s}" +msgstr "${%s} genişletilemiyor" + +#: ../libgimpconfig/gimpconfigwriter.c:78 +#: ../libgimpconfig/gimpconfigwriter.c:718 +#, c-format +msgid "Error writing to '%s': %s" +msgstr "'%s' üzerine yazılırken hata: %s" + +#: ../libgimpconfig/gimpconfigwriter.c:136 +#, c-format +msgid "Could not create temporary file for '%s': %s" +msgstr "'%s' için geçici dosya oluşturulamadı: %s" + +#: ../libgimpconfig/gimpconfigwriter.c:149 +#, c-format +msgid "Could not open '%s' for writing: %s" +msgstr "Yazma için '%s' açılamadı: %s" + +#: ../libgimpconfig/gimpconfigwriter.c:679 +#: ../libgimpconfig/gimpconfigwriter.c:699 +#, c-format +msgid "" +"Error writing to temporary file for '%s': %s\n" +"The original file has not been touched." +msgstr "" +"'%s' için geçici dosyaya yazma hatası: %s\n" +"Özgün dosyaya dokunulmamış." + +#: ../libgimpconfig/gimpconfigwriter.c:707 +#, c-format +msgid "" +"Error writing to temporary file for '%s': %s\n" +"No file has been created." +msgstr "" +"'%s' için geçici dosyaya yazma hatası: %s\n" +"Oluşturulmuş dosya yok." + +#: ../libgimpconfig/gimpconfigwriter.c:731 +#, c-format +msgid "Could not create '%s': %s" +msgstr "'%s' oluşturulamadı: %s" + +#: ../libgimpconfig/gimpscanner.c:255 +#, c-format +msgid "invalid UTF-8 string" +msgstr "Geçersiz UTF-8 dizgesi" + +#: ../libgimpconfig/gimpscanner.c:606 +#, c-format +msgid "Error while parsing '%s' in line %d: %s" +msgstr "'%s' ayrıştırılırken %d satırı içinde hata: %s" + +#: ../libgimpmodule/gimpmodule.c:153 ../libgimpmodule/gimpmodule.c:171 +#: ../libgimpmodule/gimpmodule.c:280 ../libgimpmodule/gimpmodule.c:307 +#: ../libgimpmodule/gimpmodule.c:418 +#, c-format +msgid "Module '%s' load error: %s" +msgstr "'%s' birimi yükleme hatası: %s" + +#: ../libgimpmodule/gimpmodule.c:375 +msgid "Module error" +msgstr "Birim hatası" + +#: ../libgimpmodule/gimpmodule.c:376 +msgid "Loaded" +msgstr "Yüklendi" + +#: ../libgimpmodule/gimpmodule.c:377 +msgid "Load failed" +msgstr "Yükleme başarısız" + +#: ../libgimpmodule/gimpmodule.c:378 +msgid "Not loaded" +msgstr "Yüklenmedi" + +#: ../libgimpthumb/gimpthumb-utils.c:123 +#, c-format +msgid "" +"Cannot determine a valid home directory.\n" +"Thumbnails will be stored in the folder for temporary files (%s) instead." +msgstr "" +"Geçerli bir ev dizini tanımlanamadı.\n" +"Küçük resimcikler geçici dosyalar %s yerine dizinde depolanacaktır." + +#: ../libgimpthumb/gimpthumb-utils.c:247 ../libgimpthumb/gimpthumb-utils.c:315 +#, c-format +msgid "Failed to create thumbnail folder '%s'." +msgstr "'%s' minyatür dizini oluşturmada hata." + +#: ../libgimpthumb/gimpthumbnail.c:498 +#, c-format +msgid "Thumbnail contains no Thumb::URI tag" +msgstr "Minyatür içeriğinde Thumb::URI etiketi yok." + +#: ../libgimpthumb/gimpthumbnail.c:898 +#, c-format +msgid "Could not create thumbnail for %s: %s" +msgstr "%s için minyatür oluşturulamadı: %s" + +#: ../libgimpwidgets/gimpbrowser.c:98 +msgid "_Search:" +msgstr "_Ara:" + +#: ../libgimpwidgets/gimpcolorbutton.c:118 +msgid "_Foreground Color" +msgstr "Ö_nalan Rengi" + +#: ../libgimpwidgets/gimpcolorbutton.c:122 +msgid "_Background Color" +msgstr "_Artalan Rengi" + +#: ../libgimpwidgets/gimpcolorbutton.c:126 +msgid "Blac_k" +msgstr "Siya_h" + +#: ../libgimpwidgets/gimpcolorbutton.c:130 +msgid "_White" +msgstr "_Beyaz" + +#: ../libgimpwidgets/gimpcolorprofilestore.c:144 +msgid "Select color profile from disk..." +msgstr "Diskten renk profili seçin." + +#: ../libgimpwidgets/gimpcolorprofilestore.c:280 +msgctxt "profile" +msgid "None" +msgstr "Hiçbiri" + +#: ../libgimpwidgets/gimpcolorscales.c:98 +msgid "Scales" +msgstr "Ölçekler" + +#: ../libgimpwidgets/gimpcolorselection.c:210 +msgid "Current:" +msgstr "Şimdiki:" + +#: ../libgimpwidgets/gimpcolorselection.c:232 +msgid "Old:" +msgstr "Eski:" + +#: ../libgimpwidgets/gimpcolorselection.c:286 +msgid "" +"Hexadecimal color notation as used in HTML and CSS. This entry also accepts " +"CSS color names." +msgstr "" +"HTML ve CSS içinde kullanılıan onaltılı renk gösterimi. Bu giriş ayrıca CSS " +"renk adlarını da kabul eder." + +#: ../libgimpwidgets/gimpcolorselection.c:292 +msgid "HTML _notation:" +msgstr "HTML _gösterimi:" + +#: ../libgimpwidgets/gimphelpui.c:420 +msgid "Press F1 for more help" +msgstr "Daha çok yardım için F1'e basın" + +#: ../libgimpwidgets/gimpfileentry.c:174 +msgid "Open a file selector to browse your folders" +msgstr "Dizinlerinize göz atmak için bir dosya seçici açın" + +#: ../libgimpwidgets/gimpfileentry.c:175 +msgid "Open a file selector to browse your files" +msgstr "Dosyalarınıza göz atmak için bir dosya seçici açın" + +#: ../libgimpwidgets/gimpfileentry.c:335 +msgid "Select Folder" +msgstr "Dizin Seç" + +#: ../libgimpwidgets/gimpfileentry.c:337 +msgid "Select File" +msgstr "Dosya Seç" + +#: ../libgimpwidgets/gimpmemsizeentry.c:204 +msgid "Kilobytes" +msgstr "KB" + +#: ../libgimpwidgets/gimpmemsizeentry.c:205 +msgid "Megabytes" +msgstr "MB" + +#: ../libgimpwidgets/gimpmemsizeentry.c:206 +msgid "Gigabytes" +msgstr "GB" + +#. Count label +#: ../libgimpwidgets/gimppageselector.c:269 +#: ../libgimpwidgets/gimppageselector.c:1166 +msgid "Nothing selected" +msgstr "Hiçbir şey seçilmedi" + +#: ../libgimpwidgets/gimppageselector.c:287 +msgid "Select _All" +msgstr "Tü_münü Seç" + +#: ../libgimpwidgets/gimppageselector.c:307 +msgid "Select _range:" +msgstr "Seçim _erimi:" + +#: ../libgimpwidgets/gimppageselector.c:319 +msgid "Open _pages as" +msgstr "_Sayfaları böyle aç" + +#: ../libgimpwidgets/gimppageselector.c:420 +msgid "Page 000" +msgstr "Sayfa 000" + +#: ../libgimpwidgets/gimppageselector.c:508 +#: ../libgimpwidgets/gimppageselector.c:744 +#, c-format +msgid "Page %d" +msgstr "Sayfa %d" + +#: ../libgimpwidgets/gimppageselector.c:1171 +msgid "One page selected" +msgstr "Bir sayfa seçildi" + +#: ../libgimpwidgets/gimppageselector.c:1178 +#: ../libgimpwidgets/gimppageselector.c:1182 +#, c-format +msgid "%d page selected" +msgid_plural "All %d pages selected" +msgstr[0] "%d sayfa seçildi" + +#: ../libgimpwidgets/gimppatheditor.c:214 +msgid "Writable" +msgstr "Yazılabilir" + +#: ../libgimpwidgets/gimppatheditor.c:223 +msgid "Folder" +msgstr "Dizin" + +#: ../libgimpwidgets/gimppickbutton.c:107 +msgid "" +"Click the eyedropper, then click a color anywhere on your screen to select " +"that color." +msgstr "" +"Damlalığa tıkladıktan sonra ekranınızdaki istediğiniz bir renge tıklayarak " +"rengi seçebilirsiniz." + +#: ../libgimpwidgets/gimppreviewarea.c:94 +msgid "Check Size" +msgstr "Denetleme Boyutu" + +#: ../libgimpwidgets/gimppreviewarea.c:101 +msgid "Check Style" +msgstr "Denetleme Biçemi" + +#. toggle button to (de)activate the instant preview +#: ../libgimpwidgets/gimppreview.c:277 +msgid "_Preview" +msgstr "Öniz_leme" + +#: ../libgimpwidgets/gimppropwidgets.c:1860 +#, c-format +msgid "This text input field is limited to %d character." +msgid_plural "This text input field is limited to %d characters." +msgstr[0] "Metin girdi alanı %d karakter ile sınırlandırılmış." + +#: ../libgimpwidgets/gimpstock.c:112 +msgid "Anchor" +msgstr "Bağlayıcı" + +#: ../libgimpwidgets/gimpstock.c:113 +msgid "C_enter" +msgstr "M_erkez" + +#: ../libgimpwidgets/gimpstock.c:114 +msgid "_Duplicate" +msgstr "Çoğal_t" + +#: ../libgimpwidgets/gimpstock.c:115 +msgid "_Edit" +msgstr "_Düzenle" + +#: ../libgimpwidgets/gimpstock.c:116 +msgid "Linked" +msgstr "Bağlı" + +#: ../libgimpwidgets/gimpstock.c:117 +msgid "Paste as New" +msgstr "Yeni olarak Yapıştır" + +#: ../libgimpwidgets/gimpstock.c:118 +msgid "Paste Into" +msgstr "İçine yapıştır" + +#: ../libgimpwidgets/gimpstock.c:119 +msgid "_Reset" +msgstr "_Sıfırla" + +#: ../libgimpwidgets/gimpstock.c:120 +msgid "Visible" +msgstr "Görünür" + +#: ../libgimpwidgets/gimpstock.c:156 ../libgimpwidgets/gimpstock.c:160 +msgid "_Stroke" +msgstr "_Vuruş" + +#: ../libgimpwidgets/gimpstock.c:172 +msgid "L_etter Spacing" +msgstr "H_arf Aralığı" + +#: ../libgimpwidgets/gimpstock.c:173 +msgid "L_ine Spacing" +msgstr "S_atır Aralığı" + +#: ../libgimpwidgets/gimpstock.c:189 +msgid "_Resize" +msgstr "Yeniden _Boyutlandır" + +#: ../libgimpwidgets/gimpstock.c:190 ../libgimpwidgets/gimpstock.c:320 +msgid "_Scale" +msgstr "_Ölçekle" + +#: ../libgimpwidgets/gimpstock.c:296 +msgid "Cr_op" +msgstr "Kır_p" + +#: ../libgimpwidgets/gimpstock.c:315 +msgid "_Transform" +msgstr "_Dönüştür" + +#: ../libgimpwidgets/gimpstock.c:319 +msgid "_Rotate" +msgstr "_Döndür" + +#: ../libgimpwidgets/gimpstock.c:321 +msgid "_Shear" +msgstr "_Kırp" + +#: ../libgimpwidgets/gimpunitmenu.c:266 +msgid "More..." +msgstr "Daha fazla..." + +#: ../libgimpwidgets/gimpunitmenu.c:581 +msgid "Unit Selection" +msgstr "Birim Seçimi" + +#: ../libgimpwidgets/gimpunitmenu.c:629 +msgid "Unit" +msgstr "Birim" + +#: ../libgimpwidgets/gimpunitmenu.c:633 +msgid "Factor" +msgstr "Etken" + +#: ../libgimpwidgets/gimpwidgets.c:511 +msgid "" +"Use this value for random number generator seed - this allows you to repeat " +"a given \"random\" operation" +msgstr "" +"Rastgele sayı üretici için bu değeri kullanın. Bu, \"rastgele\" işlem " +"tekrarı yapmanı sağlar." + +#: ../libgimpwidgets/gimpwidgets.c:515 +msgid "_New Seed" +msgstr "_Yeni Parçacık" + +#: ../libgimpwidgets/gimpwidgets.c:528 +msgid "Seed random number generator with a generated random number" +msgstr "Rastgele üretilen sayı ile rastgele parçacık sayısı üreticisi" + +#: ../libgimpwidgets/gimpwidgets.c:532 +msgid "_Randomize" +msgstr "_Rastgele" + +#: ../libgimpwidgets/gimpwidgetsenums.c:25 +msgid "Portrait" +msgstr "Dikey" + +#: ../libgimpwidgets/gimpwidgetsenums.c:26 +msgid "Landscape" +msgstr "Yatay" + +#: ../libgimpwidgets/gimpwidgetsenums.c:123 +msgid "_H" +msgstr "_H" + +#: ../libgimpwidgets/gimpwidgetsenums.c:123 +msgid "Hue" +msgstr "Renk" + +#: ../libgimpwidgets/gimpwidgetsenums.c:124 +msgid "_S" +msgstr "_S" + +#: ../libgimpwidgets/gimpwidgetsenums.c:124 +msgid "Saturation" +msgstr "Doygunluk" + +#: ../libgimpwidgets/gimpwidgetsenums.c:125 +msgid "_V" +msgstr "_V" + +#: ../libgimpwidgets/gimpwidgetsenums.c:125 +msgid "Value" +msgstr "Değer" + +#: ../libgimpwidgets/gimpwidgetsenums.c:126 +msgid "_R" +msgstr "_R" + +#: ../libgimpwidgets/gimpwidgetsenums.c:127 +msgid "_G" +msgstr "_G" + +#: ../libgimpwidgets/gimpwidgetsenums.c:128 +msgid "_B" +msgstr "_B" + +#: ../libgimpwidgets/gimpwidgetsenums.c:129 +msgid "_A" +msgstr "_A" + +#: ../libgimpwidgets/gimpwidgetsenums.c:157 +msgid "Layers" +msgstr "Katmanlar" + +#: ../libgimpwidgets/gimpwidgetsenums.c:158 +msgid "Images" +msgstr "Görüntüler" + +#: ../libgimpwidgets/gimpwidgetsenums.c:217 +msgid "Zoom in" +msgstr "Büyüt" + +#: ../libgimpwidgets/gimpwidgetsenums.c:218 +msgid "Zoom out" +msgstr "Küçült" + +#: ../modules/display-filter-color-blind.c:67 +msgid "Protanopia (insensitivity to red)" +msgstr "Kırmızıyı görememe (kırmızı duyarsızlığı)" + +#: ../modules/display-filter-color-blind.c:69 +msgid "Deuteranopia (insensitivity to green)" +msgstr "Yeşili görememe (yeşil duyarsızlığı)" + +#: ../modules/display-filter-color-blind.c:71 +msgid "Tritanopia (insensitivity to blue)" +msgstr "Maviyi görememe (mavi duyarsızlığı)" + +#: ../modules/display-filter-color-blind.c:198 +msgid "Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)" +msgstr "Eksik renk canlandırma filtresi (Brettel-Vienot-Mollon algoritması)" + +#: ../modules/display-filter-color-blind.c:261 +msgid "Color Deficient Vision" +msgstr "Renki Eksik Görme" + +#: ../modules/display-filter-color-blind.c:483 +msgid "Color _deficiency type:" +msgstr "Renk _eksiklik türü:" + +#: ../modules/display-filter-gamma.c:90 +msgid "Gamma color display filter" +msgstr "Gama renk görüntüleme süzgeci" + +#: ../modules/display-filter-gamma.c:129 +msgid "Gamma" +msgstr "Gamma" + +#: ../modules/display-filter-gamma.c:232 +msgid "_Gamma:" +msgstr "_Gama:" + +#: ../modules/display-filter-high-contrast.c:90 +msgid "High Contrast color display filter" +msgstr "Yüksek Karşıtlık renk görüntüleme süzgeci" + +#: ../modules/display-filter-high-contrast.c:129 +msgid "Contrast" +msgstr "Karşıtlık" + +#: ../modules/display-filter-high-contrast.c:232 +msgid "Contrast c_ycles:" +msgstr "Karşıtlık d_önüşleri" + +#: ../modules/display-filter-lcms.c:102 +msgid "Color management display filter using ICC color profiles" +msgstr "Renk yönetimi görüntüleme süzgeci ICC renk profillerini kullanıyor" + +#: ../modules/display-filter-lcms.c:134 +msgid "Color Management" +msgstr "Renk Yönetimi" + +#: ../modules/display-filter-lcms.c:212 +msgid "" +"This filter takes its configuration from the Color Management section in the " +"Preferences dialog." +msgstr "" +"Bu süzgeç yapılandırmasını Yeğlenenler kutusu içindeki Renk Yönetimi " +"bölümünden alır." + +#: ../modules/display-filter-lcms.c:226 +msgid "Mode of operation:" +msgstr "İşlem kipi:" + +#: ../modules/display-filter-lcms.c:233 +msgid "Image profile:" +msgstr "Görüntü profili:" + +#: ../modules/display-filter-lcms.c:241 +msgid "Monitor profile:" +msgstr "Monitör profili:" + +#: ../modules/display-filter-lcms.c:249 +msgid "Print simulation profile:" +msgstr "Yazdırma benzetimi profili:" + +#: ../modules/display-filter-proof.c:97 +msgid "Color proof filter using ICC color profile" +msgstr "ICC renk profilini kullanarak renk deneme filtresi" + +#: ../modules/display-filter-proof.c:145 +msgid "Color Proof" +msgstr "Renk Denemesi" + +#: ../modules/display-filter-proof.c:311 +msgid "Choose an ICC Color Profile" +msgstr "Bir ICC Renk Profili seçin" + +#: ../modules/display-filter-proof.c:338 +msgid "All files (*.*)" +msgstr "Tüm dosyalar (*.*)" + +#: ../modules/display-filter-proof.c:343 +msgid "ICC color profile (*.icc, *.icm)" +msgstr "ICC renk profili (*.icc, *.icm)" + +#: ../modules/display-filter-proof.c:401 +msgid "_Profile:" +msgstr "_Profil:" + +#: ../modules/display-filter-proof.c:407 +msgid "_Intent:" +msgstr "_Amaç:" + +#: ../modules/display-filter-proof.c:412 +msgid "_Black Point Compensation" +msgstr "_Siyah Nokta Telafisi" + +#: ../modules/color-selector-cmyk.c:71 +msgid "CMYK color selector" +msgstr "CMYK renk seçici" + +#: ../modules/color-selector-cmyk.c:102 +#: ../modules/color-selector-cmyk-lcms.c:150 +msgid "CMYK" +msgstr "CMYK" + +#. Cyan +#: ../modules/color-selector-cmyk.c:125 +#: ../modules/color-selector-cmyk-lcms.c:169 +msgid "_C" +msgstr "_C" + +#. Magenta +#: ../modules/color-selector-cmyk.c:127 +#: ../modules/color-selector-cmyk-lcms.c:171 +msgid "_M" +msgstr "_M" + +#. Yellow +#: ../modules/color-selector-cmyk.c:129 +#: ../modules/color-selector-cmyk-lcms.c:173 +msgid "_Y" +msgstr "_Y" + +#. Key (Black) +#: ../modules/color-selector-cmyk.c:131 +#: ../modules/color-selector-cmyk-lcms.c:175 +msgid "_K" +msgstr "_K" + +#: ../modules/color-selector-cmyk.c:135 +#: ../modules/color-selector-cmyk-lcms.c:179 +msgid "Cyan" +msgstr "Turkuaz" + +#: ../modules/color-selector-cmyk.c:136 +#: ../modules/color-selector-cmyk-lcms.c:180 +msgid "Magenta" +msgstr "Pembe" + +#: ../modules/color-selector-cmyk.c:137 +#: ../modules/color-selector-cmyk-lcms.c:181 +msgid "Yellow" +msgstr "Sarı" + +#: ../modules/color-selector-cmyk.c:138 +#: ../modules/color-selector-cmyk-lcms.c:182 +msgid "Black" +msgstr "Siyah" + +#: ../modules/color-selector-cmyk.c:172 +msgid "Black _pullout:" +msgstr "Siyah _çekilmesi:" + +#: ../modules/color-selector-cmyk.c:189 +msgid "The percentage of black to pull out of the colored inks." +msgstr "Siyahın çekilmiş boyalı mürekkeplere olan yüzdesi." + +#: ../modules/color-selector-cmyk-lcms.c:87 +msgid "CMYK color selector (using color profile)" +msgstr "CMYK renk seçici (renk profili kullanıyor)" + +#: ../modules/color-selector-cmyk-lcms.c:410 +msgid "Profile: (none)" +msgstr "Profil: (hiçbiri)" + +#: ../modules/color-selector-cmyk-lcms.c:431 +#, c-format +msgid "Profile: %s" +msgstr "Profil: %s" + +#: ../modules/color-selector-water.c:82 +msgid "Watercolor style color selector" +msgstr "Suluboya biçemli renk seçici" + +#: ../modules/color-selector-water.c:118 +msgid "Watercolor" +msgstr "Suluboya" + +#: ../modules/color-selector-water.c:186 +msgid "Pressure" +msgstr "Basınç" + +#: ../modules/color-selector-wheel.c:103 +msgid "HSV color wheel" +msgstr "HSV renk tekeri" + +#: ../modules/color-selector-wheel.c:134 +msgid "Wheel" +msgstr "Teker" + +#: ../modules/controller-linux-input.c:58 +msgid "Button 0" +msgstr "0. düğme" + +#: ../modules/controller-linux-input.c:59 +msgid "Button 1" +msgstr "1. düğme" + +#: ../modules/controller-linux-input.c:60 +msgid "Button 2" +msgstr "2. düğme" + +#: ../modules/controller-linux-input.c:61 +msgid "Button 3" +msgstr "3. düğme" + +#: ../modules/controller-linux-input.c:62 +msgid "Button 4" +msgstr "4. düğme" + +#: ../modules/controller-linux-input.c:63 +msgid "Button 5" +msgstr "5. düğme" + +#: ../modules/controller-linux-input.c:64 +msgid "Button 6" +msgstr "6. düğme" + +#: ../modules/controller-linux-input.c:65 +msgid "Button 7" +msgstr "7. düğme" + +#: ../modules/controller-linux-input.c:66 +msgid "Button 8" +msgstr "8. düğme" + +#: ../modules/controller-linux-input.c:67 +msgid "Button 9" +msgstr "9. düğme" + +#: ../modules/controller-linux-input.c:68 +msgid "Button Mouse" +msgstr "Düğme Faresi" + +#: ../modules/controller-linux-input.c:69 +msgid "Button Left" +msgstr "Sol Düğme" + +#: ../modules/controller-linux-input.c:70 +msgid "Button Right" +msgstr "Sağ Düğme" + +#: ../modules/controller-linux-input.c:71 +msgid "Button Middle" +msgstr "Orta Düğme" + +#: ../modules/controller-linux-input.c:72 +msgid "Button Side" +msgstr "Yan Düğme" + +#: ../modules/controller-linux-input.c:73 +msgid "Button Extra" +msgstr "Ek Düğme" + +#: ../modules/controller-linux-input.c:74 +msgid "Button Forward" +msgstr "İleri Düğme" + +#: ../modules/controller-linux-input.c:75 +msgid "Button Back" +msgstr "Geri Düğme" + +#: ../modules/controller-linux-input.c:76 +msgid "Button Task" +msgstr "Düğme Görevi" + +#: ../modules/controller-linux-input.c:78 +msgid "Button Wheel" +msgstr "Düğme Tekeri" + +#: ../modules/controller-linux-input.c:81 +msgid "Button Gear Down" +msgstr "Düşüren Düğme" + +#: ../modules/controller-linux-input.c:84 +msgid "Button Gear Up" +msgstr "Yükselten Düğme" + +#: ../modules/controller-linux-input.c:90 +#: ../modules/controller-dx-dinput.c:443 +msgid "X Move Left" +msgstr "X Sola Taşı" + +#: ../modules/controller-linux-input.c:91 +#: ../modules/controller-dx-dinput.c:446 +msgid "X Move Right" +msgstr "X Sağa Taşı" + +#: ../modules/controller-linux-input.c:92 +msgid "Y Move Forward" +msgstr "Y İleri Taşı" + +#: ../modules/controller-linux-input.c:93 +msgid "Y Move Back" +msgstr "Y Geri Taşı" + +#: ../modules/controller-linux-input.c:94 +#: ../modules/controller-dx-dinput.c:461 +msgid "Z Move Up" +msgstr "Z Yukarı Taşı" + +#: ../modules/controller-linux-input.c:95 +#: ../modules/controller-dx-dinput.c:464 +msgid "Z Move Down" +msgstr "Z Aşağı Taşı" + +#: ../modules/controller-linux-input.c:97 +msgid "X Axis Tilt Forward" +msgstr "X Ekseni İleri Eğ" + +#: ../modules/controller-linux-input.c:98 +msgid "X Axis Tilt Back" +msgstr "X Ekseni Geri Eğ" + +#: ../modules/controller-linux-input.c:99 +#: ../modules/controller-dx-dinput.c:479 +msgid "Y Axis Tilt Right" +msgstr "Y Ekseni Sağa Eğ" + +#: ../modules/controller-linux-input.c:100 +#: ../modules/controller-dx-dinput.c:482 +msgid "Y Axis Tilt Left" +msgstr "Y Ekseni Sola Eğ" + +#: ../modules/controller-linux-input.c:101 +#: ../modules/controller-dx-dinput.c:488 +msgid "Z Axis Turn Left" +msgstr "Z Ekseni Sola Dön" + +#: ../modules/controller-linux-input.c:102 +#: ../modules/controller-dx-dinput.c:491 +msgid "Z Axis Turn Right" +msgstr "Z Ekseni Sağa Dön" + +#: ../modules/controller-linux-input.c:104 +msgid "Horiz. Wheel Turn Back" +msgstr "Yatay, Tekerin Geri Dönüşü" + +#: ../modules/controller-linux-input.c:105 +msgid "Horiz. Wheel Turn Forward" +msgstr "Yatay, Tekerin İleri Dönüşü" + +#: ../modules/controller-linux-input.c:106 +msgid "Dial Turn Left" +msgstr "Sola Dönüş Çevrimi" + +#: ../modules/controller-linux-input.c:107 +msgid "Dial Turn Right" +msgstr "Sağa Dönüş Çevrimi" + +#: ../modules/controller-linux-input.c:108 +msgid "Wheel Turn Left" +msgstr "Tekerin Sola Dönüşü" + +#: ../modules/controller-linux-input.c:109 +msgid "Wheel Turn Right" +msgstr "Tekerin Sağa Dönüşü" + +#: ../modules/controller-linux-input.c:178 +msgid "Linux input event controller" +msgstr "Linux girdi olayı denetleyicsi" + +#: ../modules/controller-linux-input.c:218 +#: ../modules/controller-dx-dinput.c:196 ../modules/controller-midi.c:212 +msgid "Device:" +msgstr "Aygıt:" + +#: ../modules/controller-linux-input.c:219 +msgid "The name of the device to read Linux Input events from." +msgstr "Linux Girdisi olaylarının okunacağı aygıtın adı." + +#: ../modules/controller-linux-input.c:230 +msgid "Linux Input" +msgstr "Linux Girdisi" + +#: ../modules/controller-linux-input.c:513 +msgid "Linux Input Events" +msgstr "Linux Girdi Olayları" + +#: ../modules/controller-linux-input.c:525 +#: ../modules/controller-dx-dinput.c:1095 ../modules/controller-midi.c:505 +msgid "No device configured" +msgstr "Yapılandırılmış aygıt yok" + +#: ../modules/controller-linux-input.c:551 ../modules/controller-midi.c:454 +#: ../modules/controller-midi.c:480 +#, c-format +msgid "Reading from %s" +msgstr "Okunan: %s" + +#: ../modules/controller-linux-input.c:569 +#: ../modules/controller-linux-input.c:623 ../modules/controller-midi.c:436 +#: ../modules/controller-midi.c:497 ../modules/controller-midi.c:568 +#, c-format +msgid "Device not available: %s" +msgstr "Aygıt kullanılır değil: %s" + +#: ../modules/controller-linux-input.c:588 +#: ../modules/controller-dx-dinput.c:1120 +msgid "Device not available" +msgstr "Aygıt kullanılır değil" + +#: ../modules/controller-linux-input.c:632 ../modules/controller-midi.c:577 +msgid "End of file" +msgstr "Dosyanın sonu" + +#: ../modules/controller-dx-dinput.c:156 +msgid "DirectX DirectInput event controller" +msgstr "DirectX DirectInput olay denetleyicisi" + +#: ../modules/controller-dx-dinput.c:197 +msgid "The device to read DirectInput events from." +msgstr "DirectInput olaylarının okunacağı aygıt." + +#: ../modules/controller-dx-dinput.c:206 +msgid "DirectX DirectInput" +msgstr "DirectX DirectInput" + +#: ../modules/controller-dx-dinput.c:420 +#, c-format +msgid "Button %d" +msgstr "%d Düğmesi" + +#: ../modules/controller-dx-dinput.c:423 +#, c-format +msgid "Button %d Press" +msgstr "%d Düğmesine Bas" + +#: ../modules/controller-dx-dinput.c:426 +#, c-format +msgid "Button %d Release" +msgstr "%d Düğmesini Bırak" + +#: ../modules/controller-dx-dinput.c:452 +msgid "Y Move Away" +msgstr "Y Uzaklaştır" + +#: ../modules/controller-dx-dinput.c:455 +msgid "Y Move Near" +msgstr "Y Yaklaştır" + +#: ../modules/controller-dx-dinput.c:470 +msgid "X Axis Tilt Away" +msgstr "X Ekseni Uzağa Eğ" + +#: ../modules/controller-dx-dinput.c:473 +msgid "X Axis Tilt Near" +msgstr "X Ekseni Yakına Eğ" + +#: ../modules/controller-dx-dinput.c:502 +#, c-format +msgid "Slider %d Increase" +msgstr "%d Kaydırıcısını Yükselt" + +#: ../modules/controller-dx-dinput.c:505 +#, c-format +msgid "Slider %d Decrease" +msgstr "%d Kaydırıcısını Alçalt" + +#: ../modules/controller-dx-dinput.c:515 +#, c-format +msgid "POV %d X View" +msgstr "POV %d X Görünümü" + +#: ../modules/controller-dx-dinput.c:518 +#, c-format +msgid "POV %d Y View" +msgstr "POV %d Y Görünümü" + +#: ../modules/controller-dx-dinput.c:521 +#, c-format +msgid "POV %d Return" +msgstr "POV %d Döndü" + +#: ../modules/controller-dx-dinput.c:1084 +msgid "DirectInput Events" +msgstr "Doğrudan Giriş Olayları" + +#: ../modules/controller-midi.c:164 +msgid "MIDI event controller" +msgstr "MIDI olay denetleyicisi" + +#: ../modules/controller-midi.c:203 +msgid "The name of the device to read MIDI events from." +msgstr "MIDI olaylarının okunacağı aygıtın ismi." + +#: ../modules/controller-midi.c:206 +msgid "Enter 'alsa' to use the ALSA sequencer." +msgstr "ALSA ardışımlayıcısını kullanmak için 'alsa' yazın." + +#: ../modules/controller-midi.c:221 +msgid "Channel:" +msgstr "Kanal:" + +#: ../modules/controller-midi.c:222 +msgid "" +"The MIDI channel to read events from. Set to -1 for reading from all MIDI " +"channels." +msgstr "" +"Olayların okunacağı MIDI kanalı. Bütün MIDI kanallarından okumak için -1'e " +"ayarlayın." + +#: ../modules/controller-midi.c:226 +msgid "MIDI" +msgstr "MIDI" + +#: ../modules/controller-midi.c:355 +#, c-format +msgid "Note %02x on" +msgstr "Not %02x açık" + +#: ../modules/controller-midi.c:358 +#, c-format +msgid "Note %02x off" +msgstr "Not %02x kapalı" + +#: ../modules/controller-midi.c:361 +#, c-format +msgid "Controller %03d" +msgstr "Denetleyici %03d" + +#: ../modules/controller-midi.c:408 +msgid "MIDI Events" +msgstr "MIDI Olayları" + +#: ../modules/controller-midi.c:426 +msgid "GIMP" +msgstr "GIMP" + +#: ../modules/controller-midi.c:428 +msgid "GIMP MIDI Input Controller" +msgstr "GIMP MIDI Girdi Denetleyicisi" diff --git a/multimedia/graphics/gimp/gimp/files/po-plug-ins_gimp20-std-plug-ins-tr.po b/multimedia/graphics/gimp/gimp/files/po-plug-ins_gimp20-std-plug-ins-tr.po new file mode 100644 index 0000000000..d3d31d86cd --- /dev/null +++ b/multimedia/graphics/gimp/gimp/files/po-plug-ins_gimp20-std-plug-ins-tr.po @@ -0,0 +1,12498 @@ +# Copyright (C) 2001 Free Software Foundation, Inc. +# Fatih Demir +# +msgid "" +msgstr "" +"Project-Id-Version: GIMP 1.2.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-08 19:59+0000\n" +"PO-Revision-Date: 2011-01-22 12:51+0000\n" +"Last-Translator: Fatih Demir \n" +"Language-Team: Turkish \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" +"X-Launchpad-Export-Date: 2011-08-09 06:12+0000\n" +"X-Generator: Launchpad (build 13628)\n" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:119 +msgid "Original" +msgstr "Orijinal" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:137 +msgid "Rotated" +msgstr "Döndürülmüş" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:155 +msgid "Continuous update" +msgstr "Devam eden güncelleştirme" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:168 +msgid "Area:" +msgstr "Alan:" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:172 +msgid "Entire Layer" +msgstr "Tüm Katman" + +#. Create selection +#: ../plug-ins/color-rotate/color-rotate-dialog.c:173 +#: ../plug-ins/common/film.c:966 ../plug-ins/imagemap/imap_selection.c:367 +#: ../plug-ins/selection-to-path/selection-to-path.c:433 +msgid "Selection" +msgstr "Seçim" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:174 +msgid "Context" +msgstr "İçerik" + +#. spinbutton 1 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:299 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:377 +#: ../plug-ins/common/color-to-alpha.c:410 ../plug-ins/file-fli/fli-gimp.c:875 +#: ../plug-ins/file-fli/fli-gimp.c:945 +msgid "From:" +msgstr "Kimden:" + +#. spinbutton 2 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:325 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:378 +#: ../plug-ins/file-fli/fli-gimp.c:884 ../plug-ins/file-fli/fli-gimp.c:954 +msgid "To:" +msgstr "Kime:" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:419 +#: ../plug-ins/common/file-ps.c:3233 ../plug-ins/imagemap/imap_menu.c:214 +msgid "Gray" +msgstr "Gri" + +#. Gray: Circle: Spinbutton 1 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:467 +msgid "Hue:" +msgstr "Renk Tonu:" + +#. Gray: Circle: Spinbutton 2 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:494 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:556 +msgid "Saturation:" +msgstr "Doygunluk:" + +#. * Gray: Operation-Mode * +#: ../plug-ins/color-rotate/color-rotate-dialog.c:514 +msgid "Gray Mode" +msgstr "Gri Kip" + +#. Gray: Operation-Mode: two radio buttons +#: ../plug-ins/color-rotate/color-rotate-dialog.c:523 +msgid "Treat as this" +msgstr "Bunun gibi davran" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:535 +msgid "Change to this" +msgstr "Bununla değiştir" + +#. * Gray: What is gray? * +#: ../plug-ins/color-rotate/color-rotate-dialog.c:548 +msgid "Gray Threshold" +msgstr "Gri Eşik" + +#. * Misc: Used unit selection * +#: ../plug-ins/color-rotate/color-rotate-dialog.c:588 +#: ../plug-ins/color-rotate/color-rotate-dialog.c:698 +msgid "Units" +msgstr "Birimler" + +#. Misc: Used unit selection: 3 radio buttons +#: ../plug-ins/color-rotate/color-rotate-dialog.c:597 +msgid "Radians" +msgstr "Radyan" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:609 +msgid "Radians/Pi" +msgstr "Radyan/Pi" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:621 +msgid "Degrees" +msgstr "Derece" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:652 +msgid "Rotate Colors" +msgstr "Renkleri Çevir" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:692 +msgid "Main Options" +msgstr "Ana Seçenekler" + +#: ../plug-ins/color-rotate/color-rotate-dialog.c:695 +msgid "Gray Options" +msgstr "Gri Seçenekleri" + +#: ../plug-ins/color-rotate/color-rotate-stock.c:35 +msgid "Switch to Clockwise" +msgstr "Saat Yönünde Çevir" + +#: ../plug-ins/color-rotate/color-rotate-stock.c:37 +msgid "Switch to C/Clockwise" +msgstr "Saat Yönünün Tersinde Çevir" + +#: ../plug-ins/color-rotate/color-rotate-stock.c:39 +msgid "Change Order of Arrows" +msgstr "Okların Düzenini Değiştir" + +#: ../plug-ins/color-rotate/color-rotate-stock.c:41 +#: ../plug-ins/imagemap/imap_cmd_select_all.c:51 +msgid "Select All" +msgstr "Hepsini Seç" + +#: ../plug-ins/color-rotate/color-rotate.c:99 +msgid "Replace a range of colors with another" +msgstr "Renk değer kümesini bir başkasıyla değiştir" + +#: ../plug-ins/color-rotate/color-rotate.c:106 +msgid "_Rotate Colors..." +msgstr "_Renkleri Döndür..." + +#: ../plug-ins/color-rotate/color-rotate.c:140 +msgid "Rotating the colors" +msgstr "Renkler döndürülüyor" + +#: ../plug-ins/common/alien-map.c:140 +msgid "_Modify red channel" +msgstr "Kırmızı kanalı _değiştir" + +#: ../plug-ins/common/alien-map.c:140 +msgid "_Modify hue channel" +msgstr "Renk tonu kanalını _değiştir" + +#: ../plug-ins/common/alien-map.c:141 +msgid "Mo_dify green channel" +msgstr "Yeşil kanalı d_eğiştir" + +#: ../plug-ins/common/alien-map.c:141 +msgid "Mo_dify saturation channel" +msgstr "Doygunluk kanalını d_eğiştir" + +#: ../plug-ins/common/alien-map.c:142 +msgid "Mod_ify blue channel" +msgstr "Mavi kanalı değ_iştir" + +#: ../plug-ins/common/alien-map.c:142 +msgid "Mod_ify luminosity channel" +msgstr "Işıklılık kanalını _değiştir" + +#: ../plug-ins/common/alien-map.c:147 +msgid "Red _frequency:" +msgstr "Kırmızı _sıklığı:" + +#: ../plug-ins/common/alien-map.c:147 +msgid "Hue _frequency:" +msgstr "Renk tonu _sıklığı:" + +#: ../plug-ins/common/alien-map.c:148 +msgid "Green fr_equency:" +msgstr "Yeşil sı_klığı:" + +#: ../plug-ins/common/alien-map.c:148 +msgid "Saturation fr_equency:" +msgstr "Doygunluk sı_klığı:" + +#: ../plug-ins/common/alien-map.c:149 +msgid "Blue freq_uency:" +msgstr "Mavi sık_lığı:" + +#: ../plug-ins/common/alien-map.c:149 +msgid "Luminosity freq_uency:" +msgstr "Işıklılık sıklığı:" + +#: ../plug-ins/common/alien-map.c:151 +msgid "Red _phaseshift:" +msgstr "Kırmızı _evre ötesi:" + +#: ../plug-ins/common/alien-map.c:151 +msgid "Hue _phaseshift:" +msgstr "Renk tonu _faz kayması:" + +#: ../plug-ins/common/alien-map.c:152 +msgid "Green ph_aseshift:" +msgstr "Yeşil e_vre ötesi:" + +#: ../plug-ins/common/alien-map.c:152 +msgid "Saturation ph_aseshift:" +msgstr "Doygunluk _faz kayması:" + +#: ../plug-ins/common/alien-map.c:153 +msgid "Blue pha_seshift:" +msgstr "Mavi ev_re ötesi:" + +#: ../plug-ins/common/alien-map.c:153 +msgid "Luminosity pha_seshift:" +msgstr "Işıklılık _faz kayması:" + +#: ../plug-ins/common/alien-map.c:183 +msgid "Alter colors in various psychedelic ways" +msgstr "Çeşitli rengarenk yollarla renkleri değiştir" + +#: ../plug-ins/common/alien-map.c:188 +msgid "_Alien Map..." +msgstr "_Yabancı Harita..." + +#: ../plug-ins/common/alien-map.c:320 +msgid "Alien Map: Transforming" +msgstr "Yabancı Harita: Dönüştürülüyor" + +#: ../plug-ins/common/alien-map.c:393 +msgid "Alien Map" +msgstr "Yabancı Harita" + +#: ../plug-ins/common/alien-map.c:441 ../plug-ins/common/alien-map.c:465 +#: ../plug-ins/common/alien-map.c:489 +msgid "Number of cycles covering full value range" +msgstr "Tüm değer erimini kapsayan dönüş sayısı" + +#: ../plug-ins/common/alien-map.c:453 ../plug-ins/common/alien-map.c:477 +#: ../plug-ins/common/alien-map.c:501 +msgid "Phase angle, range 0-360" +msgstr "Faz açısı, açı 0-360" + +#. Propagate Mode +#: ../plug-ins/common/alien-map.c:515 ../plug-ins/common/hot.c:611 +#: ../plug-ins/common/value-propagate.c:1120 ../plug-ins/common/waves.c:277 +msgid "Mode" +msgstr "Mod" + +#: ../plug-ins/common/alien-map.c:519 +msgid "_RGB color model" +msgstr "_RGB renk örneği" + +#: ../plug-ins/common/alien-map.c:520 +msgid "_HSL color model" +msgstr "_HSL renk örneği" + +#: ../plug-ins/common/align-layers.c:128 +msgid "Align all visible layers of the image" +msgstr "Tüm görünen katmanları görüntüye hizala" + +#: ../plug-ins/common/align-layers.c:133 +msgid "Align Visi_ble Layers..." +msgstr "Görünür Katmanları Hizala..." + +#: ../plug-ins/common/align-layers.c:173 +msgid "There are not enough layers to align." +msgstr "Hizalamak için yeterli katman yok." + +#: ../plug-ins/common/align-layers.c:400 +msgid "Align Visible Layers" +msgstr "Görünür Katmanları Hizala" + +#. if and how to center the image on the page +#: ../plug-ins/common/align-layers.c:424 ../plug-ins/common/align-layers.c:455 +#: ../plug-ins/common/cml-explorer.c:166 ../plug-ins/common/file-ps.c:3249 +#: ../plug-ins/common/file-ps.c:3261 ../plug-ins/common/file-psp.c:661 +#: ../plug-ins/file-fits/fits.c:1045 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:999 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1040 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1081 +#: ../plug-ins/lighting/lighting-ui.c:416 +#: ../plug-ins/print/print-page-layout.c:449 +msgid "None" +msgstr "Yok" + +#: ../plug-ins/common/align-layers.c:425 ../plug-ins/common/align-layers.c:456 +msgid "Collect" +msgstr "Topla" + +#: ../plug-ins/common/align-layers.c:426 +msgid "Fill (left to right)" +msgstr "Doldur (soldan sağa)" + +#: ../plug-ins/common/align-layers.c:427 +msgid "Fill (right to left)" +msgstr "Doldur (sağdan sola)" + +#: ../plug-ins/common/align-layers.c:428 ../plug-ins/common/align-layers.c:459 +msgid "Snap to grid" +msgstr "Izgaraya uydur" + +#: ../plug-ins/common/align-layers.c:437 +msgid "_Horizontal style:" +msgstr "_Yatay biçem:" + +#: ../plug-ins/common/align-layers.c:441 +msgid "Left edge" +msgstr "Sol Kenar" + +#: ../plug-ins/common/align-layers.c:442 ../plug-ins/common/align-layers.c:472 +#: ../plug-ins/gradient-flare/gradient-flare.c:2713 +msgid "Center" +msgstr "Merkez" + +#: ../plug-ins/common/align-layers.c:443 +msgid "Right edge" +msgstr "Sağ Kenar" + +#: ../plug-ins/common/align-layers.c:452 +msgid "Ho_rizontal base:" +msgstr "Ya_tay taban:" + +#: ../plug-ins/common/align-layers.c:457 +msgid "Fill (top to bottom)" +msgstr "Doldur (yukarıdan aşağıya)" + +#: ../plug-ins/common/align-layers.c:458 +msgid "Fill (bottom to top)" +msgstr "Doldur (aşağıdan yukarıya)" + +#: ../plug-ins/common/align-layers.c:468 +msgid "_Vertical style:" +msgstr "_Dikey biçem:" + +#: ../plug-ins/common/align-layers.c:471 +msgid "Top edge" +msgstr "Üst Kenar" + +#: ../plug-ins/common/align-layers.c:473 +msgid "Bottom edge" +msgstr "Alt Kenar" + +#: ../plug-ins/common/align-layers.c:482 +msgid "Ver_tical base:" +msgstr "Di_key taban:" + +#: ../plug-ins/common/align-layers.c:486 +msgid "_Grid size:" +msgstr "_Grid boyutu:" + +#: ../plug-ins/common/align-layers.c:495 +msgid "_Ignore the bottom layer even if visible" +msgstr "Görünür olsa bile alt katmanı _yoksay" + +#: ../plug-ins/common/align-layers.c:505 +msgid "_Use the (invisible) bottom layer as the base" +msgstr "(Görünmeyen) alt katmanı taban olarak _kullan" + +#: ../plug-ins/common/animation-optimize.c:133 +msgid "Modify image to reduce size when saved as GIF animation" +msgstr "" +"Görüntüyü GIF animasyonu olarak kaydedildiğinde boyutunu azaltacak şekilde " +"değiştir." + +#: ../plug-ins/common/animation-optimize.c:145 +msgid "Optimize (for _GIF)" +msgstr "Optimize (for _GIF)" + +#: ../plug-ins/common/animation-optimize.c:153 +msgid "Reduce file size where combining layers is possible" +msgstr "Mümkünse katmanlar birleştirilirken dosya boyutunu düşür" + +#: ../plug-ins/common/animation-optimize.c:163 +msgid "_Optimize (Difference)" +msgstr "_İyileştir (Farklılık)" + +#: ../plug-ins/common/animation-optimize.c:171 +msgid "Remove optimization to make editing easier" +msgstr "Düzenlemenin daha kolay olması için iyileştirmeyi kaldır" + +#: ../plug-ins/common/animation-optimize.c:178 +msgid "_Unoptimize" +msgstr "_Unoptimize" + +#: ../plug-ins/common/animation-optimize.c:198 +msgid "_Remove Backdrop" +msgstr "Zemini _Kaldır" + +#: ../plug-ins/common/animation-optimize.c:214 +msgid "_Find Backdrop" +msgstr "Zemin _Bul" + +#: ../plug-ins/common/animation-optimize.c:427 +msgid "Unoptimizing animation" +msgstr "Animasyon iyileştirmesi geri alınıyor" + +#: ../plug-ins/common/animation-optimize.c:430 +msgid "Removing animation background" +msgstr "Animasyon artalanı kaldırılıyor" + +#: ../plug-ins/common/animation-optimize.c:433 +msgid "Finding animation background" +msgstr "Animasyon artalanı bulunuyor" + +#: ../plug-ins/common/animation-optimize.c:437 +msgid "Optimizing animation" +msgstr "Animasyon İyileştiriliyor" + +#: ../plug-ins/common/animation-play.c:163 +msgid "Preview a GIMP layer-based animation" +msgstr "Bir GIMP katman-tabanlı animasyonun önizlemesi" + +#: ../plug-ins/common/animation-play.c:168 +msgid "_Playback..." +msgstr "_Oynat..." + +#: ../plug-ins/common/animation-play.c:447 +msgid "_Step" +msgstr "_Adım" + +#: ../plug-ins/common/animation-play.c:447 +msgid "Step to next frame" +msgstr "Sonraki çerçeveye atla" + +#: ../plug-ins/common/animation-play.c:451 +msgid "Rewind the animation" +msgstr "Canlandırmayı geri sar" + +#: ../plug-ins/common/animation-play.c:469 +msgid "Faster" +msgstr "Daha Hızlı" + +#: ../plug-ins/common/animation-play.c:469 +msgid "Increase the speed of the animation" +msgstr "Canlandırmanın hızını arttır" + +#: ../plug-ins/common/animation-play.c:474 +msgid "Slower" +msgstr "Daha Yavaş" + +#: ../plug-ins/common/animation-play.c:474 +msgid "Decrease the speed of the animation" +msgstr "Canlandırmanın hızını düşür" + +#: ../plug-ins/common/animation-play.c:479 +msgid "Reset speed" +msgstr "Hızı sıfırla" + +#: ../plug-ins/common/animation-play.c:479 +msgid "Reset the speed of the animation" +msgstr "Animasyon hızını sıfırla" + +#: ../plug-ins/common/animation-play.c:487 +#: ../plug-ins/common/animation-play.c:1446 +msgid "Start playback" +msgstr "Oynatmaya başla" + +#: ../plug-ins/common/animation-play.c:491 +msgid "Detach" +msgstr "Ayır" + +#: ../plug-ins/common/animation-play.c:492 +msgid "Detach the animation from the dialog window" +msgstr "Canlandırmayı iletişim penceresinden ayır" + +#: ../plug-ins/common/animation-play.c:584 +msgid "Animation Playback:" +msgstr "Canlandırmayı Oynat:" + +#: ../plug-ins/common/animation-play.c:663 +msgid "Playback speed" +msgstr "Oynatma hızı" + +#: ../plug-ins/common/animation-play.c:803 +msgid "Tried to display an invalid layer." +msgstr "Geçersiz bir katman gösterilmeye çalışıldı." + +#: ../plug-ins/common/animation-play.c:1323 +#, c-format +msgid "Frame %d of %d" +msgstr "Çerçeve %d / %d" + +#: ../plug-ins/common/animation-play.c:1446 +msgid "Stop playback" +msgstr "Oynatmayı durdur" + +#: ../plug-ins/common/antialias.c:84 +msgid "Antialias using the Scale3X edge-extrapolation algorithm" +msgstr "" +"Scale3X edge-extrapolation algoritmasını kullanırken keskinlik yumuşat" + +#: ../plug-ins/common/antialias.c:90 +msgid "_Antialias" +msgstr "_Keskinliği yumuşatma" + +#: ../plug-ins/common/antialias.c:149 +msgid "Antialiasing..." +msgstr "Keskinliği yumuşatma..." + +#: ../plug-ins/common/apply-canvas.c:1140 +msgid "Add a canvas texture to the image" +msgstr "Görüntüye bir tuval dokusu ekle" + +#: ../plug-ins/common/apply-canvas.c:1145 +msgid "_Apply Canvas..." +msgstr "Tuvali _Uygula..." + +#: ../plug-ins/common/apply-canvas.c:1226 +msgid "Applying canvas" +msgstr "Tuval uygulanıyor" + +#: ../plug-ins/common/apply-canvas.c:1263 +msgid "Apply Canvas" +msgstr "Tuvali Uygula" + +#. ***************************************************** +#. radio buttons for choosing LEFT or RIGHT +#. ************************************************* +#: ../plug-ins/common/apply-canvas.c:1292 ../plug-ins/common/wind.c:945 +#: ../plug-ins/lighting/lighting-ui.c:518 +msgid "Direction" +msgstr "Yön" + +#: ../plug-ins/common/apply-canvas.c:1296 +msgid "_Top-right" +msgstr "_Üst-Sağ" + +#: ../plug-ins/common/apply-canvas.c:1297 +msgid "Top-_left" +msgstr "Üst-_Sol" + +#: ../plug-ins/common/apply-canvas.c:1298 +msgid "_Bottom-left" +msgstr "_Alt-Sol" + +#: ../plug-ins/common/apply-canvas.c:1299 +msgid "Bottom-_right" +msgstr "Alt-_Sağ" + +#: ../plug-ins/common/apply-canvas.c:1324 ../plug-ins/common/bump-map.c:916 +#: ../plug-ins/common/emboss.c:523 ../plug-ins/common/fractal-trace.c:796 +#: ../plug-ins/map-object/map-object-ui.c:573 +msgid "_Depth:" +msgstr "_Derinlik:" + +#: ../plug-ins/common/blinds.c:116 +msgid "Simulate an image painted on window blinds" +msgstr "Görüntüyü pencere gölgelerindeki boyalı kısma benzet" + +#: ../plug-ins/common/blinds.c:121 +msgid "_Blinds..." +msgstr "_Kesitler..." + +#: ../plug-ins/common/blinds.c:188 +msgid "Adding blinds" +msgstr "Kesitler ekleniyor" + +#: ../plug-ins/common/blinds.c:226 +msgid "Blinds" +msgstr "Kesitler" + +#. Orientation toggle box +#: ../plug-ins/common/blinds.c:260 ../plug-ins/common/ripple.c:539 +msgid "Orientation" +msgstr "Konum" + +#: ../plug-ins/common/blinds.c:264 ../plug-ins/common/ripple.c:543 +#: ../plug-ins/common/tile-small.c:426 ../plug-ins/pagecurl/pagecurl.c:534 +msgid "_Horizontal" +msgstr "_Yatay" + +#: ../plug-ins/common/blinds.c:265 ../plug-ins/common/ripple.c:544 +#: ../plug-ins/common/tile-small.c:436 ../plug-ins/pagecurl/pagecurl.c:533 +msgid "_Vertical" +msgstr "_Dikey" + +#. +#. * Create the "background" layer to hold the image... +#. +#: ../plug-ins/common/blinds.c:278 ../plug-ins/common/compose.c:935 +#: ../plug-ins/common/decompose.c:723 ../plug-ins/common/file-cel.c:362 +#: ../plug-ins/common/file-cel.c:365 ../plug-ins/common/file-dicom.c:557 +#: ../plug-ins/common/file-gif-load.c:911 ../plug-ins/common/file-pcx.c:419 +#: ../plug-ins/common/file-pcx.c:425 ../plug-ins/common/file-pix.c:382 +#: ../plug-ins/common/file-png.c:852 ../plug-ins/common/file-pnm.c:585 +#: ../plug-ins/common/file-raw.c:714 ../plug-ins/common/file-sunras.c:975 +#: ../plug-ins/common/file-tga.c:1064 ../plug-ins/common/file-tiff-load.c:997 +#: ../plug-ins/common/file-xbm.c:896 ../plug-ins/common/film.c:746 +#: ../plug-ins/common/smooth-palette.c:257 ../plug-ins/common/tile.c:267 +#: ../plug-ins/file-bmp/bmp-read.c:382 ../plug-ins/file-bmp/bmp-read.c:649 +#: ../plug-ins/file-faxg3/faxg3.c:478 ../plug-ins/file-fits/fits.c:530 +#: ../plug-ins/file-jpeg/jpeg-load.c:249 ../plug-ins/file-jpeg/jpeg-load.c:761 +#: ../plug-ins/file-psd/psd-image-res-load.c:995 +#: ../plug-ins/file-psd/psd-load.c:1575 ../plug-ins/file-sgi/sgi.c:405 +#: ../plug-ins/gfig/gfig-dialog.c:1284 +#: ../plug-ins/gimpressionist/general.c:140 ../plug-ins/twain/twain.c:568 +#: ../plug-ins/win-snap/winsnap.c:1155 +msgid "Background" +msgstr "Arkaplan" + +#: ../plug-ins/common/blinds.c:282 ../plug-ins/common/fractal-trace.c:738 +#: ../plug-ins/common/tile-paper.c:384 +msgid "_Transparent" +msgstr "Şeff_af" + +#: ../plug-ins/common/blinds.c:308 +msgid "_Displacement:" +msgstr "_Yer Değiştirme:" + +#: ../plug-ins/common/blinds.c:320 +msgid "_Number of segments:" +msgstr "Kesimlerin _sayısı:" + +#: ../plug-ins/common/blur-gauss-selective.c:104 +msgid "Blur neighboring pixels, but only in low-contrast areas" +msgstr "" +"Komşu benekleri bulanıklaştır ancak sadece düşük karşıtlık bölgelerinde" + +#: ../plug-ins/common/blur-gauss-selective.c:115 +msgid "_Selective Gaussian Blur..." +msgstr "_Seçmeli Gaussian Bulanıklığı..." + +#: ../plug-ins/common/blur-gauss-selective.c:195 +#: ../plug-ins/common/blur-gauss-selective.c:232 +msgid "Selective Gaussian Blur" +msgstr "Seçmeli Gaussian Bulanıklığı" + +#: ../plug-ins/common/blur-gauss-selective.c:211 +#: ../plug-ins/common/blur-gauss.c:448 ../plug-ins/common/cartoon.c:232 +#: ../plug-ins/common/edge-dog.c:269 ../plug-ins/common/edge-neon.c:228 +#: ../plug-ins/common/edge-sobel.c:212 ../plug-ins/common/photocopy.c:244 +#: ../plug-ins/common/pixelize.c:293 ../plug-ins/common/softglow.c:224 +#: ../plug-ins/file-sgi/sgi.c:556 ../plug-ins/file-xjt/xjt.c:1701 +#: ../plug-ins/gradient-flare/gradient-flare.c:966 +msgid "Cannot operate on indexed color images." +msgstr "Sıralanmış renkli görüntüler üzerinde çalışılamıyor" + +#: ../plug-ins/common/blur-gauss-selective.c:271 +msgid "_Blur radius:" +msgstr "_Bulanıklık yarıçapı:" + +#: ../plug-ins/common/blur-gauss-selective.c:281 +msgid "_Max. delta:" +msgstr "_En büyük delta:" + +#: ../plug-ins/common/blur-gauss.c:159 +msgid "Simplest, most commonly used way of blurring" +msgstr "Bulanıklaştırmanın en basit, en yaygın kullanılan yolu" + +#: ../plug-ins/common/blur-gauss.c:172 +msgid "_Gaussian Blur..." +msgstr "_Gaussian Bulanıklığı..." + +#: ../plug-ins/common/blur-gauss.c:179 ../plug-ins/common/blur-gauss.c:199 +#: ../plug-ins/common/blur-gauss.c:219 ../plug-ins/common/blur-gauss.c:239 +msgid "Apply a gaussian blur" +msgstr "Bir gaussian bulanıklığı uygula" + +#: ../plug-ins/common/blur-gauss.c:428 ../plug-ins/common/blur-gauss.c:478 +msgid "Gaussian Blur" +msgstr "Gaussian Bulanıklığı" + +#. parameter settings +#: ../plug-ins/common/blur-gauss.c:508 +msgid "Blur Radius" +msgstr "Bulanıklık Yarıçapı" + +#: ../plug-ins/common/blur-gauss.c:522 ../plug-ins/common/jigsaw.c:2457 +#: ../plug-ins/common/noise-spread.c:386 +msgid "_Horizontal:" +msgstr "_Yatay:" + +#: ../plug-ins/common/blur-gauss.c:526 ../plug-ins/common/jigsaw.c:2474 +#: ../plug-ins/common/noise-spread.c:390 +msgid "_Vertical:" +msgstr "_Dikey:" + +#: ../plug-ins/common/blur-gauss.c:549 +msgid "Blur Method" +msgstr "Bulanıklık Yöntemi" + +#: ../plug-ins/common/blur-gauss.c:553 +msgid "_IIR" +msgstr "_IIR" + +#: ../plug-ins/common/blur-gauss.c:554 +msgid "_RLE" +msgstr "_RLE" + +#: ../plug-ins/common/blur-motion.c:157 ../plug-ins/common/blur-motion.c:171 +msgid "Simulate movement using directional blur" +msgstr "Yönlü bulanıklaştırma kullanarak hareket benzetimi yap" + +#: ../plug-ins/common/blur-motion.c:164 ../plug-ins/common/blur-motion.c:177 +msgid "_Motion Blur..." +msgstr "_Hareketli Bulanıklaştır..." + +#: ../plug-ins/common/blur-motion.c:910 +msgid "Motion blurring" +msgstr "Hareketli bulanıklaştırma" + +#: ../plug-ins/common/blur-motion.c:1012 +msgid "Motion Blur" +msgstr "Hareketli Bulanıklaştır" + +#: ../plug-ins/common/blur-motion.c:1045 +msgid "Blur Type" +msgstr "Bulanıklaştırma Türü" + +#: ../plug-ins/common/blur-motion.c:1049 +msgctxt "blur-type" +msgid "_Linear" +msgstr "_Doğrusal" + +#: ../plug-ins/common/blur-motion.c:1050 +msgctxt "blur-type" +msgid "_Radial" +msgstr "_Işınsal" + +#: ../plug-ins/common/blur-motion.c:1051 +msgctxt "blur-type" +msgid "_Zoom" +msgstr "_Yakınlaştır" + +#: ../plug-ins/common/blur-motion.c:1058 +msgid "Blur Center" +msgstr "Bulanıklaştırma Merkezi" + +#: ../plug-ins/common/blur-motion.c:1094 ../plug-ins/common/lens-flare.c:772 +#: ../plug-ins/common/nova.c:463 ../plug-ins/common/tile-paper.c:282 +#: ../plug-ins/flame/flame.c:1251 +#: ../plug-ins/gradient-flare/gradient-flare.c:2725 +#: ../plug-ins/lighting/lighting-ui.c:477 +msgid "_X:" +msgstr "_X:" + +#: ../plug-ins/common/blur-motion.c:1099 ../plug-ins/common/lens-flare.c:777 +#: ../plug-ins/common/nova.c:468 ../plug-ins/common/tile-paper.c:291 +#: ../plug-ins/flame/flame.c:1265 +#: ../plug-ins/gradient-flare/gradient-flare.c:2729 +#: ../plug-ins/lighting/lighting-ui.c:492 +msgid "_Y:" +msgstr "_Y:" + +#: ../plug-ins/common/blur-motion.c:1101 +msgid "Blur _outward" +msgstr "_Dışa doğru bulanıklaştır" + +#: ../plug-ins/common/blur-motion.c:1114 +msgid "Blur Parameters" +msgstr "Bulanıklaştırma Parametreleri" + +#: ../plug-ins/common/blur-motion.c:1125 +#: ../plug-ins/map-object/map-object-ui.c:1252 +msgid "L_ength:" +msgstr "_Uzunluk:" + +#: ../plug-ins/common/blur-motion.c:1138 ../plug-ins/common/newsprint.c:1001 +msgid "_Angle:" +msgstr "_Açı:" + +#: ../plug-ins/common/blur.c:125 +msgid "Simple blur, fast but not very strong" +msgstr "Basit bulanıklaştır, hızlı ama pek güçlü değil" + +#: ../plug-ins/common/blur.c:134 +msgid "_Blur" +msgstr "B_ulanıklaştır" + +#: ../plug-ins/common/blur.c:178 ../plug-ins/common/unsharp-mask.c:439 +msgid "Blurring" +msgstr "Bulanıklaştırma" + +#: ../plug-ins/common/border-average.c:99 +msgid "Set foreground to the average color of the image border" +msgstr "Önalanı görüntü sınırının ortalama rengi olarak ayarla" + +#: ../plug-ins/common/border-average.c:104 +msgid "_Border Average..." +msgstr "_Sınır Ortalaması..." + +#: ../plug-ins/common/border-average.c:171 +msgid "Border Average" +msgstr "Sınır Ortalaması" + +#: ../plug-ins/common/border-average.c:351 +msgid "Borderaverage" +msgstr "Sınırortalaması" + +#: ../plug-ins/common/border-average.c:372 +msgid "Border Size" +msgstr "Sınır Boyutu" + +#: ../plug-ins/common/border-average.c:380 +msgid "_Thickness:" +msgstr "_Kalınlık:" + +#. Number of Colors frame +#: ../plug-ins/common/border-average.c:415 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:908 +msgid "Number of Colors" +msgstr "Renk Sayısı" + +#: ../plug-ins/common/border-average.c:423 +msgid "_Bucket size:" +msgstr "_Kova boyutu:" + +#: ../plug-ins/common/bump-map.c:257 +msgid "Create an embossing effect using a bump map" +msgstr "Derinlik etkisini kullanarak kabartma etkisi oluştur" + +#: ../plug-ins/common/bump-map.c:267 +msgid "_Bump Map..." +msgstr "_Derinlik Etkisi..." + +#: ../plug-ins/common/bump-map.c:415 +msgid "Bump-mapping" +msgstr "Derinlik eşleme" + +#: ../plug-ins/common/bump-map.c:766 +msgid "Bump Map" +msgstr "Derinlik Etkisi" + +#: ../plug-ins/common/bump-map.c:832 +msgid "_Bump map:" +msgstr "_Derinlik etkisi:" + +#. Map type menu +#: ../plug-ins/common/bump-map.c:835 ../plug-ins/flame/flame.c:748 +#: ../plug-ins/lighting/lighting-ui.c:842 +msgid "Linear" +msgstr "Doğrusal" + +#: ../plug-ins/common/bump-map.c:836 ../plug-ins/flame/flame.c:750 +#: ../plug-ins/lighting/lighting-ui.c:845 +msgid "Spherical" +msgstr "Küresel" + +#: ../plug-ins/common/bump-map.c:837 ../plug-ins/flame/flame.c:749 +#: ../plug-ins/lighting/lighting-ui.c:844 +msgid "Sinusoidal" +msgstr "Sinüssel" + +#: ../plug-ins/common/bump-map.c:844 +msgid "_Map type:" +msgstr "_Eşlem türü:" + +#. Compensate darkening +#: ../plug-ins/common/bump-map.c:849 +msgid "Co_mpensate for darkening" +msgstr "Koyulaştırma için de_ngele" + +#. Invert bumpmap +#: ../plug-ins/common/bump-map.c:863 +msgid "I_nvert bumpmap" +msgstr "Derinlik etkisini t_ersine çevir" + +#. Tile bumpmap +#: ../plug-ins/common/bump-map.c:877 +msgid "_Tile bumpmap" +msgstr "Derinlik etkisini d_öşe" + +#: ../plug-ins/common/bump-map.c:892 ../plug-ins/common/emboss.c:499 +msgid "_Azimuth:" +msgstr "_İstikamet açısı:" + +#: ../plug-ins/common/bump-map.c:904 +msgid "_Elevation:" +msgstr "_Rakım:" + +#: ../plug-ins/common/bump-map.c:930 ../plug-ins/common/file-ps.c:3400 +msgid "_X offset:" +msgstr "_X konumu:" + +#: ../plug-ins/common/bump-map.c:933 ../plug-ins/common/bump-map.c:947 +msgid "" +"The offset can be adjusted by dragging the preview using the middle mouse " +"button." +msgstr "" +"Göreli konum, orta fare tuşuyla önizlemeyi sürükleyerek ayarlanabilir." + +#: ../plug-ins/common/bump-map.c:944 ../plug-ins/common/file-ps.c:3409 +msgid "_Y offset:" +msgstr "_Y konumu:" + +#: ../plug-ins/common/bump-map.c:958 +msgid "_Waterlevel:" +msgstr "_Denizseviyesi:" + +#: ../plug-ins/common/bump-map.c:970 +msgid "A_mbient:" +msgstr "Ç_evresel" + +#: ../plug-ins/common/cartoon.c:142 +msgid "Simulate a cartoon by enhancing edges" +msgstr "Kenarları geliştirerek karikatüre benzet" + +#: ../plug-ins/common/cartoon.c:147 +msgid "Ca_rtoon..." +msgstr "Karikatür..." + +#: ../plug-ins/common/cartoon.c:811 +msgid "Cartoon" +msgstr "Karikatür" + +#: ../plug-ins/common/cartoon.c:848 ../plug-ins/common/photocopy.c:876 +msgid "_Mask radius:" +msgstr "_Maske yarıçapı:" + +#: ../plug-ins/common/cartoon.c:862 +msgid "_Percent black:" +msgstr "_Siyah yüzdesi:" + +#: ../plug-ins/common/channel-mixer.c:175 +msgid "Alter colors by mixing RGB Channels" +msgstr "RGB Kanallarını karıştırarak renkleri değiştir" + +#: ../plug-ins/common/channel-mixer.c:180 +msgid "Channel Mi_xer..." +msgstr "Kanal Ka_rıştırıcı..." + +#. printf("Channel Mixer:: Mode:%d r %f g %f b %f\n ", +#. param[3].data.d_int32, mix.black.red_gain, +#. mix.black.green_gain, mix.black.blue_gain); +#: ../plug-ins/common/channel-mixer.c:271 +#: ../plug-ins/common/channel-mixer.c:492 +msgid "Channel Mixer" +msgstr "Kanal Karıştırıcı" + +#: ../plug-ins/common/channel-mixer.c:529 +msgid "O_utput channel:" +msgstr "Ç_ıktı kanalı:" + +#. Redmode radio frame +#: ../plug-ins/common/channel-mixer.c:538 ../plug-ins/common/decompose.c:174 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:991 +msgid "Red" +msgstr "Kırmızı" + +#. Greenmode radio frame +#: ../plug-ins/common/channel-mixer.c:543 ../plug-ins/common/decompose.c:175 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1032 +msgid "Green" +msgstr "Yeşil" + +#. Bluemode radio frame +#: ../plug-ins/common/channel-mixer.c:548 ../plug-ins/common/decompose.c:176 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1073 +msgid "Blue" +msgstr "Mavi" + +#: ../plug-ins/common/channel-mixer.c:583 +#: ../plug-ins/common/color-exchange.c:398 ../plug-ins/common/compose.c:190 +#: ../plug-ins/common/compose.c:201 ../plug-ins/common/diffraction.c:501 +#: ../plug-ins/common/diffraction.c:539 ../plug-ins/common/diffraction.c:577 +#: ../plug-ins/common/noise-rgb.c:530 ../plug-ins/common/noise-rgb.c:537 +msgid "_Red:" +msgstr "K_ırmızı:" + +#: ../plug-ins/common/channel-mixer.c:601 +#: ../plug-ins/common/color-exchange.c:458 ../plug-ins/common/compose.c:191 +#: ../plug-ins/common/compose.c:202 ../plug-ins/common/diffraction.c:510 +#: ../plug-ins/common/diffraction.c:548 ../plug-ins/common/diffraction.c:586 +#: ../plug-ins/common/noise-rgb.c:531 ../plug-ins/common/noise-rgb.c:538 +msgid "_Green:" +msgstr "_Yeşil:" + +#: ../plug-ins/common/channel-mixer.c:620 +#: ../plug-ins/common/color-exchange.c:519 ../plug-ins/common/compose.c:192 +#: ../plug-ins/common/compose.c:203 ../plug-ins/common/diffraction.c:519 +#: ../plug-ins/common/diffraction.c:557 ../plug-ins/common/diffraction.c:595 +#: ../plug-ins/common/noise-rgb.c:532 ../plug-ins/common/noise-rgb.c:539 +msgid "_Blue:" +msgstr "_Mavi:" + +#: ../plug-ins/common/channel-mixer.c:636 +msgid "_Monochrome" +msgstr "_Tekrenkli" + +#: ../plug-ins/common/channel-mixer.c:649 +msgid "Preserve _luminosity" +msgstr "Işıklılığı _koru" + +#: ../plug-ins/common/channel-mixer.c:878 +msgid "Load Channel Mixer Settings" +msgstr "Kanal Karıştırıcı Ayarlarını Yükle" + +#. stat error (file does not exist) +#: ../plug-ins/common/channel-mixer.c:982 +#: ../plug-ins/common/cml-explorer.c:2178 ../plug-ins/common/curve-bend.c:885 +#: ../plug-ins/common/file-cel.c:312 ../plug-ins/common/file-compressor.c:498 +#: ../plug-ins/common/file-compressor.c:666 +#: ../plug-ins/common/file-dicom.c:325 ../plug-ins/common/file-gbr.c:361 +#: ../plug-ins/common/file-gif-load.c:340 ../plug-ins/common/file-gih.c:662 +#: ../plug-ins/common/file-mng.c:1108 ../plug-ins/common/file-pat.c:330 +#: ../plug-ins/common/file-pcx.c:361 ../plug-ins/common/file-pdf.c:541 +#: ../plug-ins/common/file-pix.c:343 ../plug-ins/common/file-png.c:721 +#: ../plug-ins/common/file-pnm.c:494 ../plug-ins/common/file-ps.c:1036 +#: ../plug-ins/common/file-ps.c:3050 ../plug-ins/common/file-psp.c:1755 +#: ../plug-ins/common/file-raw.c:251 ../plug-ins/common/file-raw.c:668 +#: ../plug-ins/common/file-sunras.c:391 ../plug-ins/common/file-svg.c:333 +#: ../plug-ins/common/file-svg.c:731 ../plug-ins/common/file-tga.c:442 +#: ../plug-ins/common/file-tiff-load.c:291 ../plug-ins/common/file-xbm.c:736 +#: ../plug-ins/common/file-xwd.c:433 ../plug-ins/common/sphere-designer.c:2003 +#: ../plug-ins/file-bmp/bmp-read.c:156 ../plug-ins/file-faxg3/faxg3.c:233 +#: ../plug-ins/file-fits/fits.c:358 ../plug-ins/file-fli/fli-gimp.c:460 +#: ../plug-ins/file-fli/fli-gimp.c:497 ../plug-ins/file-ico/ico-load.c:661 +#: ../plug-ins/file-ico/ico-load.c:740 ../plug-ins/file-jpeg/jpeg-load.c:109 +#: ../plug-ins/file-jpeg/jpeg-load.c:831 ../plug-ins/file-psd/psd-load.c:131 +#: ../plug-ins/file-psd/psd-thumb-load.c:80 +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:272 +#: ../plug-ins/file-uri/uri-backend-libcurl.c:190 +#: ../plug-ins/file-xjt/xjt.c:2560 ../plug-ins/file-xjt/xjt.c:2568 +#: ../plug-ins/flame/flame.c:412 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1863 +#: ../plug-ins/fractal-explorer/fractal-explorer.c:929 +#: ../plug-ins/gfig/gfig.c:434 ../plug-ins/help/gimphelplocale.c:223 +#: ../plug-ins/help/gimphelplocale.c:239 +#: ../plug-ins/lighting/lighting-ui.c:1355 +#, c-format +msgid "Could not open '%s' for reading: %s" +msgstr "'%s' dosyası okumak için açılamadı: %s" + +#: ../plug-ins/common/channel-mixer.c:1005 +msgid "Save Channel Mixer Settings" +msgstr "Kanal Karıştırıcı Ayarlarını Kaydet" + +#: ../plug-ins/common/channel-mixer.c:1060 +#: ../plug-ins/common/cml-explorer.c:2005 ../plug-ins/common/curve-bend.c:833 +#: ../plug-ins/common/file-cel.c:583 ../plug-ins/common/file-compressor.c:426 +#: ../plug-ins/common/file-compressor.c:508 +#: ../plug-ins/common/file-compressor.c:590 +#: ../plug-ins/common/file-compressor.c:677 +#: ../plug-ins/common/file-csource.c:406 ../plug-ins/common/file-dicom.c:801 +#: ../plug-ins/common/file-gbr.c:647 ../plug-ins/common/file-gif-save.c:761 +#: ../plug-ins/common/file-gih.c:1275 ../plug-ins/common/file-html-table.c:236 +#: ../plug-ins/common/file-mng.c:610 ../plug-ins/common/file-mng.c:944 +#: ../plug-ins/common/file-pat.c:476 ../plug-ins/common/file-pcx.c:673 +#: ../plug-ins/common/file-pix.c:524 ../plug-ins/common/file-png.c:1271 +#: ../plug-ins/common/file-pnm.c:977 ../plug-ins/common/file-ps.c:1213 +#: ../plug-ins/common/file-raw.c:548 ../plug-ins/common/file-raw.c:576 +#: ../plug-ins/common/file-sunras.c:563 ../plug-ins/common/file-tga.c:1170 +#: ../plug-ins/common/file-tiff-save.c:683 ../plug-ins/common/file-xbm.c:1034 +#: ../plug-ins/common/file-xwd.c:614 ../plug-ins/common/sphere-designer.c:2114 +#: ../plug-ins/file-bmp/bmp-write.c:296 ../plug-ins/file-fits/fits.c:476 +#: ../plug-ins/file-fli/fli-gimp.c:750 ../plug-ins/file-ico/ico-save.c:1008 +#: ../plug-ins/file-jpeg/jpeg-save.c:325 ../plug-ins/file-psd/psd-save.c:1635 +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:283 +#: ../plug-ins/file-uri/uri-backend-libcurl.c:163 +#: ../plug-ins/file-xjt/xjt.c:1292 ../plug-ins/file-xjt/xjt.c:1729 +#: ../plug-ins/flame/flame.c:443 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1546 +#: ../plug-ins/gfig/gfig.c:794 ../plug-ins/ifs-compose/ifs-compose.c:2374 +#: ../plug-ins/lighting/lighting-ui.c:1211 +#, c-format +msgid "Could not open '%s' for writing: %s" +msgstr "'%s' dosyası yazma için açılamadı: %s" + +#: ../plug-ins/common/channel-mixer.c:1068 +#: ../plug-ins/common/cml-explorer.c:2060 +#, c-format +msgid "Parameters were saved to '%s'" +msgstr "Parametreler '%s' içine kaydedildi" + +#: ../plug-ins/common/checkerboard.c:89 +msgid "Create a checkerboard pattern" +msgstr "Bir dama tahtası deseni oluştur" + +#: ../plug-ins/common/checkerboard.c:94 +msgid "_Checkerboard..." +msgstr "_Dama tahtası..." + +#: ../plug-ins/common/checkerboard.c:161 +msgid "Adding checkerboard" +msgstr "Dama tahtası ekleniyor" + +#: ../plug-ins/common/checkerboard.c:346 +msgid "Checkerboard" +msgstr "Dama Tahtası" + +#: ../plug-ins/common/checkerboard.c:412 +#: ../plug-ins/gimpressionist/sizemap.c:511 +msgid "_Size:" +msgstr "Büyüklü_k:" + +#: ../plug-ins/common/checkerboard.c:421 +msgid "_Psychobilly" +msgstr "_Psychobilly" + +#: ../plug-ins/common/cml-explorer.c:129 +msgid "Keep image's values" +msgstr "Görüntü değerlerini koru" + +#: ../plug-ins/common/cml-explorer.c:130 +msgid "Keep the first value" +msgstr "İlk değeri koru" + +#: ../plug-ins/common/cml-explorer.c:131 +msgid "Fill with parameter k" +msgstr "k parametresi ile doldur" + +#: ../plug-ins/common/cml-explorer.c:132 +msgid "k{x(1-x)}^p" +msgstr "k{x(1-x)}^p" + +#: ../plug-ins/common/cml-explorer.c:133 +msgid "k{x(1-x)}^p stepped" +msgstr "k{x(1-x)}^p adımlı" + +#: ../plug-ins/common/cml-explorer.c:134 +msgid "kx^p" +msgstr "kx^p" + +#: ../plug-ins/common/cml-explorer.c:135 +msgid "kx^p stepped" +msgstr "kx^p geçildi" + +#: ../plug-ins/common/cml-explorer.c:136 +msgid "k(1-x^p)" +msgstr "k(1-x^p)" + +#: ../plug-ins/common/cml-explorer.c:137 +msgid "k(1-x^p) stepped" +msgstr "k(1-x^p) geçildi" + +#: ../plug-ins/common/cml-explorer.c:138 +msgid "Delta function" +msgstr "Delta işlevi" + +#: ../plug-ins/common/cml-explorer.c:139 +msgid "Delta function stepped" +msgstr "Delta işlevi geçildi" + +#: ../plug-ins/common/cml-explorer.c:140 +msgid "sin^p-based function" +msgstr "sin^p tabanlı işlev" + +#: ../plug-ins/common/cml-explorer.c:141 +msgid "sin^p, stepped" +msgstr "sin^p, geçildi" + +#: ../plug-ins/common/cml-explorer.c:167 +msgid "Max (x, -)" +msgstr "En çok (x, -)" + +#: ../plug-ins/common/cml-explorer.c:168 +msgid "Max (x+d, -)" +msgstr "En çok (x+d, -)" + +#: ../plug-ins/common/cml-explorer.c:169 +msgid "Max (x-d, -)" +msgstr "En çok (x-d, -)" + +#: ../plug-ins/common/cml-explorer.c:170 +msgid "Min (x, -)" +msgstr "En az (x, -)" + +#: ../plug-ins/common/cml-explorer.c:171 +msgid "Min (x+d, -)" +msgstr "En az (x+d, -)" + +#: ../plug-ins/common/cml-explorer.c:172 +msgid "Min (x-d, -)" +msgstr "En az (x-d, -)" + +#: ../plug-ins/common/cml-explorer.c:173 +msgid "Max (x+d, -), (x < 0.5)" +msgstr "En çok (x+d, -), (x < 0.5)" + +#: ../plug-ins/common/cml-explorer.c:174 +msgid "Max (x+d, -), (0.5 < x)" +msgstr "En çok (x+d, -), (0.5 < x)" + +#: ../plug-ins/common/cml-explorer.c:175 +msgid "Max (x-d, -), (x < 0.5)" +msgstr "En çok (x-d, -), (x < 0.5)" + +#: ../plug-ins/common/cml-explorer.c:176 +msgid "Max (x-d, -), (0.5 < x)" +msgstr "En çok (x-d, -), (0.5 < x)" + +#: ../plug-ins/common/cml-explorer.c:177 +msgid "Min (x+d, -), (x < 0.5)" +msgstr "En az (x+d, -), (x < 0.5)" + +#: ../plug-ins/common/cml-explorer.c:178 +msgid "Min (x+d, -), (0.5 < x)" +msgstr "En az (x+d, -), (0.5 < x)" + +#: ../plug-ins/common/cml-explorer.c:179 +msgid "Min (x-d, -), (x < 0.5)" +msgstr "En az (x-d, -), (x < 0.5)" + +#: ../plug-ins/common/cml-explorer.c:180 +msgid "Min (x-d, -), (0.5 < x)" +msgstr "En az (x-d, -), (0.5 < x)" + +#: ../plug-ins/common/cml-explorer.c:200 ../plug-ins/common/file-sunras.c:1651 +msgid "Standard" +msgstr "Standart" + +#: ../plug-ins/common/cml-explorer.c:201 +msgid "Use average value" +msgstr "Ortalama değeri kullan" + +#: ../plug-ins/common/cml-explorer.c:202 +msgid "Use reverse value" +msgstr "Ters değeri kullan" + +#: ../plug-ins/common/cml-explorer.c:203 +msgid "With random power (0,10)" +msgstr "Rastgele üssü ile (0,10)" + +#: ../plug-ins/common/cml-explorer.c:204 +msgid "With random power (0,1)" +msgstr "Rastgele üssü ile (0,1)" + +#: ../plug-ins/common/cml-explorer.c:205 +msgid "With gradient power (0,1)" +msgstr "Renk geçiş üssü ile (0,1)" + +#: ../plug-ins/common/cml-explorer.c:206 +msgid "Multiply rand. value (0,1)" +msgstr "Rastgele değeri çoğalt (0,1)" + +#: ../plug-ins/common/cml-explorer.c:207 +msgid "Multiply rand. value (0,2)" +msgstr "Rastgele değeri çoğalt (0,2)" + +#: ../plug-ins/common/cml-explorer.c:208 +msgid "Multiply gradient (0,1)" +msgstr "Renk geçişini çoğalt (0,1)" + +#: ../plug-ins/common/cml-explorer.c:209 +msgid "With p and random (0,1)" +msgstr "Rastgele ve p ile (0,1)" + +#: ../plug-ins/common/cml-explorer.c:223 +msgid "All black" +msgstr "Tümü siyah" + +#: ../plug-ins/common/cml-explorer.c:224 +msgid "All gray" +msgstr "Tümü gri" + +#: ../plug-ins/common/cml-explorer.c:225 +msgid "All white" +msgstr "Tümü beyaz" + +#: ../plug-ins/common/cml-explorer.c:226 +msgid "The first row of the image" +msgstr "Görüntünün ilk satırı" + +#: ../plug-ins/common/cml-explorer.c:227 +msgid "Continuous gradient" +msgstr "Sürekli renk geçişi" + +#: ../plug-ins/common/cml-explorer.c:228 +msgid "Continuous grad. w/o gap" +msgstr "Sürekli renk geçişi. w/o aralığında" + +#: ../plug-ins/common/cml-explorer.c:229 +msgid "Random, ch. independent" +msgstr "Kanal bağımsız, rastgele" + +#: ../plug-ins/common/cml-explorer.c:230 +msgid "Random shared" +msgstr "Rastgele paylaşılmış" + +#: ../plug-ins/common/cml-explorer.c:231 +msgid "Randoms from seed" +msgstr "Kaynaktan rastgele" + +#: ../plug-ins/common/cml-explorer.c:232 +msgid "Randoms from seed (shared)" +msgstr "Kaynaktan rastgele (paylaşılmış)" + +#: ../plug-ins/common/cml-explorer.c:300 ../plug-ins/common/cml-explorer.c:308 +#: ../plug-ins/common/decompose.c:188 +#: ../plug-ins/gimpressionist/orientation.c:180 +#: ../plug-ins/gimpressionist/size.c:183 +msgid "Hue" +msgstr "Renk Tonu" + +#: ../plug-ins/common/cml-explorer.c:301 ../plug-ins/common/cml-explorer.c:309 +#: ../plug-ins/common/decompose.c:189 +msgid "Saturation" +msgstr "Doygunluk" + +#: ../plug-ins/common/cml-explorer.c:302 ../plug-ins/common/cml-explorer.c:310 +#: ../plug-ins/common/decompose.c:190 +#: ../plug-ins/gimpressionist/orientation.c:156 +#: ../plug-ins/gimpressionist/size.c:159 +msgid "Value" +msgstr "Değer" + +#: ../plug-ins/common/cml-explorer.c:307 +msgid "(None)" +msgstr "(Hiçbiri)" + +#: ../plug-ins/common/cml-explorer.c:455 +msgid "Create abstract Coupled-Map Lattice patterns" +msgstr "Soyut eş harita çapraz kalıpları oluştur" + +#: ../plug-ins/common/cml-explorer.c:466 +msgid "CML _Explorer..." +msgstr "CML _Gezgini..." + +#: ../plug-ins/common/cml-explorer.c:756 +msgid "CML Explorer: evoluting" +msgstr "CML Tarayıcısı: Geliştiriliyor" + +#: ../plug-ins/common/cml-explorer.c:1177 +msgid "Coupled-Map-Lattice Explorer" +msgstr "Eşleşmiş - Örgü Tarayıcısı" + +#: ../plug-ins/common/cml-explorer.c:1224 +msgid "New Seed" +msgstr "Yeni Kaynak" + +#: ../plug-ins/common/cml-explorer.c:1235 +msgid "Fix Seed" +msgstr "Sabit kaynak" + +#: ../plug-ins/common/cml-explorer.c:1246 +msgid "Random Seed" +msgstr "Rastgele kaynak" + +#: ../plug-ins/common/cml-explorer.c:1288 ../plug-ins/common/filter-pack.c:700 +#: ../plug-ins/common/van-gogh-lic.c:671 +msgid "_Hue" +msgstr "_Renk Tonu" + +#: ../plug-ins/common/cml-explorer.c:1292 +msgid "Sat_uration" +msgstr "Doy_gunluk" + +#: ../plug-ins/common/cml-explorer.c:1296 ../plug-ins/common/filter-pack.c:708 +msgid "_Value" +msgstr "_Değer" + +#: ../plug-ins/common/cml-explorer.c:1300 +msgid "_Advanced" +msgstr "_Gelişmiş" + +#: ../plug-ins/common/cml-explorer.c:1315 +msgid "Channel Independent Parameters" +msgstr "Bağımsız Kanal Parametreleri" + +#: ../plug-ins/common/cml-explorer.c:1337 +msgid "Initial value:" +msgstr "Başlangıç değeri:" + +#: ../plug-ins/common/cml-explorer.c:1343 +msgid "Zoom scale:" +msgstr "Yakınlaştırma ölçeği:" + +#: ../plug-ins/common/cml-explorer.c:1352 +msgid "Start offset:" +msgstr "Başlama konumu:" + +#: ../plug-ins/common/cml-explorer.c:1361 +msgid "Seed of Random (only for \"From Seed\" Modes)" +msgstr "Rastgele kaynağı (sadece \"Kaynaktan\" modları için)" + +#: ../plug-ins/common/cml-explorer.c:1372 ../plug-ins/maze/maze-dialog.c:261 +msgid "Seed:" +msgstr "Kaynak:" + +#: ../plug-ins/common/cml-explorer.c:1385 +msgid "Switch to \"From seed\" With the Last Seed" +msgstr "Son Kaynak ile \"Kaynaktan\" moduna geçir" + +#: ../plug-ins/common/cml-explorer.c:1397 +msgid "" +"\"Fix seed\" button is an alias of me.\n" +"The same seed produces the same image, if (1) the widths of images are same " +"(this is the reason why image on drawable is different from preview), and " +"(2) all mutation rates equal to zero." +msgstr "" +"\"Kaynaktan\" butonu ile aynı görevi görür.\n" +"Aynı kaynak, aynı resmi üretir. (Eğer resimlerin genişliği aynı ise -" +"çizilebilirdeki resim ile önizlemedeki resmin farklı olmasının sebebi budur- " +"ve bütün değişim oranları sıfır ise)" + +#: ../plug-ins/common/cml-explorer.c:1405 +msgid "O_thers" +msgstr "_Diğer" + +#: ../plug-ins/common/cml-explorer.c:1420 +msgid "Copy Settings" +msgstr "Ayarları Kopyala" + +#: ../plug-ins/common/cml-explorer.c:1439 +msgid "Source channel:" +msgstr "Kaynak kanalı:" + +#: ../plug-ins/common/cml-explorer.c:1454 +#: ../plug-ins/common/cml-explorer.c:1502 +msgid "Destination channel:" +msgstr "Hedef kanal:" + +#: ../plug-ins/common/cml-explorer.c:1458 +msgid "Copy Parameters" +msgstr "Parametreleri Kopyala" + +#: ../plug-ins/common/cml-explorer.c:1467 +msgid "Selective Load Settings" +msgstr "Seçmeli Yükleme Ayarları" + +#: ../plug-ins/common/cml-explorer.c:1487 +msgid "Source channel in file:" +msgstr "Dosya içindeki kanal kaynağı:" + +#: ../plug-ins/common/cml-explorer.c:1508 +msgid "_Misc Ops." +msgstr "_Çeşitli Seçenekler" + +#: ../plug-ins/common/cml-explorer.c:1557 +msgid "Function type:" +msgstr "İşlev türü:" + +#: ../plug-ins/common/cml-explorer.c:1573 +msgid "Composition:" +msgstr "Kompozisyon:" + +#: ../plug-ins/common/cml-explorer.c:1587 +msgid "Misc arrange:" +msgstr "Çeşitli düzenleme:" + +#: ../plug-ins/common/cml-explorer.c:1591 +msgid "Use cyclic range" +msgstr "Dönüşsel erim kullan" + +#: ../plug-ins/common/cml-explorer.c:1601 +msgid "Mod. rate:" +msgstr "Mod. oranı" + +#: ../plug-ins/common/cml-explorer.c:1610 +msgid "Env. sensitivity:" +msgstr "Çevresel duyarlılık:" + +#: ../plug-ins/common/cml-explorer.c:1619 +msgid "Diffusion dist.:" +msgstr "Yayılma mesafesi:" + +#: ../plug-ins/common/cml-explorer.c:1628 +msgid "# of subranges:" +msgstr "altmenzil sayısı" + +#: ../plug-ins/common/cml-explorer.c:1637 +msgid "P(ower factor):" +msgstr "G(üç faktörü):" + +#: ../plug-ins/common/cml-explorer.c:1646 +msgid "Parameter k:" +msgstr "k değiştirgesi:" + +#: ../plug-ins/common/cml-explorer.c:1655 +msgid "Range low:" +msgstr "Düşük erim:" + +#: ../plug-ins/common/cml-explorer.c:1664 +msgid "Range high:" +msgstr "Yüksek erim:" + +#: ../plug-ins/common/cml-explorer.c:1676 +msgid "Plot a Graph of the Settings" +msgstr "Ayarların Bir Grafiğini Çiz" + +#: ../plug-ins/common/cml-explorer.c:1721 +msgid "Ch. sensitivity:" +msgstr "Kanal duyarlılığı:" + +#: ../plug-ins/common/cml-explorer.c:1731 +msgid "Mutation rate:" +msgstr "Başkalaşım oranı:" + +#: ../plug-ins/common/cml-explorer.c:1741 +msgid "Mutation dist.:" +msgstr "Değişim mesafesi:" + +#: ../plug-ins/common/cml-explorer.c:1819 +msgid "Graph of the Current Settings" +msgstr "Şimdiki Ayarların Çizgesi" + +#: ../plug-ins/common/cml-explorer.c:1890 +msgid "Warning: the source and the destination are the same channel." +msgstr "Uyarı: kaynak ve hedef, aynı kanal" + +#: ../plug-ins/common/cml-explorer.c:1949 +msgid "Save CML Explorer Parameters" +msgstr "CML Gezgini Değiştirgelerini Kaydet" + +#: ../plug-ins/common/cml-explorer.c:2082 +msgid "Load CML Explorer Parameters" +msgstr "CML Gezgini Değiştirgelerini Yükle" + +#: ../plug-ins/common/cml-explorer.c:2200 +msgid "Error: it's not CML parameter file." +msgstr "Hata: bu, CML değiştirge dosyası değil." + +#: ../plug-ins/common/cml-explorer.c:2207 +#, c-format +msgid "Warning: '%s' is an old format file." +msgstr "Uyarı: '%s', eski bir dosya biçimi." + +#: ../plug-ins/common/cml-explorer.c:2211 +#, c-format +msgid "" +"Warning: '%s' is a parameter file for a newer version of CML Explorer." +msgstr "" +"Uyarı: '%s', CML Gezgini'nin yeni bir sürümü için bir değiştirge dosyasıdır." + +#: ../plug-ins/common/cml-explorer.c:2274 +msgid "Error: failed to load parameters" +msgstr "Hata: değiştirgeleri yükleme başarısız" + +#: ../plug-ins/common/color-cube-analyze.c:106 +msgid "Analyze the set of colors in the image" +msgstr "Görüntüdeki renkler kümesini çözümle" + +#: ../plug-ins/common/color-cube-analyze.c:112 +msgid "Colorcube A_nalysis..." +msgstr "Renk Kübü Ç_özümleme..." + +#: ../plug-ins/common/color-cube-analyze.c:200 +#: ../plug-ins/common/color-cube-analyze.c:356 +msgid "Colorcube Analysis" +msgstr "Renk Kübü Çözümleme" + +#. output results +#: ../plug-ins/common/color-cube-analyze.c:384 +#: ../plug-ins/imagemap/imap_cmd_guides.c:231 +#, c-format +msgid "Image dimensions: %d × %d" +msgstr "Görüntü boyutları: %d × %d" + +#: ../plug-ins/common/color-cube-analyze.c:387 +msgid "No colors" +msgstr "Renksiz" + +#: ../plug-ins/common/color-cube-analyze.c:389 +msgid "Only one unique color" +msgstr "Sadece bir benzersiz renk" + +#: ../plug-ins/common/color-cube-analyze.c:391 +#, c-format +msgid "Number of unique colors: %d" +msgstr "Benzersiz renklerin sayısı: %d" + +#: ../plug-ins/common/color-enhance.c:69 +msgid "Stretch color saturation to cover maximum possible range" +msgstr "Renk doygunluğunu mümkün olan en yüksek erimi kapsaması için yay" + +#: ../plug-ins/common/color-enhance.c:81 +msgid "_Color Enhance" +msgstr "_Renk Arttırımı" + +#: ../plug-ins/common/color-enhance.c:115 +msgid "Color Enhance" +msgstr "Renk Arttırımı" + +#: ../plug-ins/common/color-exchange.c:122 +msgid "Swap one color with another" +msgstr "Bir rengi başkasıyla değiştir" + +#: ../plug-ins/common/color-exchange.c:128 +msgid "_Color Exchange..." +msgstr "_Renk Takası..." + +#: ../plug-ins/common/color-exchange.c:213 +#: ../plug-ins/common/color-exchange.c:287 +msgid "Color Exchange" +msgstr "Renk Takası" + +#: ../plug-ins/common/color-exchange.c:309 +msgid "Middle-Click Inside Preview to Pick \"From Color\"" +msgstr "i" + +#: ../plug-ins/common/color-exchange.c:347 +msgid "To Color" +msgstr "Renge" + +#: ../plug-ins/common/color-exchange.c:347 +msgid "From Color" +msgstr "Renkten" + +#: ../plug-ins/common/color-exchange.c:365 +msgid "Color Exchange: To Color" +msgstr "Renk Takası: Renge" + +#: ../plug-ins/common/color-exchange.c:366 +msgid "Color Exchange: From Color" +msgstr "Renk Takası: Renkten" + +#: ../plug-ins/common/color-exchange.c:424 +msgid "R_ed threshold:" +msgstr "K_ırmızı eşik:" + +#: ../plug-ins/common/color-exchange.c:484 +msgid "G_reen threshold:" +msgstr "Y_eşil eşik:" + +#: ../plug-ins/common/color-exchange.c:545 +msgid "B_lue threshold:" +msgstr "M_avi eşik:" + +#: ../plug-ins/common/color-exchange.c:573 +msgid "Lock _thresholds" +msgstr "_Eşikleri kilitle" + +#: ../plug-ins/common/color-to-alpha.c:94 +msgid "Convert a specified color to transparency" +msgstr "Belirli bir rengi saydamlığa dönüştür" + +#: ../plug-ins/common/color-to-alpha.c:101 +msgid "Color to _Alpha..." +msgstr "Renkten _Görünüre..." + +#: ../plug-ins/common/color-to-alpha.c:184 +msgid "Removing color" +msgstr "Renk kaldırılıyor" + +#: ../plug-ins/common/color-to-alpha.c:377 +msgid "Color to Alpha" +msgstr "Renkten Görünüre" + +#: ../plug-ins/common/color-to-alpha.c:414 +msgid "Color to Alpha Color Picker" +msgstr "Renkten Görünür Renk Seçicisine" + +#: ../plug-ins/common/color-to-alpha.c:429 +msgid "to alpha" +msgstr "görünüre" + +#: ../plug-ins/common/colorify.c:102 +msgid "Replace all colors with shades of a specified color" +msgstr "Tüm renkleri özel bir rengin gölgeleri yerine koy" + +#: ../plug-ins/common/colorify.c:108 +msgid "Colorif_y..." +msgstr "Renklendi_r..." + +#: ../plug-ins/common/colorify.c:169 +msgid "Colorifying" +msgstr "Renklendirme" + +#: ../plug-ins/common/colorify.c:255 +msgid "Colorify" +msgstr "Renklendir" + +#: ../plug-ins/common/colorify.c:289 +msgid "Custom color:" +msgstr "Özel renk:" + +#: ../plug-ins/common/colorify.c:294 +msgid "Colorify Custom Color" +msgstr "Özel Rengi Renklendir" + +#: ../plug-ins/common/colormap-remap.c:97 +msgid "Rearrange the colormap" +msgstr "Renk haritasını yeniden düzenle" + +#: ../plug-ins/common/colormap-remap.c:104 +msgid "R_earrange Colormap..." +msgstr "Renk Haritasını Yeniden D_üzenle..." + +#: ../plug-ins/common/colormap-remap.c:116 +msgid "Swap two colors in the colormap" +msgstr "Renk haritasındaki iki rengi değiştir" + +#: ../plug-ins/common/colormap-remap.c:123 +msgid "_Swap Colors" +msgstr "Renkleri _Değiştir" + +#: ../plug-ins/common/colormap-remap.c:286 +#: ../plug-ins/common/colormap-remap.c:297 +#: ../plug-ins/common/colormap-remap.c:308 +msgid "Invalid remap array was passed to remap function" +msgstr "Tekrar eşleme işlevinden geçen geçersiz tekrar eşleme dizisi" + +#: ../plug-ins/common/colormap-remap.c:332 +msgid "Rearranging the colormap" +msgstr "Renk haritası yeniden düzenleniyor" + +#: ../plug-ins/common/colormap-remap.c:481 +msgid "Sort on Hue" +msgstr "Renk Tonuna göre Sırala" + +#: ../plug-ins/common/colormap-remap.c:485 +msgid "Sort on Saturation" +msgstr "Doygunluk üzerine Sırala" + +#: ../plug-ins/common/colormap-remap.c:489 +msgid "Sort on Value" +msgstr "Değer üzerine Sırala" + +#: ../plug-ins/common/colormap-remap.c:493 +msgid "Reverse Order" +msgstr "Ters Düzen" + +#: ../plug-ins/common/colormap-remap.c:497 +msgid "Reset Order" +msgstr "Düzeni Sıfırla" + +#: ../plug-ins/common/colormap-remap.c:596 +msgid "Rearrange Colormap" +msgstr "Renk Haritasını Yeniden Düzenle" + +#: ../plug-ins/common/colormap-remap.c:699 +msgid "" +"Drag and drop colors to rearrange the colormap. The numbers shown are the " +"original indices. Right-click for a menu with sort options." +msgstr "" +"Renk haritasını yeniden düzenlemek için renkleri sürükle ve bırak. Numara " +"gösterimleri özgün göstergelerdir. Sıralama seçenekleri menüsü için sağ " +"tıklayın." + +#: ../plug-ins/common/compose.c:189 ../plug-ins/common/decompose.c:170 +#: ../plug-ins/common/file-raw.c:1025 +msgid "RGB" +msgstr "RGB" + +#: ../plug-ins/common/compose.c:200 ../plug-ins/common/decompose.c:178 +msgid "RGBA" +msgstr "RGBA" + +#: ../plug-ins/common/compose.c:204 ../plug-ins/common/noise-rgb.c:525 +#: ../plug-ins/common/noise-rgb.c:540 +msgid "_Alpha:" +msgstr "_Görünür:" + +#: ../plug-ins/common/compose.c:211 ../plug-ins/common/decompose.c:184 +msgid "HSV" +msgstr "HSV" + +#: ../plug-ins/common/compose.c:212 ../plug-ins/common/compose.c:220 +msgid "_Hue:" +msgstr "_Renk Tonu:" + +#: ../plug-ins/common/compose.c:213 ../plug-ins/common/compose.c:221 +#: ../plug-ins/common/noise-hsv.c:421 +msgid "_Saturation:" +msgstr "_Doygunluk:" + +#: ../plug-ins/common/compose.c:214 ../plug-ins/common/noise-hsv.c:433 +msgid "_Value:" +msgstr "_Değer:" + +#: ../plug-ins/common/compose.c:219 ../plug-ins/common/decompose.c:193 +msgid "HSL" +msgstr "HSL" + +#: ../plug-ins/common/compose.c:222 +msgid "_Lightness:" +msgstr "_Aydınlanma:" + +#: ../plug-ins/common/compose.c:227 ../plug-ins/common/decompose.c:202 +msgid "CMY" +msgstr "CMY" + +#: ../plug-ins/common/compose.c:228 ../plug-ins/common/compose.c:236 +msgid "_Cyan:" +msgstr "_Turkuaz:" + +#: ../plug-ins/common/compose.c:229 ../plug-ins/common/compose.c:237 +msgid "_Magenta:" +msgstr "_Macenta:" + +#: ../plug-ins/common/compose.c:230 ../plug-ins/common/compose.c:238 +msgid "_Yellow:" +msgstr "_Sarı:" + +#: ../plug-ins/common/compose.c:235 ../plug-ins/common/decompose.c:211 +msgid "CMYK" +msgstr "CMYK" + +#: ../plug-ins/common/compose.c:239 +msgid "_Black:" +msgstr "_Siyah:" + +#: ../plug-ins/common/compose.c:243 ../plug-ins/common/decompose.c:224 +msgid "LAB" +msgstr "LAB" + +#: ../plug-ins/common/compose.c:252 +msgid "_Luma y470:" +msgstr "_Luma y470:" + +#: ../plug-ins/common/compose.c:253 +msgid "_Blueness cb470:" +msgstr "_Mavilik cb470:" + +#: ../plug-ins/common/compose.c:254 +msgid "_Redness cr470:" +msgstr "_Kırmızılık cr470:" + +#: ../plug-ins/common/compose.c:260 +msgid "_Luma y709:" +msgstr "_Luma y709:" + +#: ../plug-ins/common/compose.c:261 +msgid "_Blueness cb709:" +msgstr "_Mavilik cb709:" + +#: ../plug-ins/common/compose.c:262 +msgid "_Redness cr709:" +msgstr "_Kırmızılık cr709:" + +#: ../plug-ins/common/compose.c:268 +msgid "_Luma y470f:" +msgstr "_Luma y470f:" + +#: ../plug-ins/common/compose.c:269 +msgid "_Blueness cb470f:" +msgstr "_Mavilik cb470f:" + +#: ../plug-ins/common/compose.c:270 +msgid "_Redness cr470f:" +msgstr "_Kırmızılık cr470f:" + +#: ../plug-ins/common/compose.c:276 +msgid "_Luma y709f:" +msgstr "_Luma y709f:" + +#: ../plug-ins/common/compose.c:277 +msgid "_Blueness cb709f:" +msgstr "_Mavilik cb709f:" + +#: ../plug-ins/common/compose.c:278 +msgid "_Redness cr709f:" +msgstr "_Kırmızılık cr709f:" + +#: ../plug-ins/common/compose.c:404 +msgid "Create an image using multiple gray images as color channels" +msgstr "" +"Çoklu gri görüntüleri renk kanalları olarak kullanan bir görüntü oluştur" + +#: ../plug-ins/common/compose.c:410 +msgid "C_ompose..." +msgstr "D_üzenle..." + +#: ../plug-ins/common/compose.c:434 +msgid "Recompose an image that was previously decomposed" +msgstr "Önceden ayrıştırılan bir görüntüyü yeniden düzenle" + +#: ../plug-ins/common/compose.c:442 +msgid "R_ecompose" +msgstr "Y_eniden düzenle" + +#: ../plug-ins/common/compose.c:488 +msgid "" +"You can only run 'Recompose' if the active image was originally produced by " +"'Decompose'." +msgstr "" +"'Yeniden Düzenle'yi sadece etkin görüntü 'Ayrıştırma' ile üretilmişse " +"çalıştırabilirsiniz." + +#: ../plug-ins/common/compose.c:512 +msgid "Error scanning 'decompose-data' parasite: too few layers found" +msgstr "'decompose-data' paraziti taranırken hata: birçok katman bulundu" + +#: ../plug-ins/common/compose.c:545 +#, c-format +msgid "Could not get layers for image %d" +msgstr "%d imgesinin katmanları alınamadı" + +#: ../plug-ins/common/compose.c:612 +msgid "Composing" +msgstr "Düzenleme" + +#: ../plug-ins/common/compose.c:697 ../plug-ins/common/compose.c:1728 +msgid "At least one image is needed to compose" +msgstr "Düzenleme için en az bir görüntü gerekiyor" + +#: ../plug-ins/common/compose.c:708 ../plug-ins/common/compose.c:722 +#, c-format +msgid "Specified layer %d not found" +msgstr "Belirlenen %d katmanı bulunamadı" + +#: ../plug-ins/common/compose.c:730 +msgid "Drawables have different size" +msgstr "Çizilebilirlerin boyutları farklı" + +#: ../plug-ins/common/compose.c:755 +msgid "Images have different size" +msgstr "Görüntülerin boyutları farklı" + +#: ../plug-ins/common/compose.c:773 +msgid "Error in getting layer IDs" +msgstr "Katman Kimliklerini almada hata" + +#: ../plug-ins/common/compose.c:796 +#, c-format +msgid "Image is not a gray image (bpp=%d)" +msgstr "Görüntü gri bir görüntü değil (bpp=%d)" + +#: ../plug-ins/common/compose.c:824 +msgid "Unable to recompose, source layer not found" +msgstr "Yeniden düzenlenemedi, kaynak katman bulunamadı" + +#: ../plug-ins/common/compose.c:1481 +msgid "Compose" +msgstr "Düzenle" + +#. Compose type combo +#: ../plug-ins/common/compose.c:1508 +msgid "Compose Channels" +msgstr "Kanalları Düzenle" + +#: ../plug-ins/common/compose.c:1518 ../plug-ins/common/decompose.c:1522 +msgid "Color _model:" +msgstr "Renk _modeli:" + +#. Channel representation table +#: ../plug-ins/common/compose.c:1550 +msgid "Channel Representations" +msgstr "Kanal Gösterimleri" + +#: ../plug-ins/common/compose.c:1613 +msgid "Mask value" +msgstr "Maske değeri" + +#: ../plug-ins/common/contrast-normalize.c:80 +msgid "Stretch brightness values to cover the full range" +msgstr "Parlaklık değerlerini tüm erimi kapsayacak şekilde yay" + +#: ../plug-ins/common/contrast-normalize.c:92 +#: ../plug-ins/common/edge-dog.c:361 +msgid "_Normalize" +msgstr "_Normalleştir" + +#: ../plug-ins/common/contrast-normalize.c:126 +msgid "Normalizing" +msgstr "Normalleştiriliyor" + +#: ../plug-ins/common/contrast-retinex.c:156 +msgid "Enhance contrast using the Retinex method" +msgstr "Retinex yöntemini kullanarak karşıtlığı arttır" + +#: ../plug-ins/common/contrast-retinex.c:166 +msgid "Retine_x..." +msgstr "Retine_x..." + +#: ../plug-ins/common/contrast-retinex.c:250 +msgid "Retinex" +msgstr "Retinex" + +#: ../plug-ins/common/contrast-retinex.c:286 +msgid "Retinex Image Enhancement" +msgstr "Retinex Görüntü Geliştirimi" + +#: ../plug-ins/common/contrast-retinex.c:321 +msgid "Uniform" +msgstr "Birörnek" + +#: ../plug-ins/common/contrast-retinex.c:322 +msgid "Low" +msgstr "Düşük" + +#: ../plug-ins/common/contrast-retinex.c:323 +msgid "High" +msgstr "Yüksek" + +#: ../plug-ins/common/contrast-retinex.c:334 +msgid "_Level:" +msgstr "_Düzey:" + +#: ../plug-ins/common/contrast-retinex.c:339 +msgid "_Scale:" +msgstr "Ö_lçek:" + +#: ../plug-ins/common/contrast-retinex.c:354 +msgid "Scale _division:" +msgstr "Ölçek _bölümü:" + +#: ../plug-ins/common/contrast-retinex.c:369 +msgid "Dy_namic:" +msgstr "D_inamik:" + +#: ../plug-ins/common/contrast-retinex.c:642 +msgid "Retinex: filtering" +msgstr "Retinex: süzülüyor" + +#: ../plug-ins/common/contrast-stretch-hsv.c:68 +msgid "Stretch image contrast to cover the maximum possible range" +msgstr "Mümkün olan en yüksek erimi kapsamak için görüntü karşıtlığını yay" + +#: ../plug-ins/common/contrast-stretch-hsv.c:81 +msgid "Stretch _HSV" +msgstr "_HSV'yi Yay" + +#: ../plug-ins/common/contrast-stretch-hsv.c:116 +msgid "Auto-Stretching HSV" +msgstr "HSV'yi Otomatik Yayma" + +#: ../plug-ins/common/contrast-stretch-hsv.c:192 +msgid "autostretch_hsv: cmap was NULL! Quitting...\n" +msgstr "autostretch_hsv: cmap NULL! Çıkıyor...\n" + +#: ../plug-ins/common/contrast-stretch.c:68 +msgid "Stretch contrast to cover the maximum possible range" +msgstr "Mümkün olan en yüksek erimi kapsamak için karşıtlığı yay" + +#: ../plug-ins/common/contrast-stretch.c:79 +msgid "_Stretch Contrast" +msgstr "Karşıtlığı _Yay" + +#: ../plug-ins/common/contrast-stretch.c:113 +msgid "Auto-stretching contrast" +msgstr "Karşıtlığı otomatik yayma" + +#: ../plug-ins/common/contrast-stretch.c:152 +msgid "c_astretch: cmap was NULL! Quitting...\n" +msgstr "c_astretch: cmap NULL! Çıkıyor...\n" + +#: ../plug-ins/common/convolution-matrix.c:64 +msgid "Gr_ey" +msgstr "G_ri" + +#: ../plug-ins/common/convolution-matrix.c:65 +msgid "Re_d" +msgstr "_Kırmızı" + +#: ../plug-ins/common/convolution-matrix.c:66 +#: ../plug-ins/common/newsprint.c:353 +msgid "_Green" +msgstr "Yeşi_l" + +#: ../plug-ins/common/convolution-matrix.c:67 +#: ../plug-ins/common/newsprint.c:361 +msgid "_Blue" +msgstr "Mav_i" + +#: ../plug-ins/common/convolution-matrix.c:68 +msgid "_Alpha" +msgstr "_Görünür" + +#: ../plug-ins/common/convolution-matrix.c:73 +msgid "E_xtend" +msgstr "G_enişlet" + +#: ../plug-ins/common/convolution-matrix.c:74 +#: ../plug-ins/common/displace.c:472 ../plug-ins/common/edge.c:709 +#: ../plug-ins/common/fractal-trace.c:736 ../plug-ins/common/ripple.c:564 +msgid "_Wrap" +msgstr "_Kaydır:" + +#: ../plug-ins/common/convolution-matrix.c:75 +msgid "Cro_p" +msgstr "Kı_rp" + +#: ../plug-ins/common/convolution-matrix.c:201 +msgid "Apply a generic 5x5 convolution matrix" +msgstr "Soysal bir 5x5 kıvrılma dizeyi uygula" + +#: ../plug-ins/common/convolution-matrix.c:206 +msgid "_Convolution Matrix..." +msgstr "_Kıvrılma Dizeyi..." + +#: ../plug-ins/common/convolution-matrix.c:241 +msgid "Convolution does not work on layers smaller than 3x3 pixels." +msgstr "Kıvrılma 3x3 benekten küçük katmanlar üzerinde çalışmıyor" + +#: ../plug-ins/common/convolution-matrix.c:314 +msgid "Applying convolution" +msgstr "Kıvrılma uygulanıyor" + +#: ../plug-ins/common/convolution-matrix.c:906 +msgid "Convolution Matrix" +msgstr "Kıvrılma Dizeyi" + +#: ../plug-ins/common/convolution-matrix.c:944 +msgid "Matrix" +msgstr "Matris" + +#: ../plug-ins/common/convolution-matrix.c:982 +msgid "D_ivisor:" +msgstr "B_ölen:" + +#: ../plug-ins/common/convolution-matrix.c:1008 +#: ../plug-ins/common/depth-merge.c:768 ../plug-ins/common/file-raw.c:1045 +msgid "O_ffset:" +msgstr "G_öreli konum:" + +#: ../plug-ins/common/convolution-matrix.c:1037 +msgid "N_ormalise" +msgstr "N_ormalleştir" + +#: ../plug-ins/common/convolution-matrix.c:1049 +msgid "A_lpha-weighting" +msgstr "Gö_rünür ağırlıklı" + +#: ../plug-ins/common/convolution-matrix.c:1068 +msgid "Border" +msgstr "Sınır" + +#: ../plug-ins/common/convolution-matrix.c:1095 +msgid "Channels" +msgstr "Kanallar" + +#: ../plug-ins/common/crop-auto.c:85 +msgid "Remove empty borders from the image" +msgstr "Boş sınırları görüntüden kaldır" + +#: ../plug-ins/common/crop-auto.c:90 +msgid "Autocrop Imag_e" +msgstr "_Görüntüyü kendiliğinden kırp" + +#: ../plug-ins/common/crop-auto.c:99 +msgid "Remove empty borders from the layer" +msgstr "Katmandan boş sınırları kaldır" + +#: ../plug-ins/common/crop-auto.c:104 +msgid "Autocrop Lay_er" +msgstr "Kat_manı kendiliğinden kırp" + +#: ../plug-ins/common/crop-auto.c:151 +msgid "Cropping" +msgstr "Kırpma" + +#: ../plug-ins/common/crop-zealous.c:85 +msgid "Autocrop unused space from edges and middle" +msgstr "Kenarlardan ve ortadan kullanılmayan alanı kendiliğinden kırp" + +#: ../plug-ins/common/crop-zealous.c:90 +msgid "_Zealous Crop" +msgstr "_İstekli Kırpım" + +#: ../plug-ins/common/crop-zealous.c:138 +msgid "Zealous cropping" +msgstr "İstekli kırpma" + +#: ../plug-ins/common/crop-zealous.c:239 +msgid "Nothing to crop." +msgstr "Kırpacak birşey yok" + +#: ../plug-ins/common/cubism.c:150 +msgid "Convert the image into randomly rotated square blobs" +msgstr "İmgeyi rasgele döndürülmüş dörtgen biçimsiz yığınlara dönüştür" + +#: ../plug-ins/common/cubism.c:155 +msgid "_Cubism..." +msgstr "_Kübizm..." + +#: ../plug-ins/common/cubism.c:268 +msgid "Cubism" +msgstr "Kübizm" + +#: ../plug-ins/common/cubism.c:305 +msgid "_Tile size:" +msgstr "_Döşeme boyutu:" + +#: ../plug-ins/common/cubism.c:318 +msgid "T_ile saturation:" +msgstr "D_öşeme doygunluğu:" + +#: ../plug-ins/common/cubism.c:329 +msgid "_Use background color" +msgstr "Artalan rengi k_ullan" + +#: ../plug-ins/common/cubism.c:419 +msgid "Cubistic transformation" +msgstr "Kübistik dönüştürme" + +#: ../plug-ins/common/curve-bend.c:520 +msgid "Bend the image using two control curves" +msgstr "İki denetim eğrisi kullanarak görüntüyü bük" + +#: ../plug-ins/common/curve-bend.c:541 +msgid "_Curve Bend..." +msgstr "_Eğri Bükümü..." + +#: ../plug-ins/common/curve-bend.c:677 ../plug-ins/common/edge-dog.c:178 +msgid "Can operate on layers only (but was called on channel or mask)." +msgstr "" +"Yalnızca katmanlar üzerinde işlenebiliyor (ama kanal ya da maske üzerinde " +"çağrıldı)." + +#: ../plug-ins/common/curve-bend.c:687 +msgid "Cannot operate on layers with masks." +msgstr "Katmanlar üzerinde maskelerle işlenemiyor." + +#: ../plug-ins/common/curve-bend.c:699 +msgid "Cannot operate on empty selections." +msgstr "Boş seçimler üzerinde işlenemiyor." + +#. Possibly retrieve data from a previous run +#. The shell and main vbox +#: ../plug-ins/common/curve-bend.c:1211 ../plug-ins/common/curve-bend.c:2932 +msgid "Curve Bend" +msgstr "Eğri Bükümü" + +#. Preview area, top of column +#. preview +#: ../plug-ins/common/curve-bend.c:1247 +#: ../plug-ins/gimpressionist/orientmap.c:592 +#: ../plug-ins/gimpressionist/sizemap.c:461 +#: ../plug-ins/print/print-page-layout.c:159 +msgid "Preview" +msgstr "Önizleme" + +#. The preview button +#: ../plug-ins/common/curve-bend.c:1276 +msgid "_Preview Once" +msgstr "Hemen Ö_nizle" + +#. The preview toggle +#: ../plug-ins/common/curve-bend.c:1285 +msgid "Automatic pre_view" +msgstr "Kendiliğinden öni_zle" + +#. Options area, bottom of column +#. Options section +#: ../plug-ins/common/curve-bend.c:1295 ../plug-ins/common/ripple.c:505 +#: ../plug-ins/gfig/gfig-dialog.c:1207 +msgid "Options" +msgstr "Seçenekler" + +#. Rotate spinbutton +#: ../plug-ins/common/curve-bend.c:1309 +msgid "Rotat_e:" +msgstr "Ç_evir:" + +#. The smoothing toggle +#: ../plug-ins/common/curve-bend.c:1328 +msgid "Smoo_thing" +msgstr "Yumu_şatma" + +#. The antialiasing toggle +#: ../plug-ins/common/curve-bend.c:1338 ../plug-ins/common/mosaic.c:727 +#: ../plug-ins/common/qbist.c:853 ../plug-ins/common/ripple.c:514 +msgid "_Antialiasing" +msgstr "_Kenar Düzeltme" + +#. The work_on_copy toggle +#: ../plug-ins/common/curve-bend.c:1348 +msgid "Work on cop_y" +msgstr "Ko_pya üzerinde çalış" + +#. The curves graph +#: ../plug-ins/common/curve-bend.c:1358 +msgid "Modify Curves" +msgstr "Eğrileri Düzenle" + +#: ../plug-ins/common/curve-bend.c:1386 +msgid "Curve for Border" +msgstr "Sınır için Eğ" + +#: ../plug-ins/common/curve-bend.c:1390 +msgid "_Upper" +msgstr "_Yukarı" + +#: ../plug-ins/common/curve-bend.c:1391 +msgid "_Lower" +msgstr "_Aşağı" + +#: ../plug-ins/common/curve-bend.c:1401 +msgid "Curve Type" +msgstr "Eğri Tipi" + +#: ../plug-ins/common/curve-bend.c:1405 +msgid "Smoot_h" +msgstr "Yumuşa_t" + +#: ../plug-ins/common/curve-bend.c:1406 +msgid "_Free" +msgstr "_Serbest" + +#. The Copy button +#: ../plug-ins/common/curve-bend.c:1421 +msgid "_Copy" +msgstr "_Kopyala" + +#: ../plug-ins/common/curve-bend.c:1426 +msgid "Copy the active curve to the other border" +msgstr "Etkin eğriyi diğer sınıra kopyala" + +#. The CopyInv button +#: ../plug-ins/common/curve-bend.c:1433 +msgid "_Mirror" +msgstr "_Yansıla" + +#: ../plug-ins/common/curve-bend.c:1438 +msgid "Mirror the active curve to the other border" +msgstr "Etkin eğriyi diğer sınıra yansıt" + +#. The Swap button +#: ../plug-ins/common/curve-bend.c:1446 +msgid "S_wap" +msgstr "_Değiştir" + +#: ../plug-ins/common/curve-bend.c:1451 +msgid "Swap the two curves" +msgstr "İki eğriyi değiştir" + +#: ../plug-ins/common/curve-bend.c:1463 +msgid "Reset the active curve" +msgstr "Etkin eğriyi sıfırla" + +#: ../plug-ins/common/curve-bend.c:1480 +msgid "Load the curves from a file" +msgstr "Eğrileri bir dosyadan yükle" + +#: ../plug-ins/common/curve-bend.c:1492 +msgid "Save the curves to a file" +msgstr "Eğrileri bir dosyaya kaydet" + +#: ../plug-ins/common/curve-bend.c:2030 +msgid "Load Curve Points from File" +msgstr "Eğri Noktalarını Dosyadan Yükle" + +#: ../plug-ins/common/curve-bend.c:2065 +msgid "Save Curve Points to File" +msgstr "Eğri Noktalarını Dosyaya Kaydet" + +#: ../plug-ins/common/decompose.c:170 ../plug-ins/common/decompose.c:174 +#: ../plug-ins/common/decompose.c:178 +msgid "red" +msgstr "kırmızı" + +#: ../plug-ins/common/decompose.c:171 ../plug-ins/common/decompose.c:175 +#: ../plug-ins/common/decompose.c:179 +msgid "green" +msgstr "yeşil" + +#: ../plug-ins/common/decompose.c:172 ../plug-ins/common/decompose.c:176 +#: ../plug-ins/common/decompose.c:180 +msgid "blue" +msgstr "mavi" + +#: ../plug-ins/common/decompose.c:181 ../plug-ins/common/decompose.c:221 +msgid "alpha" +msgstr "görünür" + +#: ../plug-ins/common/decompose.c:184 ../plug-ins/common/decompose.c:188 +msgid "hue" +msgstr "renk tonu" + +#: ../plug-ins/common/decompose.c:185 ../plug-ins/common/decompose.c:189 +msgid "saturation" +msgstr "doygunluk" + +#: ../plug-ins/common/decompose.c:186 ../plug-ins/common/decompose.c:190 +msgid "value" +msgstr "değer" + +#: ../plug-ins/common/decompose.c:193 ../plug-ins/common/decompose.c:197 +msgid "hue_l" +msgstr "renk tonu_I" + +#: ../plug-ins/common/decompose.c:194 ../plug-ins/common/decompose.c:198 +msgid "saturation_l" +msgstr "doygunluk_l" + +#: ../plug-ins/common/decompose.c:195 ../plug-ins/common/decompose.c:199 +msgid "lightness" +msgstr "aydınlanma" + +#: ../plug-ins/common/decompose.c:197 +msgid "Hue (HSL)" +msgstr "Renk Tonu (HSL)" + +#: ../plug-ins/common/decompose.c:198 +msgid "Saturation (HSL)" +msgstr "Doygunluk (HSL)" + +#: ../plug-ins/common/decompose.c:199 +msgid "Lightness" +msgstr "Aydınlanma" + +#: ../plug-ins/common/decompose.c:202 ../plug-ins/common/decompose.c:206 +msgid "cyan" +msgstr "turkuaz" + +#: ../plug-ins/common/decompose.c:203 ../plug-ins/common/decompose.c:207 +msgid "magenta" +msgstr "macenta" + +#: ../plug-ins/common/decompose.c:204 ../plug-ins/common/decompose.c:208 +msgid "yellow" +msgstr "sarı" + +#: ../plug-ins/common/decompose.c:206 +msgid "Cyan" +msgstr "Turkuaz" + +#: ../plug-ins/common/decompose.c:207 +msgid "Magenta" +msgstr "Macenta" + +#: ../plug-ins/common/decompose.c:208 +msgid "Yellow" +msgstr "Sarı" + +#: ../plug-ins/common/decompose.c:211 ../plug-ins/common/decompose.c:216 +msgid "cyan-k" +msgstr "turkuaz-k" + +#: ../plug-ins/common/decompose.c:212 ../plug-ins/common/decompose.c:217 +msgid "magenta-k" +msgstr "macenta-k" + +#: ../plug-ins/common/decompose.c:213 ../plug-ins/common/decompose.c:218 +msgid "yellow-k" +msgstr "sarı-k" + +#: ../plug-ins/common/decompose.c:214 +msgid "black" +msgstr "siyah" + +#: ../plug-ins/common/decompose.c:216 +msgid "Cyan_K" +msgstr "Turkuaz_K" + +#: ../plug-ins/common/decompose.c:217 +msgid "Magenta_K" +msgstr "Macenta_K" + +#: ../plug-ins/common/decompose.c:218 +msgid "Yellow_K" +msgstr "Sarı_K" + +#: ../plug-ins/common/decompose.c:221 +msgid "Alpha" +msgstr "Görünür" + +#: ../plug-ins/common/decompose.c:229 +msgid "luma-y470" +msgstr "luma-y470" + +#: ../plug-ins/common/decompose.c:230 +msgid "blueness-cb470" +msgstr "mavilik-cb470" + +#: ../plug-ins/common/decompose.c:231 +msgid "redness-cr470" +msgstr "kırmızılık-cr470" + +#: ../plug-ins/common/decompose.c:233 +msgid "luma-y709" +msgstr "luma-y709" + +#: ../plug-ins/common/decompose.c:234 +msgid "blueness-cb709" +msgstr "mavilik-cb709" + +#: ../plug-ins/common/decompose.c:235 +msgid "redness-cr709" +msgstr "kırmızılık-cr709" + +#: ../plug-ins/common/decompose.c:237 +msgid "luma-y470f" +msgstr "luma-y470f" + +#: ../plug-ins/common/decompose.c:238 +msgid "blueness-cb470f" +msgstr "mavilik-cb470f" + +#: ../plug-ins/common/decompose.c:239 +msgid "redness-cr470f" +msgstr "kırmızılık-cr470f" + +#: ../plug-ins/common/decompose.c:241 +msgid "luma-y709f" +msgstr "luma-y709f" + +#: ../plug-ins/common/decompose.c:242 +msgid "blueness-cb709f" +msgstr "mavilik-cb709f" + +#: ../plug-ins/common/decompose.c:243 +msgid "redness-cr709f" +msgstr "kırmızılık-cr709f" + +#: ../plug-ins/common/decompose.c:312 ../plug-ins/common/decompose.c:326 +msgid "Decompose an image into separate colorspace components" +msgstr "Bir görüntüyü ayrı renk uzayı bileşenlerine ayrıştır" + +#: ../plug-ins/common/decompose.c:318 ../plug-ins/common/decompose.c:336 +msgid "_Decompose..." +msgstr "_Ayrıştır..." + +#: ../plug-ins/common/decompose.c:429 +msgid "Decomposing" +msgstr "Ayrıştırma" + +#: ../plug-ins/common/decompose.c:1487 +msgid "Decompose" +msgstr "Ayrıştır" + +#: ../plug-ins/common/decompose.c:1510 +msgid "Extract Channels" +msgstr "Kanalları Çıkart" + +#: ../plug-ins/common/decompose.c:1557 +msgid "_Decompose to layers" +msgstr "Katmanlarına _ayrıştır" + +#: ../plug-ins/common/decompose.c:1568 +msgid "_Foreground as registration color" +msgstr "Kayıt rengi olarak _önalan" + +#: ../plug-ins/common/decompose.c:1569 +msgid "" +"Pixels in the foreground color will appear black in all output images. This " +"can be used for things like crop marks that have to show up on all channels." +msgstr "" +"Önalan renginde benekler, bütün çıkış görüntülerinde siyah görünecektir. Bu, " +"bütün kanalların göstermek zorunda olduğu kırpma işareti gibi şeylerde " +"kullanılabilir." + +#: ../plug-ins/common/deinterlace.c:91 +msgid "Fix images where every other row is missing" +msgstr "Diğer sıraların kayıp olduğu resimleri düzelt" + +#: ../plug-ins/common/deinterlace.c:100 +msgid "_Deinterlace..." +msgstr "_Netleştir..." + +#: ../plug-ins/common/deinterlace.c:157 ../plug-ins/common/deinterlace.c:325 +msgid "Deinterlace" +msgstr "Netleştir" + +#: ../plug-ins/common/deinterlace.c:357 +msgid "Keep o_dd fields" +msgstr "T_ek alanları koru" + +#: ../plug-ins/common/deinterlace.c:358 +msgid "Keep _even fields" +msgstr "_Çift alanları koru" + +#: ../plug-ins/common/depth-merge.c:184 +msgid "Combine two images using depth maps (z-buffers)" +msgstr "Derin eşlemler kullanarak iki görüntüyü birleştir (z-arabellekleri)" + +#: ../plug-ins/common/depth-merge.c:193 +msgid "_Depth Merge..." +msgstr "_Derin Birleştirme..." + +#: ../plug-ins/common/depth-merge.c:387 +msgid "Depth-merging" +msgstr "Derin birleştiriliyor" + +#: ../plug-ins/common/depth-merge.c:644 +msgid "Depth Merge" +msgstr "Derin Birleştirme" + +#: ../plug-ins/common/depth-merge.c:696 +msgid "Source 1:" +msgstr "Kaynak 1:" + +#: ../plug-ins/common/depth-merge.c:711 ../plug-ins/common/depth-merge.c:741 +msgid "Depth map:" +msgstr "Derin eşlem:" + +#: ../plug-ins/common/depth-merge.c:726 +msgid "Source 2:" +msgstr "Kaynak 2:" + +#: ../plug-ins/common/depth-merge.c:758 +msgid "O_verlap:" +msgstr "B_indirme:" + +#: ../plug-ins/common/depth-merge.c:778 +msgid "Sc_ale 1:" +msgstr "Ö_lçek 1:" + +#: ../plug-ins/common/depth-merge.c:788 +msgid "Sca_le 2:" +msgstr "Öl_çek 2:" + +#: ../plug-ins/common/despeckle.c:142 +msgid "Remove speckle noise from the image" +msgstr "Resimden benekliği kaldır" + +#: ../plug-ins/common/despeckle.c:148 +msgid "Des_peckle..." +msgstr "Benekliği _kaldır..." + +#: ../plug-ins/common/despeckle.c:425 ../plug-ins/common/despeckle.c:645 +msgid "Despeckle" +msgstr "Beneksizleştirme" + +#: ../plug-ins/common/despeckle.c:454 +msgid "Median" +msgstr "Ortanca" + +#: ../plug-ins/common/despeckle.c:462 +msgid "_Adaptive" +msgstr "_Uyarlamalı" + +#: ../plug-ins/common/despeckle.c:472 +msgid "R_ecursive" +msgstr "Ö_zyineli" + +#: ../plug-ins/common/despeckle.c:493 ../plug-ins/common/edge-neon.c:732 +#: ../plug-ins/common/nl-filter.c:1089 ../plug-ins/common/nova.c:366 +#: ../plug-ins/common/unsharp-mask.c:680 ../plug-ins/common/whirl-pinch.c:589 +#: ../plug-ins/gradient-flare/gradient-flare.c:2758 +#: ../plug-ins/imagemap/imap_circle.c:278 +msgid "_Radius:" +msgstr "_Yarıçap:" + +#: ../plug-ins/common/despeckle.c:509 +msgid "_Black level:" +msgstr "_Kara düzey:" + +#: ../plug-ins/common/despeckle.c:525 +msgid "_White level:" +msgstr "_Ak düzey:" + +#: ../plug-ins/common/destripe.c:103 +msgid "Remove vertical stripe artifacts from the image" +msgstr "Resimden, dikey çizgisel bozuklukları temizle" + +#: ../plug-ins/common/destripe.c:109 +msgid "Des_tripe..." +msgstr "Çiz_gisizleştir..." + +#: ../plug-ins/common/destripe.c:272 +msgid "Destriping" +msgstr "Şeritsizleştirme" + +#: ../plug-ins/common/destripe.c:438 +msgid "Destripe" +msgstr "Çizgisizleştir" + +#: ../plug-ins/common/destripe.c:473 ../plug-ins/common/file-html-table.c:595 +#: ../plug-ins/common/file-ps.c:3173 ../plug-ins/common/file-ps.c:3382 +#: ../plug-ins/common/file-raw.c:1058 ../plug-ins/common/smooth-palette.c:436 +#: ../plug-ins/common/tile-paper.c:302 ../plug-ins/common/tile.c:431 +#: ../plug-ins/imagemap/imap_cmd_guides.c:165 +#: ../plug-ins/imagemap/imap_rectangle.c:403 +#: ../plug-ins/print/print-page-layout.c:252 +msgid "_Width:" +msgstr "_Genişlik:" + +#: ../plug-ins/common/destripe.c:484 +msgid "Create _histogram" +msgstr "_Histogram Oluştur" + +#: ../plug-ins/common/diffraction.c:167 +msgid "Generate diffraction patterns" +msgstr "Kırınım desenleri üret" + +#: ../plug-ins/common/diffraction.c:172 +msgid "_Diffraction Patterns..." +msgstr "_Kırınım Desenleri..." + +#: ../plug-ins/common/diffraction.c:330 +msgid "Creating diffraction pattern" +msgstr "Kırınım deseni oluşturuluyor" + +#: ../plug-ins/common/diffraction.c:434 +msgid "Diffraction Patterns" +msgstr "Kırınım desenleri" + +#: ../plug-ins/common/diffraction.c:477 +#: ../plug-ins/map-object/map-object-ui.c:1388 +msgid "_Preview!" +msgstr "Ön_izleme" + +#: ../plug-ins/common/diffraction.c:527 +msgid "Frequencies" +msgstr "Sıklıklar" + +#: ../plug-ins/common/diffraction.c:565 +msgid "Contours" +msgstr "Çevre çizgileri" + +#: ../plug-ins/common/diffraction.c:603 +msgid "Sharp Edges" +msgstr "Keskin Kıyılar" + +#: ../plug-ins/common/diffraction.c:615 ../plug-ins/common/softglow.c:683 +#: ../plug-ins/flame/flame.c:1081 +msgid "_Brightness:" +msgstr "_Parlaklık:" + +#: ../plug-ins/common/diffraction.c:624 +msgid "Sc_attering:" +msgstr "_Dağılma:" + +#: ../plug-ins/common/diffraction.c:633 +msgid "Po_larization:" +msgstr "_Kutuplama" + +#: ../plug-ins/common/diffraction.c:641 +msgid "Other Options" +msgstr "Diğer Seçenekler" + +#: ../plug-ins/common/displace.c:142 +msgid "_X displacement" +msgstr "_X kovma" + +#: ../plug-ins/common/displace.c:142 +msgid "_Pinch" +msgstr "Tutam:" + +#: ../plug-ins/common/displace.c:143 +msgid "_Y displacement" +msgstr "_Y kovma" + +#: ../plug-ins/common/displace.c:143 +msgid "_Whirl" +msgstr "_Sarmal" + +#: ../plug-ins/common/displace.c:169 +msgid "Displace pixels as indicated by displacement maps" +msgstr "Kovma eşleminde gösterildiği gibi benekleri kov" + +#: ../plug-ins/common/displace.c:179 +msgid "_Displace..." +msgstr "_Yerini değiştir..." + +#: ../plug-ins/common/displace.c:290 +msgid "Displacing" +msgstr "Kovma" + +#: ../plug-ins/common/displace.c:326 +msgid "Displace" +msgstr "Yerini değiştir" + +#. X options +#: ../plug-ins/common/displace.c:362 +msgid "_X displacement:" +msgstr "_X uzaklığı:" + +#. Y Options +#: ../plug-ins/common/displace.c:409 +msgid "_Y displacement:" +msgstr "_Y uzaklığı:" + +#: ../plug-ins/common/displace.c:459 +msgid "Displacement Mode" +msgstr "Kovma Kipi" + +#: ../plug-ins/common/displace.c:462 +msgid "_Cartesian" +msgstr "_Kartezyen" + +#: ../plug-ins/common/displace.c:463 +msgid "_Polar" +msgstr "_Kutupsal" + +#: ../plug-ins/common/displace.c:468 +msgid "Edge Behavior" +msgstr "Kenar Davranışı" + +#: ../plug-ins/common/displace.c:474 ../plug-ins/common/edge.c:722 +#: ../plug-ins/common/ripple.c:565 ../plug-ins/common/waves.c:281 +msgid "_Smear" +msgstr "_Sıvama" + +#: ../plug-ins/common/displace.c:476 ../plug-ins/common/edge.c:735 +#: ../plug-ins/common/fractal-trace.c:740 ../plug-ins/common/newsprint.c:398 +msgid "_Black" +msgstr "_Siyah" + +#: ../plug-ins/common/edge-dog.c:135 +msgid "Edge detection with control of edge thickness" +msgstr "Kenar denetimi ile kenar algılama kalınlığı" + +#: ../plug-ins/common/edge-dog.c:142 +msgid "_Difference of Gaussians..." +msgstr "Gaussian _Farkı..." + +#: ../plug-ins/common/edge-dog.c:245 ../plug-ins/common/edge-dog.c:302 +msgid "DoG Edge Detect" +msgstr "DoG Kenar Algılayıcı" + +#: ../plug-ins/common/edge-dog.c:331 +msgid "Smoothing Parameters" +msgstr "Düzleştirme Değiştirgeleri" + +#: ../plug-ins/common/edge-dog.c:345 +msgid "_Radius 1:" +msgstr "_Yarıçap 1:" + +#: ../plug-ins/common/edge-dog.c:349 +msgid "R_adius 2:" +msgstr "Y_arıçap 2:" + +#: ../plug-ins/common/edge-dog.c:372 ../plug-ins/gimpressionist/paper.c:167 +msgid "_Invert" +msgstr "_Tersine Çevir" + +#: ../plug-ins/common/edge-laplace.c:75 +msgid "High-resolution edge detection" +msgstr "Yüksek çözünürlüklü kenar tespit etme" + +#: ../plug-ins/common/edge-laplace.c:85 +msgid "_Laplace" +msgstr "_Laplace" + +#: ../plug-ins/common/edge-laplace.c:243 ../plug-ins/common/edge.c:673 +msgid "Laplace" +msgstr "Laplace" + +#: ../plug-ins/common/edge-laplace.c:321 +msgid "Cleanup" +msgstr "Temizle" + +#: ../plug-ins/common/edge-neon.c:134 +msgid "Simulate the glowing boundary of a neon light" +msgstr "Neon ışığın parıltı sınırını benzetim yap" + +#: ../plug-ins/common/edge-neon.c:139 +msgid "_Neon..." +msgstr "_Neon..." + +#: ../plug-ins/common/edge-neon.c:211 +msgid "Neon" +msgstr "Neon" + +#: ../plug-ins/common/edge-neon.c:695 +msgid "Neon Detection" +msgstr "Neon Algılama" + +#: ../plug-ins/common/edge-neon.c:747 ../plug-ins/common/unsharp-mask.c:693 +msgid "_Amount:" +msgstr "_Miktar:" + +#: ../plug-ins/common/edge-sobel.c:108 +msgid "Specialized direction-dependent edge detection" +msgstr "Özelleştirilmiş, yön tabanlı kenar tespit etme" + +#: ../plug-ins/common/edge-sobel.c:121 +msgid "_Sobel..." +msgstr "_Çizimleştir..." + +#: ../plug-ins/common/edge-sobel.c:231 +msgid "Sobel Edge Detection" +msgstr "Sobel Kenar Algılama" + +#: ../plug-ins/common/edge-sobel.c:260 +msgid "Sobel _horizontally" +msgstr "Ufki" + +#: ../plug-ins/common/edge-sobel.c:272 +msgid "Sobel _vertically" +msgstr "Dikey çizimleştir" + +#: ../plug-ins/common/edge-sobel.c:284 +msgid "_Keep sign of result (one direction only)" +msgstr "_Sonucun izini koru (sadece tek yön)" + +#: ../plug-ins/common/edge-sobel.c:370 +msgid "Sobel edge detecting" +msgstr "Sobel kenar algılanıyor" + +#: ../plug-ins/common/edge.c:152 +msgid "Several simple methods for detecting edges" +msgstr "Kenar tespiti için bir kaç basit yöntem" + +#: ../plug-ins/common/edge.c:157 +msgid "_Edge..." +msgstr "_Kenar..." + +#: ../plug-ins/common/edge.c:229 +msgid "Edge detection" +msgstr "Kenar tespiti" + +#: ../plug-ins/common/edge.c:633 +msgid "Edge Detection" +msgstr "Kenar Tespiti" + +#: ../plug-ins/common/edge.c:668 +msgid "Sobel" +msgstr "Çizimleştir" + +#: ../plug-ins/common/edge.c:669 +msgid "Prewitt compass" +msgstr "Prewitt pusulası" + +#: ../plug-ins/common/edge.c:670 ../plug-ins/common/sinus.c:904 +msgid "Gradient" +msgstr "Renk Geçişi" + +#: ../plug-ins/common/edge.c:671 +msgid "Roberts" +msgstr "Roberts" + +#: ../plug-ins/common/edge.c:672 +msgid "Differential" +msgstr "Farklı Özellik" + +#: ../plug-ins/common/edge.c:682 +msgid "_Algorithm:" +msgstr "_Algoritma:" + +#: ../plug-ins/common/edge.c:690 +msgid "A_mount:" +msgstr "N_icelik:" + +#: ../plug-ins/common/emboss.c:124 +msgid "Simulate an image created by embossing" +msgstr "Basarak oluşturulan sahte görüntü" + +#: ../plug-ins/common/emboss.c:130 +msgid "_Emboss..." +msgstr "_Kabartma..." + +#: ../plug-ins/common/emboss.c:384 ../plug-ins/common/emboss.c:446 +msgid "Emboss" +msgstr "Kabartma" + +#: ../plug-ins/common/emboss.c:474 +msgid "Function" +msgstr "İşlev" + +#: ../plug-ins/common/emboss.c:478 +msgid "_Bumpmap" +msgstr "_Renkli Kabartma" + +#: ../plug-ins/common/emboss.c:479 +msgid "_Emboss" +msgstr "_Kabartma" + +#: ../plug-ins/common/emboss.c:511 +msgid "E_levation:" +msgstr "Y_ükseltme" + +#: ../plug-ins/common/engrave.c:101 +msgid "Simulate an antique engraving" +msgstr "Sahte antika oyma" + +#: ../plug-ins/common/engrave.c:106 +msgid "En_grave..." +msgstr "Oy_ma..." + +#: ../plug-ins/common/engrave.c:180 +msgid "Engraving" +msgstr "Oyma" + +#: ../plug-ins/common/engrave.c:209 +msgid "Engrave" +msgstr "Oyma" + +#: ../plug-ins/common/engrave.c:244 ../plug-ins/common/file-html-table.c:611 +#: ../plug-ins/common/file-ps.c:3183 ../plug-ins/common/file-ps.c:3391 +#: ../plug-ins/common/file-raw.c:1071 ../plug-ins/common/film.c:1003 +#: ../plug-ins/common/smooth-palette.c:441 ../plug-ins/common/tile-paper.c:313 +#: ../plug-ins/common/tile.c:435 ../plug-ins/imagemap/imap_cmd_guides.c:175 +#: ../plug-ins/imagemap/imap_rectangle.c:410 +#: ../plug-ins/print/print-page-layout.c:254 +msgid "_Height:" +msgstr "_Yükseklik:" + +#: ../plug-ins/common/engrave.c:255 +msgid "_Limit line width" +msgstr "Hat genişliği _sınırı" + +#: ../plug-ins/common/file-aa.c:98 +msgid "ASCII art" +msgstr "ASCII sanat" + +#. Create the actual window. +#: ../plug-ins/common/file-aa.c:349 +msgid "Save as Text" +msgstr "Metin Olarak Kaydet" + +#: ../plug-ins/common/file-aa.c:371 +msgid "_Format:" +msgstr "_Biçim:" + +#: ../plug-ins/common/file-cel.c:111 ../plug-ins/common/file-cel.c:129 +msgid "KISS CEL" +msgstr "KISS CEL" + +#: ../plug-ins/common/file-cel.c:191 +msgid "Load KISS Palette" +msgstr "KISS Paletini Yükle" + +#. max. rows allocated +#. column, highest column ever used +#. -1 assume fsel is not available (and not attached to any drawable) +#. -1 assume there is no floating selection +#: ../plug-ins/common/file-cel.c:317 ../plug-ins/common/file-dicom.c:330 +#: ../plug-ins/common/file-gbr.c:366 ../plug-ins/common/file-gif-load.c:345 +#: ../plug-ins/common/file-gih.c:667 ../plug-ins/common/file-pat.c:335 +#: ../plug-ins/common/file-pcx.c:366 ../plug-ins/common/file-pdf.c:586 +#: ../plug-ins/common/file-pix.c:348 ../plug-ins/common/file-png.c:728 +#: ../plug-ins/common/file-pnm.c:499 ../plug-ins/common/file-ps.c:1042 +#: ../plug-ins/common/file-raw.c:673 ../plug-ins/common/file-sunras.c:486 +#: ../plug-ins/common/file-tga.c:447 ../plug-ins/common/file-tiff-load.c:603 +#: ../plug-ins/common/file-wmf.c:994 ../plug-ins/common/file-xbm.c:741 +#: ../plug-ins/common/file-xpm.c:352 ../plug-ins/common/file-xwd.c:520 +#: ../plug-ins/file-bmp/bmp-read.c:161 ../plug-ins/file-faxg3/faxg3.c:217 +#: ../plug-ins/file-fli/fli-gimp.c:502 ../plug-ins/file-ico/ico-load.c:654 +#: ../plug-ins/file-jpeg/jpeg-load.c:115 ../plug-ins/file-psd/psd-load.c:136 +#: ../plug-ins/file-sgi/sgi.c:330 ../plug-ins/file-xjt/xjt.c:3363 +#, c-format +msgid "Opening '%s'" +msgstr "'%s' açılıyor" + +#: ../plug-ins/common/file-cel.c:354 +msgid "Can't create a new image" +msgstr "Yeni görüntü oluşturulamadı" + +#: ../plug-ins/common/file-cel.c:443 +#, c-format +msgid "Unsupported bit depth (%d)!" +msgstr "Desteklenmeyen bit derinliği (%d)!" + +#. init the progress meter +#. And let's begin the progress +#: ../plug-ins/common/file-cel.c:588 ../plug-ins/common/file-gbr.c:652 +#: ../plug-ins/common/file-gif-save.c:768 ../plug-ins/common/file-gih.c:1280 +#: ../plug-ins/common/file-html-table.c:256 ../plug-ins/common/file-pat.c:481 +#: ../plug-ins/common/file-pcx.c:634 ../plug-ins/common/file-pix.c:529 +#: ../plug-ins/common/file-png.c:1278 ../plug-ins/common/file-pnm.c:982 +#: ../plug-ins/common/file-ps.c:1218 ../plug-ins/common/file-sunras.c:568 +#: ../plug-ins/common/file-tga.c:1175 ../plug-ins/common/file-tiff-save.c:693 +#: ../plug-ins/common/file-xbm.c:1039 ../plug-ins/common/file-xpm.c:637 +#: ../plug-ins/common/file-xwd.c:619 ../plug-ins/file-bmp/bmp-write.c:307 +#: ../plug-ins/file-fits/fits.c:481 ../plug-ins/file-fli/fli-gimp.c:718 +#: ../plug-ins/file-ico/ico-save.c:1002 ../plug-ins/file-jpeg/jpeg-save.c:282 +#: ../plug-ins/file-psd/psd-save.c:1640 ../plug-ins/file-sgi/sgi.c:574 +#: ../plug-ins/file-xjt/xjt.c:1710 +#, c-format +msgid "Saving '%s'" +msgstr "'%s' kaydediliyor" + +#: ../plug-ins/common/file-compressor.c:160 +msgid "gzip archive" +msgstr "gzip arşivi" + +#: ../plug-ins/common/file-compressor.c:181 +msgid "bzip archive" +msgstr "bzip arşivi" + +#: ../plug-ins/common/file-compressor.c:390 +msgid "No sensible file extension, saving as compressed XCF." +msgstr "Anlaşılmaz dosya uzantısı,sıkıştırılmış XCF olarak kaydet." + +#: ../plug-ins/common/file-compressor.c:572 +msgid "No sensible file extension, attempting to load with file magic." +msgstr "Uyumlu dosya uzantısı bulunamadı, File-Magic ile yükleme deneniyor." + +#: ../plug-ins/common/file-csource.c:112 +msgid "C source code" +msgstr "C kaynak kodu" + +#: ../plug-ins/common/file-csource.c:660 +msgid "Save as C-Source" +msgstr "C Kaynak Kodu olarak Kaydet" + +#: ../plug-ins/common/file-csource.c:691 +msgid "_Prefixed name:" +msgstr "_Önekli ad:" + +#: ../plug-ins/common/file-csource.c:700 +msgid "Co_mment:" +msgstr "_Açıklama:" + +#. Use Comment +#. +#: ../plug-ins/common/file-csource.c:707 +msgid "_Save comment to file" +msgstr "Yorumu dosyaya _kaydet" + +#. GLib types +#. +#: ../plug-ins/common/file-csource.c:719 +msgid "_Use GLib types (guint8*)" +msgstr "GLib türleri kullan (guint8*)" + +#. Use Macros +#. +#: ../plug-ins/common/file-csource.c:731 +msgid "Us_e macros instead of struct" +msgstr "Yapı birimi yerine iriller kullan" + +#. Use RLE +#. +#: ../plug-ins/common/file-csource.c:743 +msgid "Use _1 byte Run-Length-Encoding" +msgstr "Kulan _1 bayt Çalışıtr-Uzunluk-Kodlama" + +#. Alpha +#. +#: ../plug-ins/common/file-csource.c:755 +msgid "Sa_ve alpha channel (RGBA/RGB)" +msgstr "Görünür kanalını kay_det (RGBA/RGB)" + +#: ../plug-ins/common/file-csource.c:773 +msgid "Op_acity:" +msgstr "_Işık geçirmezlik:" + +#: ../plug-ins/common/file-desktop-link.c:83 +msgid "Desktop Link" +msgstr "Masaüstü Bağlantısı" + +#: ../plug-ins/common/file-desktop-link.c:173 +#, c-format +msgid "Error loading desktop file '%s': %s" +msgstr "Masaüstü dosyası yüklemede '%s' sorunu: %s" + +#: ../plug-ins/common/file-dicom.c:146 +msgid "DICOM image" +msgstr "DICOM görüntüsü" + +#: ../plug-ins/common/file-dicom.c:171 +msgid "Digital Imaging and Communications in Medicine image" +msgstr "Tıp fikrinde Dijital Görüntüleme ve İletişimleri" + +#: ../plug-ins/common/file-dicom.c:352 +#, c-format +msgid "'%s' is not a DICOM file." +msgstr "'%s' DICOM dosyası değil." + +#: ../plug-ins/common/file-dicom.c:769 ../plug-ins/common/file-pcx.c:666 +#: ../plug-ins/common/file-pnm.c:967 +msgid "Cannot save images with alpha channel." +msgstr "Görünür kanalı ile görüntüler kaydedilemez." + +#: ../plug-ins/common/file-dicom.c:784 ../plug-ins/common/file-ps.c:1203 +#: ../plug-ins/common/file-xwd.c:604 ../plug-ins/file-fits/fits.c:466 +#: ../plug-ins/file-xjt/xjt.c:1705 +msgid "Cannot operate on unknown image types." +msgstr "Türü tanınmadığı için görüntü üzerinde işlem yapılamadı" + +#: ../plug-ins/common/file-gbr.c:154 ../plug-ins/common/file-gbr.c:175 +msgid "GIMP brush" +msgstr "GIMP fırçası" + +#: ../plug-ins/common/file-gbr.c:392 ../plug-ins/common/file-pat.c:411 +#, c-format +msgid "Invalid header data in '%s': width=%lu, height=%lu, bytes=%lu" +msgstr "" +"'%s' içinde geçersiz başlık verisi: genişlik=%lu, yükseklik=%lu, bayt=%lu" + +#: ../plug-ins/common/file-gbr.c:416 ../plug-ins/common/file-gbr.c:428 +msgid "Unsupported brush format" +msgstr "Desteklenmeyen fırça biçimi" + +#: ../plug-ins/common/file-gbr.c:440 +#, c-format +msgid "Error in GIMP brush file '%s'" +msgstr "GIMP fırça dosyası '%s'de sorun" + +#: ../plug-ins/common/file-gbr.c:448 +#, c-format +msgid "Invalid UTF-8 string in brush file '%s'." +msgstr "'%s' fırça dosyası içinde geçersiz UTF-8 dizgisi." + +#: ../plug-ins/common/file-gbr.c:454 ../plug-ins/common/file-gih.c:510 +#: ../plug-ins/common/file-gih.c:1173 +#: ../plug-ins/gradient-flare/gradient-flare.c:3063 +msgid "Unnamed" +msgstr "Isimsiz" + +#: ../plug-ins/common/file-gbr.c:637 +msgid "GIMP brushes are either GRAYSCALE or RGBA" +msgstr "GIMP fırçaları ya GRİTONLAMALI veya RGBA" + +#: ../plug-ins/common/file-gbr.c:735 +msgid "Save as Brush" +msgstr "Fırça Olarak Kaydet" + +#. attach labels +#: ../plug-ins/common/file-gbr.c:762 ../plug-ins/common/grid.c:790 +msgid "Spacing:" +msgstr "Boşluk:" + +#: ../plug-ins/common/file-gbr.c:773 ../plug-ins/common/file-gih.c:925 +#: ../plug-ins/common/file-pat.c:571 ../plug-ins/gimpressionist/presets.c:666 +msgid "Description:" +msgstr "Açıklama:" + +#: ../plug-ins/common/file-gif-load.c:142 +#: ../plug-ins/common/file-gif-save.c:168 +msgid "GIF image" +msgstr "GIF görüntüsü" + +#: ../plug-ins/common/file-gif-load.c:357 +msgid "This is not a GIF file" +msgstr "Bu GIF dosyası değil" + +#: ../plug-ins/common/file-gif-load.c:396 +msgid "Non-square pixels. Image might look squashed." +msgstr "Kare olmayan benekler. Resim düzgün görünmeyebilir." + +#: ../plug-ins/common/file-gif-load.c:913 +#, c-format +msgid "Background (%d%s)" +msgstr "Arkaplan (%d%s)" + +#: ../plug-ins/common/file-gif-load.c:936 +#, c-format +msgid "Opening '%s' (frame %d)" +msgstr "'%s' açılıyor (çerçeve %d)" + +#: ../plug-ins/common/file-gif-load.c:965 ../plug-ins/common/iwarp.c:791 +#: ../plug-ins/common/iwarp.c:826 +#, c-format +msgid "Frame %d" +msgstr "Çerçeve %d" + +#: ../plug-ins/common/file-gif-load.c:967 +#, c-format +msgid "Frame %d (%d%s)" +msgstr "Çerçeve %d (%d%s)" + +#: ../plug-ins/common/file-gif-load.c:998 +#, c-format +msgid "" +"GIF: Undocumented GIF composite type %d is not handled. Animation might not " +"play or re-save perfectly." +msgstr "" +"GIF: Belgelenmemiş GIF %d düzenleme biçimi kullanılamadı. Animasyon düzgün " +"oynatılamayabilir veya kaydedilemeyebilir." + +#: ../plug-ins/common/file-gif-save.c:447 +msgid "Couldn't simply reduce colors further. Saving as opaque." +msgstr "Renkleri daha fazla düşürülemiyor. Opak olarak kaydediyor." + +#: ../plug-ins/common/file-gif-save.c:562 +#, c-format +msgid "" +"Unable to save '%s'. The GIF file format does not support images that are " +"more than %d pixels wide or tall." +msgstr "" +"'%s' kaydedilemedi. GIF dosya biçimi, %d benekten daha geniş ya da uzun olan " +"resimleri desteklemez." + +#: ../plug-ins/common/file-gif-save.c:673 +msgid "" +"The GIF format only supports comments in 7bit ASCII encoding. No comment is " +"saved." +msgstr "" +"GIF dosya biçimi yorumları sadece 7bit ASCII kodlamasında destekler. Hiçbir " +"yorum kaydedilmedi." + +#: ../plug-ins/common/file-gif-save.c:732 +msgid "" +"Cannot save RGB color images. Convert to indexed color or grayscale first." +msgstr "" +"RGB renkli resimleri kaydedilemedi. Öncelikle ya sıralanmış ya da gri " +"tonlamaları renklere çevirin." + +#: ../plug-ins/common/file-gif-save.c:910 +msgid "Delay inserted to prevent evil CPU-sucking animation." +msgstr "Aşırı işlemci yüklemesini önlemek için ekli olanı geciktir." + +#: ../plug-ins/common/file-gif-save.c:950 +msgid "" +"The image you are trying to save as a GIF contains layers which extend " +"beyond the actual borders of the image." +msgstr "" +"GIF olarak saklamaya çalıştığınız resim normal sınırlarını aşan katmanlar " +"içermektedir." + +#: ../plug-ins/common/file-gif-save.c:967 +msgid "" +"The GIF file format does not allow this. You may choose whether to crop all " +"of the layers to the image borders, or cancel this save." +msgstr "" +"GIF dosya biçimi buna izin vermemektedir. Bütün katmanları resim sınırlarına " +"kırpabilir ya da kaydetmekten vazgeçebilirsiniz." + +#: ../plug-ins/common/file-gif-save.c:1008 +msgid "Save as GIF" +msgstr "GIF olarak kaydet" + +#. regular gif parameter settings +#: ../plug-ins/common/file-gif-save.c:1030 +msgid "GIF Options" +msgstr "GIF Seçenekleri" + +#: ../plug-ins/common/file-gif-save.c:1036 +msgid "I_nterlace" +msgstr "B_irleştirmek" + +#: ../plug-ins/common/file-gif-save.c:1052 +msgid "_GIF comment:" +msgstr "_GIF yorumu:" + +#. additional animated gif parameter settings +#: ../plug-ins/common/file-gif-save.c:1110 +msgid "Animated GIF Options" +msgstr "Canlandırmalı GIF Seçenekleri" + +#: ../plug-ins/common/file-gif-save.c:1116 +msgid "_Loop forever" +msgstr "Sonsuz _döngü" + +#: ../plug-ins/common/file-gif-save.c:1129 +msgid "_Delay between frames where unspecified:" +msgstr "_Belirtilmemiş kareler arasında gecikme uygula:" + +#: ../plug-ins/common/file-gif-save.c:1144 ../plug-ins/common/file-mng.c:1507 +msgid "milliseconds" +msgstr "milisaniye" + +#: ../plug-ins/common/file-gif-save.c:1154 +msgid "_Frame disposal where unspecified:" +msgstr "_Belirtilmemiş kareleri çıkar:" + +#: ../plug-ins/common/file-gif-save.c:1158 +msgid "I don't care" +msgstr "Umurumda değil" + +#: ../plug-ins/common/file-gif-save.c:1160 +msgid "Cumulative layers (combine)" +msgstr "Birikimli katmanlar (birleştirme)" + +#: ../plug-ins/common/file-gif-save.c:1162 +msgid "One frame per layer (replace)" +msgstr "Katman başına bir çerçeve (değiştirme)" + +#. The "Always use default values" toggles +#: ../plug-ins/common/file-gif-save.c:1178 +msgid "_Use delay entered above for all frames" +msgstr "_Yukarıda girilen gecikmeyi tüm karelere uygula" + +#: ../plug-ins/common/file-gif-save.c:1188 +msgid "U_se disposal entered above for all frames" +msgstr "Üstte girilen düzeni tüm karelerde k_ullan" + +#: ../plug-ins/common/file-gif-save.c:2341 +msgid "Error writing output file." +msgstr "Çıktı dosyası yazılırken hata." + +#: ../plug-ins/common/file-gif-save.c:2411 +#, c-format +msgid "The default comment is limited to %d characters." +msgstr "Varsayılan açıklama %d karakterle sınırlıdır." + +#: ../plug-ins/common/file-gih.c:209 ../plug-ins/common/file-gih.c:230 +msgid "GIMP brush (animated)" +msgstr "GIMP fırça (hareketli)" + +#: ../plug-ins/common/file-gih.c:324 +#, c-format +msgid "Layer %s doesn't have an alpha channel, skipped" +msgstr "%s katmanı görünür kanalına sahip değil, atlanıyor" + +#: ../plug-ins/common/file-gih.c:503 +msgid "Error in GIMP brush pipe file." +msgstr "GIMP fırça boru dosyasında hata." + +#: ../plug-ins/common/file-gih.c:569 +msgid "GIMP brush file appears to be corrupted." +msgstr "Hasarlı GIMP fırça dosyası." + +#: ../plug-ins/common/file-gih.c:718 +msgid "Couldn't load one brush in the pipe, giving up." +msgstr "Borudaki bir fırça yüklenemedi, vazgeçiliyor." + +#: ../plug-ins/common/file-gih.c:881 +msgid "Save as Brush Pipe" +msgstr "Fırça Borusu olarak kaydet." + +#: ../plug-ins/common/file-gih.c:911 +msgid "Spacing (percent):" +msgstr "Boşluk (yüzde):" + +#: ../plug-ins/common/file-gih.c:978 +msgid "Pixels" +msgstr "Piksel" + +#: ../plug-ins/common/file-gih.c:983 +msgid "Cell size:" +msgstr "Hücre boyutu:" + +#: ../plug-ins/common/file-gih.c:995 +msgid "Number of cells:" +msgstr "Hücre sayısı:" + +#: ../plug-ins/common/file-gih.c:1020 +msgid " Rows of " +msgstr " Dizisi " + +#: ../plug-ins/common/file-gih.c:1032 +msgid " Columns on each layer" +msgstr " Her katman üstündeki sütunlar" + +#: ../plug-ins/common/file-gih.c:1036 +msgid " (Width Mismatch!) " +msgstr " (Uyuşmayan Genişlik!) " + +#: ../plug-ins/common/file-gih.c:1040 +msgid " (Height Mismatch!) " +msgstr " (Uyuşmayan Yükseklik!) " + +#: ../plug-ins/common/file-gih.c:1045 +msgid "Display as:" +msgstr "Farklı göster:" + +#: ../plug-ins/common/file-gih.c:1054 +msgid "Dimension:" +msgstr "Boyut:" + +#: ../plug-ins/common/file-gih.c:1129 +msgid "Ranks:" +msgstr "Sıralamalar:" + +#: ../plug-ins/common/file-header.c:77 +msgid "C source code header" +msgstr "C kaynak kod başlığı" + +#: ../plug-ins/common/file-html-table.c:156 +msgid "HTML table" +msgstr "HTML tablosu" + +#: ../plug-ins/common/file-html-table.c:409 +msgid "Save as HTML table" +msgstr "HTML tablosu olarak kaydet" + +#: ../plug-ins/common/file-html-table.c:436 +msgid "Warning" +msgstr "Uyarı" + +#: ../plug-ins/common/file-html-table.c:447 +msgid "" +"You are about to create a huge\n" +"HTML file which will most likely\n" +"crash your browser." +msgstr "" +"Tarayıcınızın çökmesine neden\n" +"olacak büyük bir HTML dosyası\n" +"yaratmak üzeresiniz." + +#. HTML Page Options +#: ../plug-ins/common/file-html-table.c:456 +msgid "HTML Page Options" +msgstr "HTML Sayfa Seçenekleri" + +#: ../plug-ins/common/file-html-table.c:463 +msgid "_Generate full HTML document" +msgstr "_Tam HTML belgesi oluştur" + +#: ../plug-ins/common/file-html-table.c:469 +msgid "" +"If checked GTM will output a full HTML document with , , etc. " +"tags instead of just the table html." +msgstr "" +"Eğer GTM seçerseniz, belge tablo kodlarının yanında , , gibi " +"html kodları ile birlikte aktarılacaktır." + +#. HTML Table Creation Options +#: ../plug-ins/common/file-html-table.c:482 +msgid "Table Creation Options" +msgstr "Tablo Oluşturma Seçenekleri" + +#: ../plug-ins/common/file-html-table.c:490 +msgid "_Use cellspan" +msgstr "_Hücre genişliğini kullan" + +#: ../plug-ins/common/file-html-table.c:496 +msgid "" +"If checked GTM will replace any rectangular sections of identically colored " +"blocks with one large cell with ROWSPAN and COLSPAN values." +msgstr "" +"Eğer denetlenen GTM, ROWSPAN ve COLSPAN değelerini alan bir geniş hücre ile " +"aynı şekilde boyanmış engelleri olan herhangi bir bölümlenmiş dikdörtgen " +"yerine geçecekse." + +#: ../plug-ins/common/file-html-table.c:505 +msgid "Co_mpress TD tags" +msgstr "TD etiketlerini sı_Kıştır" + +#: ../plug-ins/common/file-html-table.c:511 +msgid "" +"Checking this tag will cause GTM to leave no whitespace between the TD tags " +"and the cellcontent. This is only necessary for pixel level positioning " +"control." +msgstr "" +"Bu etiketi denetlemek, GTM'nin TD etiketleri ve hücre içeriği arasında " +"beyazboşluk bırakmamasına neden olacaktır. Bu yalnızca benek konumlandırması " +"denetimi için gereklidir." + +#: ../plug-ins/common/file-html-table.c:521 +msgid "C_aption" +msgstr "Ba_şlık" + +#: ../plug-ins/common/file-html-table.c:527 +msgid "Check if you would like to have the table captioned." +msgstr "Başlıklı tablo oluşturmak istiyorsanız işaretleyin." + +#: ../plug-ins/common/file-html-table.c:542 +msgid "The text for the table caption." +msgstr "Çizelge başlığı için metin." + +#: ../plug-ins/common/file-html-table.c:555 +msgid "C_ell content:" +msgstr "H_ücre içeriği:" + +#: ../plug-ins/common/file-html-table.c:559 +msgid "The text to go into each cell." +msgstr "Her hücreye konacak metin." + +#. HTML Table Options +#: ../plug-ins/common/file-html-table.c:569 +msgid "Table Options" +msgstr "Tablo Seçenekleri" + +#: ../plug-ins/common/file-html-table.c:580 +msgid "_Border:" +msgstr "_Kenarlık:" + +#: ../plug-ins/common/file-html-table.c:584 +msgid "The number of pixels in the table border." +msgstr "Tablo kenarlıklarındaki benek sayısı" + +#: ../plug-ins/common/file-html-table.c:599 +msgid "The width for each table cell. Can be a number or a percent." +msgstr "Her tablo hücresi için genişlik. Sayı veya yüzde olabilir." + +#: ../plug-ins/common/file-html-table.c:615 +msgid "The height for each table cell. Can be a number or a percent." +msgstr "Her tablo hücresi için yükseklik. Sayı veya yüzde olabilir." + +#: ../plug-ins/common/file-html-table.c:626 +msgid "Cell-_padding:" +msgstr "Hücre-_dolgusu:" + +#: ../plug-ins/common/file-html-table.c:630 +msgid "The amount of cellpadding." +msgstr "Hücredolgusu miktarı." + +#: ../plug-ins/common/file-html-table.c:639 +msgid "Cell-_spacing:" +msgstr "Hücre-_aralığı:" + +#: ../plug-ins/common/file-html-table.c:643 +msgid "The amount of cellspacing." +msgstr "Hücre boşluğunun miktarı." + +#. Inform the user that we couldn't losslessly save the +#. * transparency & just use the full palette +#: ../plug-ins/common/file-mng.c:498 ../plug-ins/common/file-png.c:1761 +msgid "Couldn't losslessly save transparency, saving opacity instead." +msgstr "" +"Kayıp olmadan saydamlık kaydedilemedi, bunun yerine opaklık kaydediliyor." + +#: ../plug-ins/common/file-mng.c:1287 +msgid "Save as MNG" +msgstr "MNG olarak kaydet" + +#: ../plug-ins/common/file-mng.c:1307 +msgid "MNG Options" +msgstr "MNG seçenekleri" + +#: ../plug-ins/common/file-mng.c:1313 +msgid "Interlace" +msgstr "birleştirmek" + +#: ../plug-ins/common/file-mng.c:1325 +msgid "Save background color" +msgstr "Artalan rengini kaydet" + +#: ../plug-ins/common/file-mng.c:1336 +msgid "Save gamma" +msgstr "Gamayı kaydet" + +#: ../plug-ins/common/file-mng.c:1346 +msgid "Save resolution" +msgstr "Çözünürlüğü kaydet" + +#: ../plug-ins/common/file-mng.c:1357 +msgid "Save creation time" +msgstr "Oluşturulma zamanını kaydet" + +#: ../plug-ins/common/file-mng.c:1376 +msgid "PNG" +msgstr "PNG" + +#: ../plug-ins/common/file-mng.c:1377 +msgid "JNG" +msgstr "JNG" + +#: ../plug-ins/common/file-mng.c:1380 +msgid "PNG + delta PNG" +msgstr "PNG + delta PNG" + +#: ../plug-ins/common/file-mng.c:1381 +msgid "JNG + delta PNG" +msgstr "JNG + delta PNG" + +#: ../plug-ins/common/file-mng.c:1382 +msgid "All PNG" +msgstr "Tüm PNG" + +#: ../plug-ins/common/file-mng.c:1383 +msgid "All JNG" +msgstr "Tüm JNG" + +#: ../plug-ins/common/file-mng.c:1395 +msgid "Default chunks type:" +msgstr "Varsayılan parçalrın türü:" + +#: ../plug-ins/common/file-mng.c:1398 +msgid "Combine" +msgstr "Birleştir" + +#: ../plug-ins/common/file-mng.c:1399 +msgid "Replace" +msgstr "Üstüne yaz" + +#: ../plug-ins/common/file-mng.c:1410 +msgid "Default frame disposal:" +msgstr "Varsayılan çerçeve düzeni:" + +#: ../plug-ins/common/file-mng.c:1422 +msgid "PNG compression level:" +msgstr "PNG sıkıştırma seviyesi:" + +#: ../plug-ins/common/file-mng.c:1430 ../plug-ins/common/file-png.c:1909 +msgid "Choose a high compression level for small file size" +msgstr "Küçük dosya boyutu için yüksek sıkıştırma düzeyi seçin" + +#: ../plug-ins/common/file-mng.c:1444 +msgid "JPEG compression quality:" +msgstr "JPEG sıkıştırma kalitesi:" + +#: ../plug-ins/common/file-mng.c:1461 +msgid "JPEG smoothing factor:" +msgstr "JPEG yumuşatma çarpanı:" + +#: ../plug-ins/common/file-mng.c:1471 +msgid "Animated MNG Options" +msgstr "Hareketli MNG Seçenekleri" + +#: ../plug-ins/common/file-mng.c:1477 +msgid "Loop" +msgstr "Döngü" + +#: ../plug-ins/common/file-mng.c:1491 +msgid "Default frame delay:" +msgstr "Öntanımlı çerçeve gecikmesi:" + +#: ../plug-ins/common/file-mng.c:1564 +msgid "MNG animation" +msgstr "MNG animasyonu" + +#: ../plug-ins/common/file-pat.c:123 ../plug-ins/common/file-pat.c:145 +msgid "GIMP pattern" +msgstr "GIMP deseni" + +#: ../plug-ins/common/file-pat.c:371 +#, c-format +msgid "Invalid UTF-8 string in pattern file '%s'." +msgstr "'%s' desen dosyası içinde geçersiz UTF-8 dizgisi." + +#: ../plug-ins/common/file-pat.c:543 +msgid "Save as Pattern" +msgstr "Desen olarak Kaydet" + +#: ../plug-ins/common/file-pcx.c:133 ../plug-ins/common/file-pcx.c:152 +msgid "ZSoft PCX image" +msgstr "ZSoft PCX görüntüsü" + +#: ../plug-ins/common/file-pcx.c:372 +#, c-format +msgid "Could not read header from '%s'" +msgstr "'%s' içindeki başlık okunamadı" + +#: ../plug-ins/common/file-pcx.c:382 +#, c-format +msgid "'%s' is not a PCX file" +msgstr "'%s' PCX dosyası değil" + +#: ../plug-ins/common/file-pcx.c:395 ../plug-ins/file-bmp/bmp-read.c:638 +#: ../plug-ins/file-psd/psd-load.c:302 +#, c-format +msgid "Unsupported or invalid image width: %d" +msgstr "Desteklenmeyen veya geçersiz görüntü genişliği: %d" + +#: ../plug-ins/common/file-pcx.c:400 ../plug-ins/file-bmp/bmp-read.c:644 +#: ../plug-ins/file-psd/psd-load.c:294 +#, c-format +msgid "Unsupported or invalid image height: %d" +msgstr "Desteklenmeyen veya geçersiz görüntü yüksekliği: %d" + +#: ../plug-ins/common/file-pcx.c:405 +msgid "Invalid number of bytes per line in PCX header" +msgstr "PCX başlığındaki satır başına baytların geçersiz sayısı" + +#: ../plug-ins/common/file-pcx.c:412 +#, c-format +msgid "Image dimensions too large: width %d x height %d" +msgstr "Görüntü boyutları çok büyük: genişlik %d x yükseklik %d" + +#: ../plug-ins/common/file-pcx.c:460 +msgid "Unusual PCX flavour, giving up" +msgstr "Beklenmedik PCX davranışı, vaz geçiliyor" + +#: ../plug-ins/common/file-pcx.c:683 +#, c-format +msgid "Invalid X offset: %d" +msgstr "Geçersiz X konumu: %d" + +#: ../plug-ins/common/file-pcx.c:689 +#, c-format +msgid "Invalid Y offset: %d" +msgstr "Geçersiz Y konumu: %d" + +#: ../plug-ins/common/file-pcx.c:695 +#, c-format +msgid "Right border out of bounds (must be < %d): %d" +msgstr "Sağ kenarlık sınırlamaların dışında (olmalı < %d): %d" + +#: ../plug-ins/common/file-pcx.c:702 +#, c-format +msgid "Bottom border out of bounds (must be < %d): %d" +msgstr "Alt kenarlık sınırlamaların dışında (olmalı < %d): %d" + +#: ../plug-ins/common/file-pcx.c:759 +#, c-format +msgid "Writing to file '%s' failed: %s" +msgstr "'%s' dosyasına yazılamadı: %s" + +#: ../plug-ins/common/file-pdf.c:288 +msgid "Portable Document Format" +msgstr "Taşınabilir Belge Biçimi" + +#: ../plug-ins/common/file-pdf.c:620 +#, c-format +msgid "%s-%s" +msgstr "%s-%s" + +#: ../plug-ins/common/file-pdf.c:622 ../plug-ins/common/file-ps.c:1125 +#, c-format +msgid "%s-pages" +msgstr "%s-sayfa" + +#: ../plug-ins/common/file-pdf.c:808 +msgid "Import from PDF" +msgstr "PDF'den al" + +#: ../plug-ins/common/file-pdf.c:813 ../plug-ins/common/file-ps.c:3102 +#: ../plug-ins/common/file-tiff-load.c:483 +msgid "_Import" +msgstr "İçe _Aktar" + +#: ../plug-ins/common/file-pdf.c:880 +msgid "_Width (pixels):" +msgstr "_Genişlik (benek):" + +#: ../plug-ins/common/file-pdf.c:881 +msgid "_Height (pixels):" +msgstr "_Yükseklik (benek):" + +#: ../plug-ins/common/file-pdf.c:883 +msgid "_Resolution:" +msgstr "_Çözünürlük:" + +#: ../plug-ins/common/file-pdf.c:1157 +#, c-format +msgid "pixels/%s" +msgstr "benek/%s" + +#: ../plug-ins/common/file-pix.c:142 ../plug-ins/common/file-pix.c:159 +msgid "Alias Pix image" +msgstr "Pix görüntüsü kısaltması" + +#: ../plug-ins/common/file-png.c:263 ../plug-ins/common/file-png.c:284 +#: ../plug-ins/common/file-png.c:304 ../plug-ins/common/file-png.c:321 +msgid "PNG image" +msgstr "PNG görüntüsü" + +#: ../plug-ins/common/file-png.c:628 +#, c-format +msgid "Error loading PNG file: %s" +msgstr "PNG dosyasında yükleme hatası: %s" + +#: ../plug-ins/common/file-png.c:703 +#, c-format +msgid "Error while reading '%s'. File corrupted?" +msgstr "'%s' okunurken hata oluştu. Bozuk dosya mı?" + +#: ../plug-ins/common/file-png.c:834 +#, c-format +msgid "Unknown color model in PNG file '%s'." +msgstr "PNG dosyası '%s' içinde bilinmeyen renk modeli." + +#: ../plug-ins/common/file-png.c:889 +msgid "" +"The PNG file specifies an offset that caused the layer to be positioned " +"outside the image." +msgstr "" +"Png dosyası bir göreli konum belirtir katmanın resimin dışında da " +"hizalanabilmesi için." + +#: ../plug-ins/common/file-png.c:1255 +#, c-format +msgid "Error while saving '%s'. Could not save image." +msgstr "'%s' kaydedilirken hata oluştu. Görüntü kaydedilemedi." + +#: ../plug-ins/common/file-png.c:1786 +msgid "Save as PNG" +msgstr "PNG olarak kaydet" + +#: ../plug-ins/common/file-png.c:1818 +msgid "_Interlacing (Adam7)" +msgstr "_Birleştirme (Adam 7)" + +#: ../plug-ins/common/file-png.c:1829 +msgid "Save _background color" +msgstr "_Artalan rengini kaydet" + +#: ../plug-ins/common/file-png.c:1837 +msgid "Save _gamma" +msgstr "_Gamayı kaydet" + +#: ../plug-ins/common/file-png.c:1847 +msgid "Save layer o_ffset" +msgstr "O_fset baskı tabakasını kaydet" + +#: ../plug-ins/common/file-png.c:1856 +msgid "Save _resolution" +msgstr "_Çözünürlüğü kaydet" + +#: ../plug-ins/common/file-png.c:1866 +msgid "Save creation _time" +msgstr "Oluşturma _zamanını kaydet" + +#: ../plug-ins/common/file-png.c:1875 +msgid "Save comme_nt" +msgstr "Açıkla_mayı kaydet" + +#: ../plug-ins/common/file-png.c:1891 +msgid "Save color _values from transparent pixels" +msgstr "Saydam beneklerden renk _değerlerini kaydet" + +#: ../plug-ins/common/file-png.c:1905 +msgid "Co_mpression level:" +msgstr "Sı_kıştırma seviyesi:" + +#: ../plug-ins/common/file-png.c:1923 ../plug-ins/file-jpeg/jpeg-save.c:1186 +msgid "_Load Defaults" +msgstr "Öntanımlı Ayarları _Yükle" + +#: ../plug-ins/common/file-png.c:1931 +msgid "S_ave Defaults" +msgstr "Varsayılanları K_aydet" + +#: ../plug-ins/common/file-pnm.c:248 +msgid "PNM Image" +msgstr "PNM Görüntüsü" + +#: ../plug-ins/common/file-pnm.c:268 +msgid "PNM image" +msgstr "PNM görüntüsü" + +#: ../plug-ins/common/file-pnm.c:280 +msgid "PBM image" +msgstr "PBM görüntüsü" + +#: ../plug-ins/common/file-pnm.c:292 +msgid "PGM image" +msgstr "PGM görüntüsü" + +#: ../plug-ins/common/file-pnm.c:304 +msgid "PPM image" +msgstr "PPM görüntüsü" + +#: ../plug-ins/common/file-pnm.c:528 ../plug-ins/common/file-pnm.c:550 +#: ../plug-ins/common/file-pnm.c:559 ../plug-ins/common/file-pnm.c:570 +#: ../plug-ins/common/file-pnm.c:658 ../plug-ins/common/file-pnm.c:728 +msgid "Premature end of file." +msgstr "Dosyanın erken bitişi." + +#: ../plug-ins/common/file-pnm.c:530 +msgid "Invalid file." +msgstr "Geçersiz dosya." + +#: ../plug-ins/common/file-pnm.c:544 +msgid "File not in a supported format." +msgstr "Dosya desteklenecek biçimde değil." + +#: ../plug-ins/common/file-pnm.c:553 +msgid "Invalid X resolution." +msgstr "Geçersiz X çözünürlüğü" + +#: ../plug-ins/common/file-pnm.c:555 +msgid "Image width is larger than GIMP can handle." +msgstr "Görüntü genişliği GIMP'in kaldırabileceğinden daha büyük." + +#: ../plug-ins/common/file-pnm.c:562 +msgid "Invalid Y resolution." +msgstr "Geçersiz Y çözünürlüğü." + +#: ../plug-ins/common/file-pnm.c:564 +msgid "Image height is larger than GIMP can handle." +msgstr "Görüntü yüksekliği GIMP'in kaldırabileceğinden daha fazla." + +#: ../plug-ins/common/file-pnm.c:576 +msgid "Unsupported maximum value." +msgstr "Desteklenmeyen en yüksek değer." + +#: ../plug-ins/common/file-pnm.c:781 +msgid "Error reading file." +msgstr "Dosya okunurken hata:" + +#: ../plug-ins/common/file-pnm.c:1186 +msgid "Save as PNM" +msgstr "PNM olarak kaydet" + +#. file save type +#: ../plug-ins/common/file-pnm.c:1203 +msgid "Data formatting" +msgstr "Veri biçimlendirmesi" + +#: ../plug-ins/common/file-pnm.c:1207 +msgid "Raw" +msgstr "Ham" + +#: ../plug-ins/common/file-pnm.c:1208 +msgid "Ascii" +msgstr "Ascii" + +#: ../plug-ins/common/file-ps.c:599 ../plug-ins/common/file-ps.c:691 +msgid "PostScript document" +msgstr "PostScript belgesi" + +#: ../plug-ins/common/file-ps.c:618 ../plug-ins/common/file-ps.c:707 +msgid "Encapsulated PostScript image" +msgstr "Kısaltılmış DipNot görüntüsü" + +#: ../plug-ins/common/file-ps.c:638 +msgid "PDF document" +msgstr "PDF belgesi" + +#: ../plug-ins/common/file-ps.c:1050 +#, c-format +msgid "Could not interpret Postscript file '%s'" +msgstr "Postscript dosyası '%s' yorumlanamıyor." + +#: ../plug-ins/common/file-ps.c:1192 +#, c-format +msgid "PostScript save cannot handle images with alpha channels" +msgstr "PostScript kaydı görüntü görünür kanalları ile yapılamıyor" + +#: ../plug-ins/common/file-ps.c:1730 ../plug-ins/common/file-ps.c:1765 +#, c-format +msgid "" +"Error starting Ghostscript. Make sure that Ghostscript is installed and - if " +"necessary - use the environment variable GS_PROG to tell GIMP about its " +"location.\n" +"(%s)" +msgstr "" +"Ghostscript başlatılırken hata. Ghostscript'in yüklendiğinden ve -eğer " +"gerekliyse- GS_PROG ortam değişkeninin GIMP'e konumunu bildirmesi için " +"kullandığınızdan emin olun.\n" +"(%s)" + +#: ../plug-ins/common/file-ps.c:1932 ../plug-ins/common/file-tiff-load.c:999 +#, c-format +msgid "Page %d" +msgstr "Sayfa %d" + +#: ../plug-ins/common/file-ps.c:2602 ../plug-ins/common/file-ps.c:2735 +#: ../plug-ins/common/file-ps.c:2887 ../plug-ins/common/file-ps.c:3013 +#: ../plug-ins/common/file-sunras.c:1504 ../plug-ins/common/file-sunras.c:1612 +#: ../plug-ins/file-fits/fits.c:850 ../plug-ins/file-fits/fits.c:974 +msgid "Write error occurred" +msgstr "Yazım hatası oluştu" + +#: ../plug-ins/common/file-ps.c:3097 +msgid "Import from PostScript" +msgstr "PostScript' ten içeri aktar" + +#. Rendering +#: ../plug-ins/common/file-ps.c:3140 +msgid "Rendering" +msgstr "Taranıyor" + +#. Resolution +#: ../plug-ins/common/file-ps.c:3156 ../plug-ins/common/file-svg.c:929 +#: ../plug-ins/common/file-wmf.c:692 +msgid "Resolution:" +msgstr "Çözünürlük:" + +#: ../plug-ins/common/file-ps.c:3195 +msgid "Pages:" +msgstr "Sayfa:" + +#: ../plug-ins/common/file-ps.c:3202 +msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" +msgstr "Yüklenecek sayfalar (ör.: 1-4 veya 1,3,5-7)" + +#: ../plug-ins/common/file-ps.c:3206 ../plug-ins/common/sphere-designer.c:2646 +msgid "Layers" +msgstr "Katmanlar" + +#: ../plug-ins/common/file-ps.c:3208 +msgid "Images" +msgstr "Görüntüler" + +#: ../plug-ins/common/file-ps.c:3211 +msgid "Open as" +msgstr "Farklı aç" + +#: ../plug-ins/common/file-ps.c:3215 +msgid "Try Bounding Box" +msgstr "Çevreleyen Kutuyu Dene" + +#. Colouring +#: ../plug-ins/common/file-ps.c:3228 +msgid "Coloring" +msgstr "Renklendirme" + +#: ../plug-ins/common/file-ps.c:3232 +msgid "B/W" +msgstr "S/B" + +#: ../plug-ins/common/file-ps.c:3234 ../plug-ins/common/file-xpm.c:479 +#: ../plug-ins/gimpressionist/color.c:66 +#: ../plug-ins/gimpressionist/general.c:170 +#: ../plug-ins/imagemap/imap_menu.c:213 +msgid "Color" +msgstr "Renk" + +#: ../plug-ins/common/file-ps.c:3235 ../plug-ins/file-fits/fits.c:1033 +msgid "Automatic" +msgstr "Otomatik" + +#: ../plug-ins/common/file-ps.c:3245 +msgid "Text antialiasing" +msgstr "Metin yumuşatma" + +#: ../plug-ins/common/file-ps.c:3250 ../plug-ins/common/file-ps.c:3262 +msgid "Weak" +msgstr "Zayıf" + +#: ../plug-ins/common/file-ps.c:3251 ../plug-ins/common/file-ps.c:3263 +msgid "Strong" +msgstr "Güçlü" + +#: ../plug-ins/common/file-ps.c:3257 +msgid "Graphic antialiasing" +msgstr "Grafik yumuşatma" + +#: ../plug-ins/common/file-ps.c:3335 +msgid "Save as PostScript" +msgstr "PostScript olarak kaydet" + +#. Image Size +#: ../plug-ins/common/file-ps.c:3366 +msgid "Image Size" +msgstr "Görüntü Boyutu" + +#: ../plug-ins/common/file-ps.c:3415 +msgid "_Keep aspect ratio" +msgstr "En-Boy oranını _Sakla" + +#: ../plug-ins/common/file-ps.c:3421 +msgid "" +"When toggled, the resulting image will be scaled to fit into the given size " +"without changing the aspect ratio." +msgstr "" +"Seçildiği zaman, elde edilecek olan görüntü en-boy oranı değişmeden verilen " +"boyuta ölçeklenecek." + +#. Unit +#: ../plug-ins/common/file-ps.c:3431 +msgid "Unit" +msgstr "Birim" + +#: ../plug-ins/common/file-ps.c:3435 +msgid "_Inch" +msgstr "_İnç" + +#: ../plug-ins/common/file-ps.c:3436 +msgid "_Millimeter" +msgstr "_Milimetre" + +#. Rotation +#: ../plug-ins/common/file-ps.c:3447 +#: ../plug-ins/map-object/map-object-ui.c:1035 +msgid "Rotation" +msgstr "Döndürme" + +#. Format +#: ../plug-ins/common/file-ps.c:3462 +msgid "Output" +msgstr "Çıktı" + +#: ../plug-ins/common/file-ps.c:3468 +msgid "_PostScript level 2" +msgstr "_PostScript seviye 2" + +#: ../plug-ins/common/file-ps.c:3477 +msgid "_Encapsulated PostScript" +msgstr "_Kısaltılmış DipNot" + +#: ../plug-ins/common/file-ps.c:3486 +msgid "P_review" +msgstr "Ö_nizleme" + +#: ../plug-ins/common/file-ps.c:3507 +msgid "Preview _size:" +msgstr "Önizleme _boyutu:" + +#: ../plug-ins/common/file-psp.c:599 ../plug-ins/common/file-psp.c:623 +msgid "Paint Shop Pro image" +msgstr "Paint Shop Pro görüntüsü" + +#: ../plug-ins/common/file-psp.c:640 +msgid "Save as PSP" +msgstr "PSP olarak kaydet" + +#. file save type +#: ../plug-ins/common/file-psp.c:657 +msgid "Data Compression" +msgstr "Veri Sıkıştırma" + +#: ../plug-ins/common/file-psp.c:662 +msgid "RLE" +msgstr "RLE" + +#: ../plug-ins/common/file-psp.c:663 +msgid "LZ77" +msgstr "LZ77" + +#: ../plug-ins/common/file-raw.c:182 ../plug-ins/common/file-raw.c:197 +msgid "Raw image data" +msgstr "Ham görüntü verisi" + +#: ../plug-ins/common/file-raw.c:982 +msgid "Load Image from Raw Data" +msgstr "Görüntüyü Ham Veriden Yükle" + +#: ../plug-ins/common/file-raw.c:1015 +msgid "Image" +msgstr "Görüntü" + +#: ../plug-ins/common/file-raw.c:1026 +msgid "RGB Alpha" +msgstr "RGB Görünür" + +#: ../plug-ins/common/file-raw.c:1027 +msgid "Planar RGB" +msgstr "Düzlemsel RGB" + +#: ../plug-ins/common/file-raw.c:1028 +msgid "Indexed" +msgstr "Sıralanmış" + +#: ../plug-ins/common/file-raw.c:1029 +msgid "Indexed Alpha" +msgstr "Sıralanmış Görünür" + +#: ../plug-ins/common/file-raw.c:1034 +msgid "Image _Type:" +msgstr "Görüntü _Türü:" + +#: ../plug-ins/common/file-raw.c:1084 +msgid "Palette" +msgstr "Palet" + +#: ../plug-ins/common/file-raw.c:1094 ../plug-ins/common/file-raw.c:1193 +msgid "R, G, B (normal)" +msgstr "R, G, B (normal)" + +#: ../plug-ins/common/file-raw.c:1095 ../plug-ins/common/file-raw.c:1195 +msgid "B, G, R, X (BMP style)" +msgstr "B, G, R, X (BMP biçemi)" + +#: ../plug-ins/common/file-raw.c:1100 +msgid "_Palette Type:" +msgstr "_Palet Türü:" + +#: ../plug-ins/common/file-raw.c:1111 +msgid "Off_set:" +msgstr "Göreli _konum:" + +#: ../plug-ins/common/file-raw.c:1123 +msgid "Select Palette File" +msgstr "Palet Dosyasını Seç" + +#: ../plug-ins/common/file-raw.c:1129 +msgid "Pal_ette File:" +msgstr "Pal_et Dosyası:" + +#: ../plug-ins/common/file-raw.c:1157 +msgid "Raw Image Save" +msgstr "Ham Görüntü Kaydı" + +#: ../plug-ins/common/file-raw.c:1179 +msgid "RGB Save Type" +msgstr "RGB Kayıt Türü" + +#: ../plug-ins/common/file-raw.c:1183 +msgid "Standard (R,G,B)" +msgstr "Standart (R,G,B)" + +#: ../plug-ins/common/file-raw.c:1184 +msgid "Planar (RRR,GGG,BBB)" +msgstr "Düzlemsel (RRR,GGG,BBB)" + +#: ../plug-ins/common/file-raw.c:1189 +msgid "Indexed Palette Type" +msgstr "Sıralanmış Palet Türü" + +#: ../plug-ins/common/file-sunras.c:217 ../plug-ins/common/file-sunras.c:237 +msgid "SUN Rasterfile image" +msgstr "SUN ızgaradosya görüntüsü" + +#: ../plug-ins/common/file-sunras.c:402 +#, c-format +msgid "Could not open '%s' as SUN-raster-file" +msgstr "'%s', SUN-raster-file olarak açılamadı" + +#: ../plug-ins/common/file-sunras.c:412 +msgid "The type of this SUN-rasterfile is not supported" +msgstr "Bu SUN-rasterfile türü desteklenmiyor" + +#: ../plug-ins/common/file-sunras.c:441 +#, c-format +msgid "Could not read color entries from '%s'" +msgstr "'%s'den renk girişleri okunamadı" + +#: ../plug-ins/common/file-sunras.c:449 +msgid "Type of colormap not supported" +msgstr "Renk haritası türü destenlenmiyor" + +#: ../plug-ins/common/file-sunras.c:456 ../plug-ins/common/file-xbm.c:826 +#: ../plug-ins/common/file-xwd.c:489 +#, c-format +msgid "" +"'%s':\n" +"No image width specified" +msgstr "" +"'%s':\n" +"Görüntü genişliği belirtilmedi" + +#: ../plug-ins/common/file-sunras.c:464 ../plug-ins/common/file-xbm.c:833 +#: ../plug-ins/common/file-xwd.c:498 +#, c-format +msgid "" +"'%s':\n" +"Image width is larger than GIMP can handle" +msgstr "" +"'%s':\n" +"Görüntü genişliği GIMP'in kaldırabileceğinden daha büyük" + +#: ../plug-ins/common/file-sunras.c:472 ../plug-ins/common/file-xbm.c:840 +#: ../plug-ins/common/file-xwd.c:506 +#, c-format +msgid "" +"'%s':\n" +"No image height specified" +msgstr "" +"'%s':\n" +"Görüntü yüksekliği belirtilmedi" + +#: ../plug-ins/common/file-sunras.c:480 ../plug-ins/common/file-xbm.c:847 +#: ../plug-ins/common/file-xwd.c:514 +#, c-format +msgid "" +"'%s':\n" +"Image height is larger than GIMP can handle" +msgstr "" +"'%s':\n" +"Görüntü yüksekliği GIMP'in kaldırabileceğinden daha büyük" + +#: ../plug-ins/common/file-sunras.c:518 +msgid "This image depth is not supported" +msgstr "Bu görüntü derinliği desteklenmiyor" + +#: ../plug-ins/common/file-sunras.c:542 +#, c-format +msgid "SUNRAS save cannot handle images with alpha channels" +msgstr "SUNRAS kayıt biçimi görünür kanalını içeren resimleri saklayamaz." + +#: ../plug-ins/common/file-sunras.c:553 +msgid "Can't operate on unknown image types" +msgstr "Bilinmeyen görüntü türleri işlenemiyor" + +#: ../plug-ins/common/file-sunras.c:1082 ../plug-ins/common/file-sunras.c:1173 +#: ../plug-ins/common/file-sunras.c:1254 ../plug-ins/common/file-sunras.c:1349 +#: ../plug-ins/common/file-xwd.c:1348 ../plug-ins/common/file-xwd.c:1449 +#: ../plug-ins/common/file-xwd.c:1607 ../plug-ins/common/file-xwd.c:1807 +#: ../plug-ins/common/file-xwd.c:2064 ../plug-ins/file-fits/fits.c:697 +msgid "EOF encountered on reading" +msgstr "EOF okuma karşılaştırıldı" + +#: ../plug-ins/common/file-sunras.c:1629 +msgid "Save as SUNRAS" +msgstr "SUNRAS olarak kaydet" + +#. file save type +#: ../plug-ins/common/file-sunras.c:1646 +msgid "Data Formatting" +msgstr "Veri Biçimledirme" + +#: ../plug-ins/common/file-sunras.c:1650 +msgid "RunLength Encoded" +msgstr "Yürütme Uzunluğu Kodlandı" + +#: ../plug-ins/common/file-svg.c:140 +msgid "SVG image" +msgstr "Svg görüntüsü" + +#: ../plug-ins/common/file-svg.c:335 ../plug-ins/common/file-svg.c:733 +msgid "Unknown reason" +msgstr "Bilinmeyen sebep" + +#: ../plug-ins/common/file-svg.c:341 +msgid "Rendering SVG" +msgstr "SVG Taranıyor" + +#: ../plug-ins/common/file-svg.c:353 +msgid "Rendered SVG" +msgstr "SVG Tarandı" + +#: ../plug-ins/common/file-svg.c:567 ../plug-ins/common/file-wmf.c:358 +#, c-format +msgid "%d × %d" +msgstr "%d × %d" + +#: ../plug-ins/common/file-svg.c:575 +msgid "" +"SVG file does not\n" +"specify a size!" +msgstr "" +"SVG dosyası\n" +"boyut belirtmiyor!" + +#. Scalable Vector Graphics is SVG, should perhaps not be translated +#: ../plug-ins/common/file-svg.c:742 +msgid "Render Scalable Vector Graphics" +msgstr "Ölçeklenmiş Vektör Grafiği Tara" + +#. Width and Height +#: ../plug-ins/common/file-svg.c:808 ../plug-ins/common/file-wmf.c:571 +#: ../plug-ins/common/grid.c:724 +msgid "Width:" +msgstr "Genişlik:" + +#: ../plug-ins/common/file-svg.c:814 ../plug-ins/common/file-wmf.c:577 +msgid "Height:" +msgstr "Yükseklik:" + +#: ../plug-ins/common/file-svg.c:888 ../plug-ins/common/file-wmf.c:651 +msgid "_X ratio:" +msgstr "_X oran:" + +#: ../plug-ins/common/file-svg.c:910 ../plug-ins/common/file-wmf.c:673 +msgid "_Y ratio:" +msgstr "_Y oran:" + +#: ../plug-ins/common/file-svg.c:924 ../plug-ins/common/file-wmf.c:687 +msgid "Constrain aspect ratio" +msgstr "En-boy oranını sabitle" + +#: ../plug-ins/common/file-svg.c:935 ../plug-ins/common/file-wmf.c:698 +#: ../plug-ins/print/print-page-layout.c:273 +#, c-format +msgid "pixels/%a" +msgstr "benek/%a" + +#. Path Import +#: ../plug-ins/common/file-svg.c:955 +msgid "Import _paths" +msgstr "_Yolları içe aktar" + +#: ../plug-ins/common/file-svg.c:961 +msgid "" +"Import path elements of the SVG so they can be used with the GIMP path tool" +msgstr "" +"SVG elementlerinin yolunu içe aktar böylece bu elementler GIMP yol aracı ile " +"kullanılabilecek" + +#: ../plug-ins/common/file-svg.c:974 +msgid "Merge imported paths" +msgstr "İçe aktarılmış yolları _birleştir" + +#: ../plug-ins/common/file-tga.c:245 ../plug-ins/common/file-tga.c:264 +msgid "TarGA image" +msgstr "TarGA görüntüsü" + +#: ../plug-ins/common/file-tga.c:455 +#, c-format +msgid "Cannot read footer from '%s'" +msgstr "'%s'den sayfa altlığı okunamadı" + +#: ../plug-ins/common/file-tga.c:473 +#, c-format +msgid "Cannot read extension from '%s'" +msgstr "'%s'den uzantı okunamadı" + +#: ../plug-ins/common/file-tga.c:485 +#, c-format +msgid "Cannot read header from '%s'" +msgstr "'%s'den sayfa başlığı okunamadı" + +#: ../plug-ins/common/file-tga.c:1370 +msgid "Save as TGA" +msgstr "TGA olarak kaydet" + +#. rle +#: ../plug-ins/common/file-tga.c:1393 +msgid "_RLE compression" +msgstr "_RLE sıkıştırması" + +#: ../plug-ins/common/file-tga.c:1407 +msgid "Or_igin:" +msgstr "K_öken:" + +#: ../plug-ins/common/file-tga.c:1411 +msgid "Bottom left" +msgstr "Alt sol" + +#: ../plug-ins/common/file-tga.c:1412 +msgid "Top left" +msgstr "Üst sol" + +#: ../plug-ins/common/file-tiff-load.c:240 +#: ../plug-ins/common/file-tiff-save.c:182 +#: ../plug-ins/common/file-tiff-save.c:199 +msgid "TIFF image" +msgstr "TIFF görüntüsü" + +#: ../plug-ins/common/file-tiff-load.c:310 +#, c-format +msgid "TIFF '%s' does not contain any directories" +msgstr "TIFF '%s' her hangi bir dizin içermiyor" + +#: ../plug-ins/common/file-tiff-load.c:478 +msgid "Import from TIFF" +msgstr "TIFF'den al" + +#: ../plug-ins/common/file-tiff-load.c:780 +#, c-format +msgid "%s-%d-of-%d-pages" +msgstr "%s sayfanın %d %d si" + +#: ../plug-ins/common/file-tiff-load.c:1015 +msgid "TIFF Channel" +msgstr "TIFF Kanalı" + +#: ../plug-ins/common/file-tiff-load.c:1024 +#: ../plug-ins/file-psd/psd-load.c:334 +msgid "" +"Warning:\n" +"The image you are loading has 16 bits per channel. GIMP can only handle 8 " +"bit, so it will be converted for you. Information will be lost because of " +"this conversion." +msgstr "" +"Uyarı:\n" +"Yüklediğiniz görüntü kanal başına 16 bit'e sahip. GIMP sadece 8 bit " +"kullanabilir; bu yüzden, dönüştürülmesi gerekiyor. Bilgi, bu dönüşümden " +"dolayı kaybolacak." + +#: ../plug-ins/common/file-tiff-save.c:887 +msgid "" +"The TIFF format only supports comments in\n" +"7bit ASCII encoding. No comment is saved." +msgstr "" +"TIFF biçimi, yalnızca 7bit ASCII kodlaması\n" +"yorumlarını destekler. Hiç bir komut kaydedilmedi." + +#: ../plug-ins/common/file-tiff-save.c:1061 +msgid "Save as TIFF" +msgstr "TIFF olarak kaydet" + +#. compression +#: ../plug-ins/common/file-tiff-save.c:1083 +msgid "Compression" +msgstr "Sıkıştırma" + +#: ../plug-ins/common/file-tiff-save.c:1087 +msgid "_None" +msgstr "_Hiçbiri" + +#: ../plug-ins/common/file-tiff-save.c:1088 +msgid "_LZW" +msgstr "_LZW" + +#: ../plug-ins/common/file-tiff-save.c:1089 +msgid "_Pack Bits" +msgstr "_Paket Bitleri" + +#: ../plug-ins/common/file-tiff-save.c:1090 +msgid "_Deflate" +msgstr "_Söndür" + +#: ../plug-ins/common/file-tiff-save.c:1091 +msgid "_JPEG" +msgstr "_JPEG" + +#: ../plug-ins/common/file-tiff-save.c:1092 +msgid "CCITT Group _3 fax" +msgstr "CCITT Group _3 fax" + +#: ../plug-ins/common/file-tiff-save.c:1093 +msgid "CCITT Group _4 fax" +msgstr "CCITT Grup _4 faks" + +#: ../plug-ins/common/file-tiff-save.c:1115 +msgid "Save _color values from transparent pixels" +msgstr "Saydam beneklerden _renk değerlerini kaydedin" + +#: ../plug-ins/common/file-tiff-save.c:1131 ../plug-ins/common/file-xbm.c:1246 +msgid "Comment:" +msgstr "Yorum:" + +#: ../plug-ins/common/file-wmf.c:129 +msgid "Microsoft WMF file" +msgstr "Microsoft WMF dosyası" + +#: ../plug-ins/common/file-wmf.c:352 +msgid "" +"WMF file does not\n" +"specify a size!" +msgstr "" +"WMF dosyası\n" +"boyut belirtmiyor!" + +#: ../plug-ins/common/file-wmf.c:500 +msgid "Render Windows Metafile" +msgstr "Windows Meta Dosyasını Tarama" + +#: ../plug-ins/common/file-wmf.c:963 +#, c-format +msgid "Could not open '%s' for reading" +msgstr "'%s' dosyası okumak için açılamadı" + +#: ../plug-ins/common/file-wmf.c:1003 +msgid "Rendered WMF" +msgstr "WMF Tarandı" + +#: ../plug-ins/common/file-xbm.c:176 ../plug-ins/common/file-xbm.c:194 +msgid "X BitMap image" +msgstr "X Bit Eşlem görüntüsü" + +#: ../plug-ins/common/file-xbm.c:819 +#, c-format +msgid "" +"'%s':\n" +"Could not read header (ftell == %ld)" +msgstr "" +"'%s':\n" +"Başlık okunamadı (ftell == %ld)" + +#: ../plug-ins/common/file-xbm.c:854 +#, c-format +msgid "" +"'%s':\n" +"No image data type specified" +msgstr "" +"'%s':\n" +"Görüntü veri türü tanımlanmadı" + +#. The image is not black-and-white. +#: ../plug-ins/common/file-xbm.c:997 +msgid "" +"The image which you are trying to save as an XBM contains more than two " +"colors.\n" +"\n" +"Please convert it to a black and white (1-bit) indexed image and try again." +msgstr "" +"Bir XBM olarak kaydetmeye çalıştığınız görüntü iki renkten daha fazlasını " +"içeriyor.\n" +"\n" +"Lütfen siyah ve beyaz (1-bit) sıralı görüntüye dönüştürün ve yeniden deneyin." + +#: ../plug-ins/common/file-xbm.c:1008 +msgid "" +"You cannot save a cursor mask for an image\n" +"which has no alpha channel." +msgstr "" +"Hiçbir görünür kanalı olmayan bir görüntü için\n" +"imleç maskeyi kaydedemezsiniz." + +#: ../plug-ins/common/file-xbm.c:1185 +msgid "Save as XBM" +msgstr "XBM olarak kaydet" + +#. parameter settings +#: ../plug-ins/common/file-xbm.c:1202 +msgid "XBM Options" +msgstr "XBM Seçenekleri" + +#. X10 format +#: ../plug-ins/common/file-xbm.c:1212 +msgid "_X10 format bitmap" +msgstr "_X10 biçimli bit eşlem" + +#: ../plug-ins/common/file-xbm.c:1232 +msgid "_Identifier prefix:" +msgstr "_Tanıtıcı önek:" + +#. hotspot toggle +#: ../plug-ins/common/file-xbm.c:1254 +msgid "_Write hot spot values" +msgstr "Etkin nokta değerlerini _yaz" + +#: ../plug-ins/common/file-xbm.c:1276 +msgid "Hot spot _X:" +msgstr "Etkin nokta _X:" + +#: ../plug-ins/common/file-xbm.c:1286 +msgid "Hot spot _Y:" +msgstr "Etkin nokta _Y:" + +#. mask file +#: ../plug-ins/common/file-xbm.c:1293 +msgid "Mask File" +msgstr "Maske Dosyası" + +#: ../plug-ins/common/file-xbm.c:1303 +msgid "W_rite extra mask file" +msgstr "Fazla maske dosyasını yaz" + +#: ../plug-ins/common/file-xbm.c:1316 +msgid "_Mask file extension:" +msgstr "_Maske dosyası eklentisi:" + +#: ../plug-ins/common/file-xpm.c:174 ../plug-ins/common/file-xpm.c:199 +msgid "X PixMap image" +msgstr "X Pix Eşlem resmi" + +#: ../plug-ins/common/file-xpm.c:363 ../plug-ins/common/file-xpm.c:773 +#, c-format +msgid "Error opening file '%s'" +msgstr "'%s' dosya açılırken hata" + +#: ../plug-ins/common/file-xpm.c:369 ../plug-ins/common/file-xpm.c:779 +msgid "XPM file invalid" +msgstr "Geçersiz XPM dosyası" + +#: ../plug-ins/common/file-xpm.c:805 +msgid "Save as XPM" +msgstr "XPM olarak kaydet" + +#: ../plug-ins/common/file-xpm.c:829 +msgid "_Alpha threshold:" +msgstr "_Görünür eşiği:" + +#: ../plug-ins/common/file-xwd.c:278 ../plug-ins/common/file-xwd.c:298 +msgid "X window dump" +msgstr "X pencere yığını" + +#: ../plug-ins/common/file-xwd.c:442 +#, c-format +msgid "Could not read XWD header from '%s'" +msgstr "'%s' dosyasından XWD başlığı okunamadı" + +#: ../plug-ins/common/file-xwd.c:480 +msgid "Can't read color entries" +msgstr "Renk girdileri okunamıyor" + +#: ../plug-ins/common/file-xwd.c:570 +#, c-format +msgid "" +"XWD-file %s has format %d, depth %d and bits per pixel %d. Currently this is " +"not supported." +msgstr "" +"XWD-dosyası %s %d biçimi, %d derinlik ve benek başına düşen bit ise %d dir. " +"Şu anda bu biçim desteklenmiyor." + +#: ../plug-ins/common/file-xwd.c:593 +msgid "Cannot save images with alpha channels." +msgstr "Görüntüler görünür kanalıyla kaydedilemiyor." + +#: ../plug-ins/common/file-xwd.c:2195 +msgid "Error during writing indexed/gray image" +msgstr "Sıralanmış/gri görüntü yazma sırasında hata" + +#: ../plug-ins/common/file-xwd.c:2293 +msgid "Error during writing rgb image" +msgstr "rgb görüntü yazılırken hata" + +#: ../plug-ins/common/film.c:217 +msgid "Combine several images on a film strip" +msgstr "Bir film şeridi üzerinde değişik görüntüleri birleştirin" + +#: ../plug-ins/common/film.c:222 +msgid "_Filmstrip..." +msgstr "_Film şeridi..." + +#: ../plug-ins/common/film.c:307 +msgid "Composing images" +msgstr "Görüntüleri oluşturma" + +#: ../plug-ins/common/film.c:425 ../plug-ins/common/guillotine.c:216 +#: ../plug-ins/help-browser/dialog.c:1120 +msgid "Untitled" +msgstr "İsimsiz" + +#: ../plug-ins/common/film.c:879 +msgid "Available images:" +msgstr "Varolan görüntüler:" + +#: ../plug-ins/common/film.c:880 +msgid "On film:" +msgstr "Film üzerinde:" + +#. Film height/colour +#: ../plug-ins/common/film.c:976 ../plug-ins/common/film.c:1248 +msgid "Filmstrip" +msgstr "Film şeridi" + +#. Keep maximum image height +#: ../plug-ins/common/film.c:985 +msgid "_Fit height to images" +msgstr "Görüntülere _Uygun yükseklik" + +#. Film color +#: ../plug-ins/common/film.c:1021 +msgid "Select Film Color" +msgstr "Film Rengini Seç" + +#: ../plug-ins/common/film.c:1026 ../plug-ins/common/film.c:1076 +#: ../plug-ins/common/nova.c:353 +msgid "Co_lor:" +msgstr "_Renk:" + +#. Film numbering: Startindex/Font/colour +#: ../plug-ins/common/film.c:1035 +msgid "Numbering" +msgstr "Numaralandırma" + +#: ../plug-ins/common/film.c:1053 +msgid "Start _index:" +msgstr "_Dizini başlat:" + +#: ../plug-ins/common/film.c:1066 +msgid "_Font:" +msgstr "Yazıtipi:" + +#. Numbering color +#: ../plug-ins/common/film.c:1071 +msgid "Select Number Color" +msgstr "Renk Numarasını Seç" + +#: ../plug-ins/common/film.c:1086 +msgid "At _bottom" +msgstr "_Altta" + +#: ../plug-ins/common/film.c:1087 +msgid "At _top" +msgstr "_Üstte" + +#. ** The right frame keeps the image selection ** +#: ../plug-ins/common/film.c:1100 +msgid "Image Selection" +msgstr "Görüntü Seçimi" + +#: ../plug-ins/common/film.c:1128 +msgid "All Values are Fractions of the Strip Height" +msgstr "Tüm Değerler, Şerit Yüksekliğinin Parçalarıdır" + +#: ../plug-ins/common/film.c:1131 +msgid "Ad_vanced" +msgstr "_Gelişmiş" + +#: ../plug-ins/common/film.c:1150 +msgid "Image _height:" +msgstr "Görüntü _yüksekliği:" + +#: ../plug-ins/common/film.c:1161 +msgid "Image spac_ing:" +msgstr "Görüntü boşl_uğu:" + +#: ../plug-ins/common/film.c:1172 +msgid "_Hole offset:" +msgstr "_Boşluk konumu:" + +#: ../plug-ins/common/film.c:1183 +msgid "Ho_le width:" +msgstr "De_lik genişliği:" + +#: ../plug-ins/common/film.c:1194 +msgid "Hol_e height:" +msgstr "Deli_k yüksekliği:" + +#: ../plug-ins/common/film.c:1205 +msgid "Hole sp_acing:" +msgstr "Delik ar_alığı:" + +#: ../plug-ins/common/film.c:1216 +msgid "_Number height:" +msgstr "_Sayı yüksekliği" + +#. These values are translated for the GUI but also used internally +#. to figure out which button the user pushed, etc. +#. Not my design, please don't blame me -- njl +#: ../plug-ins/common/filter-pack.c:220 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:953 +msgid "Red:" +msgstr "Kırmızı:" + +#: ../plug-ins/common/filter-pack.c:221 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:963 +msgid "Green:" +msgstr "Yeşil:" + +#: ../plug-ins/common/filter-pack.c:222 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:973 +msgid "Blue:" +msgstr "Mavi:" + +#: ../plug-ins/common/filter-pack.c:223 +msgid "Cyan:" +msgstr "Turkuaz:" + +#: ../plug-ins/common/filter-pack.c:224 +msgid "Yellow:" +msgstr "Sarı:" + +#: ../plug-ins/common/filter-pack.c:225 +msgid "Magenta:" +msgstr "Macenta:" + +#: ../plug-ins/common/filter-pack.c:227 +msgid "Darker:" +msgstr "Daha koyu:" + +#: ../plug-ins/common/filter-pack.c:228 +msgid "Lighter:" +msgstr "Daha açık:" + +#: ../plug-ins/common/filter-pack.c:230 +msgid "More Sat:" +msgstr "Daha çok Doygunluk:" + +#: ../plug-ins/common/filter-pack.c:231 +msgid "Less Sat:" +msgstr "Daha az Doygunluk:" + +#: ../plug-ins/common/filter-pack.c:233 ../plug-ins/common/filter-pack.c:532 +msgid "Current:" +msgstr "Şimdiki:" + +#: ../plug-ins/common/filter-pack.c:317 +msgid "Interactively modify the image colors" +msgstr "Etkileşimli olarak görüntü renklerini düzenle" + +#: ../plug-ins/common/filter-pack.c:322 +msgid "_Filter Pack..." +msgstr "_Süzgeç Paketi..." + +#: ../plug-ins/common/filter-pack.c:372 +msgid "FP can only be used on RGB images." +msgstr "FP sadece RGB görüntülerinde kullanılabilir." + +#: ../plug-ins/common/filter-pack.c:382 +msgid "FP can only be run interactively." +msgstr "FP sadece etkileşimli olarak çalışabilir." + +#: ../plug-ins/common/filter-pack.c:400 +msgid "Applying filter pack" +msgstr "Süzgeç paketi uygulanıyor" + +#: ../plug-ins/common/filter-pack.c:524 +msgid "Original:" +msgstr "Özgün:" + +#: ../plug-ins/common/filter-pack.c:576 +msgid "Hue Variations" +msgstr "Renk Tonu Değişimleri" + +#: ../plug-ins/common/filter-pack.c:631 +msgid "Roughness" +msgstr "Pürüzlülük" + +#: ../plug-ins/common/filter-pack.c:674 ../plug-ins/common/filter-pack.c:1317 +msgid "Affected Range" +msgstr "Etkilenen Alan" + +#: ../plug-ins/common/filter-pack.c:678 +msgid "Sha_dows" +msgstr "_Gölgeler" + +#: ../plug-ins/common/filter-pack.c:679 +msgid "_Midtones" +msgstr "_Ortatonlar" + +#: ../plug-ins/common/filter-pack.c:680 +msgid "H_ighlights" +msgstr "V_urgulamalar" + +#: ../plug-ins/common/filter-pack.c:694 +msgid "Windows" +msgstr "Pencereler" + +#: ../plug-ins/common/filter-pack.c:704 ../plug-ins/common/van-gogh-lic.c:672 +msgid "_Saturation" +msgstr "_Doygunluk" + +#: ../plug-ins/common/filter-pack.c:712 +msgid "A_dvanced" +msgstr "_Gelişmiş" + +#: ../plug-ins/common/filter-pack.c:732 +msgid "Value Variations" +msgstr "Değer Değişimleri" + +#: ../plug-ins/common/filter-pack.c:777 +msgid "Saturation Variations" +msgstr "Doygunluk Değişimleri" + +#: ../plug-ins/common/filter-pack.c:830 +msgid "Select Pixels By" +msgstr "Şuna göre seç Benek'leri" + +#: ../plug-ins/common/filter-pack.c:835 +msgid "H_ue" +msgstr "Renk _Özü" + +#: ../plug-ins/common/filter-pack.c:836 +msgid "Satu_ration" +msgstr "D_oygunluk" + +#: ../plug-ins/common/filter-pack.c:837 +msgid "V_alue" +msgstr "D_eğer" + +#: ../plug-ins/common/filter-pack.c:863 +msgid "Show" +msgstr "Göster" + +#: ../plug-ins/common/filter-pack.c:868 +msgid "_Entire image" +msgstr "_Bütün görüntü" + +#: ../plug-ins/common/filter-pack.c:869 +msgid "Se_lection only" +msgstr "Sadece se_çim" + +#: ../plug-ins/common/filter-pack.c:870 +msgid "Selec_tion in context" +msgstr "İçerikten _seçim" + +#: ../plug-ins/common/filter-pack.c:1201 +msgid "Filter Pack Simulation" +msgstr "Süzgeç Paketi Benzetimi" + +#: ../plug-ins/common/filter-pack.c:1290 +msgid "Shadows:" +msgstr "Gölgeler:" + +#: ../plug-ins/common/filter-pack.c:1291 +msgid "Midtones:" +msgstr "Ortatonlar:" + +#: ../plug-ins/common/filter-pack.c:1292 +msgid "Highlights:" +msgstr "Vurgulamalar" + +#: ../plug-ins/common/filter-pack.c:1305 +msgid "Advanced Filter Pack Options" +msgstr "Gelişmiş Süzgeç Paketi Ayarları" + +#. ****************** MISC OPTIONS ************************** +#: ../plug-ins/common/filter-pack.c:1417 +msgid "Preview Size" +msgstr "Önizleme Boyutu" + +#: ../plug-ins/common/fractal-trace.c:116 +msgid "Transform image with the Mandelbrot Fractal" +msgstr "Mandelbrot Kesiri ile resimi dönüştür" + +#: ../plug-ins/common/fractal-trace.c:121 +msgid "_Fractal Trace..." +msgstr "_Kesir İzi..." + +#: ../plug-ins/common/fractal-trace.c:460 +#: ../plug-ins/common/fractal-trace.c:691 +msgid "Fractal Trace" +msgstr "Kesir İzi" + +#. Settings +#: ../plug-ins/common/fractal-trace.c:731 +msgid "Outside Type" +msgstr "Dış Tip" + +#: ../plug-ins/common/fractal-trace.c:742 +msgid "_White" +msgstr "_Beyaz" + +#: ../plug-ins/common/fractal-trace.c:749 +msgid "Mandelbrot Parameters" +msgstr "Mandelbrot Parametreleri" + +#: ../plug-ins/common/fractal-trace.c:760 +msgid "X_1:" +msgstr "X_1:" + +#: ../plug-ins/common/fractal-trace.c:769 +msgid "X_2:" +msgstr "X_2:" + +#: ../plug-ins/common/fractal-trace.c:778 +msgid "Y_1:" +msgstr "Y_1:" + +#: ../plug-ins/common/fractal-trace.c:787 +msgid "Y_2:" +msgstr "Y_2:" + +#: ../plug-ins/common/gee-zoom.c:121 ../plug-ins/common/gee.c:99 +msgid "A big hello from the GIMP team!" +msgstr "GIMP takımından kocaman bir merhaba!" + +#: ../plug-ins/common/gee-zoom.c:126 ../plug-ins/common/gee-zoom.c:186 +msgid "Gee Zoom" +msgstr "Gee Yakınlaştırması" + +#: ../plug-ins/common/gee-zoom.c:192 ../plug-ins/common/gee.c:166 +msgid "Thank You for Choosing GIMP" +msgstr "GIMP'i Seçtiğiniz için Teşekkürler" + +#: ../plug-ins/common/gee-zoom.c:200 +#, c-format +msgid "An obsolete creation by %s" +msgstr "%s ile eski oluşturma" + +#: ../plug-ins/common/gee.c:104 ../plug-ins/common/gee.c:160 +msgid "Gee Slime" +msgstr "Gee Çamurlaması" + +#: ../plug-ins/common/gee.c:173 +#, c-format +msgid "A less obsolete creation by %s" +msgstr "%s ile daha az eskimiş oluşturma" + +#: ../plug-ins/common/gradient-map.c:84 +msgid "Recolor the image using colors from the active gradient" +msgstr "Etkin değişimdeki renkleri kullanarak görüntüyü yeniden renklendir" + +#: ../plug-ins/common/gradient-map.c:97 +msgid "_Gradient Map" +msgstr "_Renk Geçişi Eşlemi" + +#: ../plug-ins/common/gradient-map.c:106 +msgid "Recolor the image using colors from the active palette" +msgstr "Etkin paletteki renkleri kullanarak görüntüyü yeniden renklendir" + +#: ../plug-ins/common/gradient-map.c:119 +msgid "_Palette Map" +msgstr "_Palet Haritası" + +#: ../plug-ins/common/gradient-map.c:162 +msgid "Gradient Map" +msgstr "Renk Geçişi Eşlemi" + +#: ../plug-ins/common/gradient-map.c:167 +msgid "Palette Map" +msgstr "Palet Haritası" + +#: ../plug-ins/common/grid.c:142 +msgid "Draw a grid on the image" +msgstr "Görüntü üzerine bir ızgara çiz" + +#: ../plug-ins/common/grid.c:148 +msgid "_Grid..." +msgstr "_Izgara..." + +#: ../plug-ins/common/grid.c:241 +msgid "Drawing grid" +msgstr "Izgara çiz" + +#: ../plug-ins/common/grid.c:635 ../plug-ins/gfig/gfig-dialog.c:1355 +#: ../plug-ins/imagemap/imap_menu.c:209 +msgid "Grid" +msgstr "Kılavuz" + +#. attach labels +#: ../plug-ins/common/grid.c:717 +msgid "Horizontal" +msgstr "Ufki" + +#: ../plug-ins/common/grid.c:719 +msgid "Vertical" +msgstr "Dikey" + +#: ../plug-ins/common/grid.c:721 +msgid "Intersection" +msgstr "Kesişim" + +#. attach labels +#: ../plug-ins/common/grid.c:857 +msgid "Offset:" +msgstr "Göreli Konum:" + +#. attach color selectors +#: ../plug-ins/common/grid.c:896 +msgid "Horizontal Color" +msgstr "Yatay Renk" + +#: ../plug-ins/common/grid.c:914 +msgid "Vertical Color" +msgstr "Dikey Renk" + +#: ../plug-ins/common/grid.c:932 +msgid "Intersection Color" +msgstr "Kesişim Rengi" + +#: ../plug-ins/common/guillotine.c:75 +msgid "Slice the image into subimages using guides" +msgstr "Kılavuzları kullanarak altgörüntü içinde görüntü dilimleme" + +#: ../plug-ins/common/guillotine.c:82 +msgid "_Guillotine" +msgstr "_Giyotin" + +#: ../plug-ins/common/guillotine.c:120 +msgid "Guillotine" +msgstr "Giyotin" + +#: ../plug-ins/common/hot.c:207 +msgid "Find and fix pixels that may be unsafely bright" +msgstr "Çok fazla parlak benekleri bul ve düzelt" + +#: ../plug-ins/common/hot.c:217 +msgid "_Hot..." +msgstr "_Sıcak..." + +#: ../plug-ins/common/hot.c:387 ../plug-ins/common/hot.c:586 +msgid "Hot" +msgstr "Sıcak" + +#: ../plug-ins/common/hot.c:623 +msgid "Create _new layer" +msgstr "_Yeni katman oluştur" + +#: ../plug-ins/common/hot.c:632 +msgid "Action" +msgstr "Eylem" + +#: ../plug-ins/common/hot.c:636 +msgid "Reduce _Luminance" +msgstr "_Parlaklığı Azalt" + +#: ../plug-ins/common/hot.c:637 +msgid "Reduce _Saturation" +msgstr "_Doygunluğu Azalt" + +#: ../plug-ins/common/hot.c:638 ../plug-ins/common/waves.c:282 +msgid "_Blacken" +msgstr "_Karartma" + +#: ../plug-ins/common/illusion.c:91 +msgid "Superimpose many altered copies of the image" +msgstr "Görüntünün bir çok değiştirilmiş kopyasının üzerine koy" + +#: ../plug-ins/common/illusion.c:96 +msgid "_Illusion..." +msgstr "_Hayal..." + +#: ../plug-ins/common/illusion.c:168 ../plug-ins/common/illusion.c:350 +msgid "Illusion" +msgstr "Hayal" + +#: ../plug-ins/common/illusion.c:388 +msgid "_Divisions:" +msgstr "_Bölümler:" + +#: ../plug-ins/common/illusion.c:398 +msgid "Mode _1" +msgstr "Kip _1" + +#: ../plug-ins/common/illusion.c:413 +msgid "Mode _2" +msgstr "Kip_2" + +#: ../plug-ins/common/iwarp.c:262 +msgid "Use mouse control to warp image areas" +msgstr "Görüntü alanlarını eğmek için fare yönetimini kullan" + +#: ../plug-ins/common/iwarp.c:267 +msgid "_IWarp..." +msgstr "_Boz..." + +#: ../plug-ins/common/iwarp.c:697 +msgid "Warping" +msgstr "Eğme" + +#: ../plug-ins/common/iwarp.c:802 +#, c-format +msgid "Warping Frame %d" +msgstr "Çerçeve Eğiliyor %d" + +#: ../plug-ins/common/iwarp.c:814 +msgid "Ping pong" +msgstr "Ping pong" + +#: ../plug-ins/common/iwarp.c:1020 +msgid "A_nimate" +msgstr "_Canlandır" + +#: ../plug-ins/common/iwarp.c:1039 +msgid "Number of _frames:" +msgstr "_Çerçeve Sayısı:" + +#: ../plug-ins/common/iwarp.c:1048 +msgid "R_everse" +msgstr "_Tersine Çevir" + +#: ../plug-ins/common/iwarp.c:1057 +msgid "_Ping pong" +msgstr "_Ping pong" + +#: ../plug-ins/common/iwarp.c:1070 +msgid "_Animate" +msgstr "_Canlandır" + +#: ../plug-ins/common/iwarp.c:1091 +msgid "Deform Mode" +msgstr "Bozma Kipi" + +#: ../plug-ins/common/iwarp.c:1104 +msgid "_Move" +msgstr "_Taşı" + +#: ../plug-ins/common/iwarp.c:1105 +msgid "_Grow" +msgstr "_Genişle" + +#: ../plug-ins/common/iwarp.c:1106 +msgid "S_wirl CCW" +msgstr "_Döndür CCW" + +#: ../plug-ins/common/iwarp.c:1107 +msgid "Remo_ve" +msgstr "K_aldır" + +#: ../plug-ins/common/iwarp.c:1108 +msgid "S_hrink" +msgstr "_Daralt" + +#: ../plug-ins/common/iwarp.c:1109 +msgid "Sw_irl CW" +msgstr "Döndü_r CW" + +#: ../plug-ins/common/iwarp.c:1138 +msgid "_Deform radius:" +msgstr "Yarıçapı _Boz:" + +#: ../plug-ins/common/iwarp.c:1148 +msgid "D_eform amount:" +msgstr "Miktarı B_oz:" + +#: ../plug-ins/common/iwarp.c:1157 +msgid "_Bilinear" +msgstr "_Çift Doğrusal" + +#: ../plug-ins/common/iwarp.c:1171 +msgid "Adaptive s_upersample" +msgstr "Uyumlu ü_stünörnekleme" + +#: ../plug-ins/common/iwarp.c:1191 +msgid "Ma_x depth:" +msgstr "Ma_ks derinlik:" + +#: ../plug-ins/common/iwarp.c:1201 +msgid "Thresho_ld:" +msgstr "Eşi_k" + +#: ../plug-ins/common/iwarp.c:1214 ../plug-ins/common/sinus.c:771 +#: ../plug-ins/gradient-flare/gradient-flare.c:2867 +msgid "_Settings" +msgstr "_Ayarlar" + +#: ../plug-ins/common/iwarp.c:1263 +msgid "IWarp" +msgstr "Boz" + +#: ../plug-ins/common/iwarp.c:1299 +msgid "" +"Click and drag in the preview to define the distortions to apply to the " +"image." +msgstr "" +"Önizlemede resimde uygulayarak bozulmayı tanımlamak için tıkla ve sürükle." + +#: ../plug-ins/common/jigsaw.c:356 +msgid "Add a jigsaw-puzzle pattern to the image" +msgstr "Resime yapboz deseni ekle" + +#: ../plug-ins/common/jigsaw.c:361 +msgid "_Jigsaw..." +msgstr "_Oyma Testeresi" + +#: ../plug-ins/common/jigsaw.c:414 +msgid "Assembling jigsaw" +msgstr "Oyma testeresi birleştiriliyor" + +#: ../plug-ins/common/jigsaw.c:2416 +msgid "Jigsaw" +msgstr "Oyma Testeresi" + +#: ../plug-ins/common/jigsaw.c:2445 +msgid "Number of Tiles" +msgstr "Döşemelerin Sayısı" + +#: ../plug-ins/common/jigsaw.c:2460 +msgid "Number of pieces going across" +msgstr "Karşıya geçen parçaların sayısı" + +#: ../plug-ins/common/jigsaw.c:2477 +msgid "Number of pieces going down" +msgstr "Batan parçaların sayısı" + +#: ../plug-ins/common/jigsaw.c:2491 +msgid "Bevel Edges" +msgstr "Konik Kenarlar" + +#: ../plug-ins/common/jigsaw.c:2501 +msgid "_Bevel width:" +msgstr "_Konik Genişliği" + +#: ../plug-ins/common/jigsaw.c:2505 +msgid "Degree of slope of each piece's edge" +msgstr "Her bir parça kenarının eğim derecesi" + +#: ../plug-ins/common/jigsaw.c:2518 +msgid "H_ighlight:" +msgstr "V_urgulama" + +#: ../plug-ins/common/jigsaw.c:2522 +msgid "The amount of highlighting on the edges of each piece" +msgstr "Her parçanın kenarlarında ki vurgulama miktarı" + +#. frame for primitive radio buttons +#: ../plug-ins/common/jigsaw.c:2539 +msgid "Jigsaw Style" +msgstr "Oyma Testeresi Tarzı" + +#: ../plug-ins/common/jigsaw.c:2543 +msgid "_Square" +msgstr "_Kare" + +#: ../plug-ins/common/jigsaw.c:2544 +msgid "C_urved" +msgstr "Eğik" + +#: ../plug-ins/common/jigsaw.c:2548 +msgid "Each piece has straight sides" +msgstr "Her parçanın düzgün köşesi var" + +#: ../plug-ins/common/jigsaw.c:2549 +msgid "Each piece has curved sides" +msgstr "Her parça eğri kenarlara sahip" + +#: ../plug-ins/common/lcms.c:218 +msgid "Set a color profile on the image" +msgstr "Görüntüde renk profili ayarla" + +#: ../plug-ins/common/lcms.c:225 +msgid "_Assign Color Profile..." +msgstr "Renk Profili _Ata" + +#: ../plug-ins/common/lcms.c:241 +msgid "Assign default RGB Profile" +msgstr "Öntanımlı RGB profili ata" + +#: ../plug-ins/common/lcms.c:248 +msgid "Apply a color profile on the image" +msgstr "Renk profilini görüntüye uygula" + +#: ../plug-ins/common/lcms.c:258 +msgid "_Convert to Color Profile..." +msgstr "Renk Profiline Çevir" + +#: ../plug-ins/common/lcms.c:276 +msgid "Convert to default RGB Profile" +msgstr "Öntanımlı RGB Profiline dönüştür" + +#: ../plug-ins/common/lcms.c:290 +msgid "Image Color Profile Information" +msgstr "Görüntü Renk Profil Bilgisi" + +#: ../plug-ins/common/lcms.c:304 +msgid "Color Profile Information" +msgstr "Renk Profil Bilgisi" + +#: ../plug-ins/common/lcms.c:572 +#, c-format +msgid "Color profile '%s' is not for RGB color space." +msgstr "Renk profili '%s' RGB renk alanı için değil." + +#: ../plug-ins/common/lcms.c:679 +msgid "Default RGB working space" +msgstr "Öntanımlı RGB çalışma alanı" + +#: ../plug-ins/common/lcms.c:775 +msgid "" +"Data attached as 'icc-profile' does not appear to be an ICC color profile" +msgstr "'icc-profili' olarak eklenmiş veri ICC renk profili değil" + +#: ../plug-ins/common/lcms.c:825 +#, c-format +msgid "'%s' does not appear to be an ICC color profile" +msgstr "'%s' bir ICC renk profili olarak görünmüyor" + +#. ICC color profile conversion +#: ../plug-ins/common/lcms.c:885 +#, c-format +msgid "Converting from '%s' to '%s'" +msgstr "`%s' >`%s' dönüştürülüyor" + +#: ../plug-ins/common/lcms.c:1129 +#, c-format +msgid "Could not load ICC profile from '%s'" +msgstr "'%s'den ICC profili yüklenemedi" + +#: ../plug-ins/common/lcms.c:1151 +#, c-format +msgid "The image '%s' has an embedded color profile:" +msgstr "'%s' resmi gömülü bir renk profiline sahip:" + +#: ../plug-ins/common/lcms.c:1195 +#, c-format +msgid "Convert the image to the RGB working space (%s)?" +msgstr "Görüntüyü RGB çalışma alanı '%s' dönüşsün mü?" + +#: ../plug-ins/common/lcms.c:1226 +msgid "Convert to RGB working space?" +msgstr "RGB çalışma alanına dönüşsün mü?" + +#: ../plug-ins/common/lcms.c:1231 +msgid "_Keep" +msgstr "_Tut" + +#: ../plug-ins/common/lcms.c:1236 +msgid "_Convert" +msgstr "Dönüş_tür" + +#: ../plug-ins/common/lcms.c:1263 ../plug-ins/file-jpeg/jpeg-exif.c:377 +msgid "_Don't ask me again" +msgstr "_Bana yeniden sorma." + +#: ../plug-ins/common/lcms.c:1327 +msgid "Select destination profile" +msgstr "Varış profili seçin" + +#: ../plug-ins/common/lcms.c:1354 +msgid "All files (*.*)" +msgstr "Tüm dosyalar (*.*)" + +#: ../plug-ins/common/lcms.c:1359 +msgid "ICC color profile (*.icc, *.icm)" +msgstr "ICC renk profili (*.icc, *.icm)" + +#: ../plug-ins/common/lcms.c:1402 +#, c-format +msgid "RGB workspace (%s)" +msgstr "RGB çalışma alanı (%s)" + +#: ../plug-ins/common/lcms.c:1452 +msgid "Convert to ICC Color Profile" +msgstr "ICC Renk Profiline Dönüştür" + +#: ../plug-ins/common/lcms.c:1453 +msgid "Assign ICC Color Profile" +msgstr "ICC Renk Profili Ata" + +#: ../plug-ins/common/lcms.c:1461 +msgid "_Assign" +msgstr "_Ata" + +#: ../plug-ins/common/lcms.c:1478 +msgid "Current Color Profile" +msgstr "Varolan Renk Profili" + +#: ../plug-ins/common/lcms.c:1493 +msgid "Convert to" +msgstr "Şuna dönüştür:" + +#: ../plug-ins/common/lcms.c:1493 +msgid "Assign" +msgstr "Ata" + +#: ../plug-ins/common/lcms.c:1517 +msgid "_Rendering Intent:" +msgstr "Sonuç _Taranıyor:" + +#: ../plug-ins/common/lcms.c:1533 +msgid "_Black Point Compensation" +msgstr "_Siyah Nokta Telafisi" + +#: ../plug-ins/common/lcms.c:1575 +msgid "Destination profile is not for RGB color space." +msgstr "Varış profili RGB renk alanı için değil" + +#: ../plug-ins/common/lens-apply.c:108 +msgid "Simulate an elliptical lens over the image" +msgstr "Resim üzerindeki oval merceklere benzetim yap" + +#: ../plug-ins/common/lens-apply.c:114 +msgid "Apply _Lens..." +msgstr "_Merceği Uygula..." + +#: ../plug-ins/common/lens-apply.c:181 +msgid "Applying lens" +msgstr "Mercek uygulanıyor" + +#: ../plug-ins/common/lens-apply.c:393 +msgid "Lens Effect" +msgstr "Mercek Etkisi" + +#: ../plug-ins/common/lens-apply.c:427 +msgid "_Keep original surroundings" +msgstr "Özgün ortamı _sakla" + +#: ../plug-ins/common/lens-apply.c:442 +msgid "_Set surroundings to index 0" +msgstr "Ortam göstergesini 0 _ayarla" + +#: ../plug-ins/common/lens-apply.c:443 +msgid "_Set surroundings to background color" +msgstr "Ortamı artalan rengine _ayarla" + +#: ../plug-ins/common/lens-apply.c:458 +msgid "_Make surroundings transparent" +msgstr "Ortamı saydam _Yap" + +#: ../plug-ins/common/lens-apply.c:475 +msgid "_Lens refraction index:" +msgstr "_Mercek sapma göstergesi:" + +#: ../plug-ins/common/lens-distortion.c:115 +msgid "Corrects lens distortion" +msgstr "Mercek bozulmasını düzelt" + +#: ../plug-ins/common/lens-distortion.c:120 +msgid "Lens Distortion..." +msgstr "Mercek Bozulması..." + +#: ../plug-ins/common/lens-distortion.c:383 +msgid "Lens distortion" +msgstr "Mercek bozulması" + +#: ../plug-ins/common/lens-distortion.c:483 +msgid "Lens Distortion" +msgstr "Mercek Bozulması" + +#: ../plug-ins/common/lens-distortion.c:521 +msgid "_Main:" +msgstr "_Ana:" + +#: ../plug-ins/common/lens-distortion.c:535 +msgid "_Edge:" +msgstr "_Kenar:" + +#: ../plug-ins/common/lens-distortion.c:549 ../plug-ins/flame/flame.c:1237 +msgid "_Zoom:" +msgstr "_Yakınlaştır:" + +#: ../plug-ins/common/lens-distortion.c:563 +msgid "_Brighten:" +msgstr "_Parlak:" + +#: ../plug-ins/common/lens-distortion.c:577 +msgid "_X shift:" +msgstr "_X kayması:" + +#: ../plug-ins/common/lens-distortion.c:591 +msgid "_Y shift:" +msgstr "_Y kayması" + +#: ../plug-ins/common/lens-flare.c:188 +msgid "Add a lens flare effect" +msgstr "Mercek parlaması etkisi ekle" + +#: ../plug-ins/common/lens-flare.c:195 +msgid "Lens _Flare..." +msgstr "Mercek Parlaması..." + +#: ../plug-ins/common/lens-flare.c:270 +msgid "Render lens flare" +msgstr "Mercek parlamayı tara" + +#: ../plug-ins/common/lens-flare.c:306 +msgid "Lens Flare" +msgstr "Mercek Parlaması" + +#: ../plug-ins/common/lens-flare.c:753 +msgid "Center of Flare Effect" +msgstr "Parlama Etkisi Merkezi" + +#: ../plug-ins/common/lens-flare.c:793 ../plug-ins/common/nova.c:484 +msgid "Show _position" +msgstr "_Konumu göster" + +#: ../plug-ins/common/mail.c:188 +msgid "Send the image by email" +msgstr "Görüntüyü eposta ile gönder" + +#: ../plug-ins/common/mail.c:194 +msgid "Send by E_mail..." +msgstr "_Posta ile Gönder..." + +#: ../plug-ins/common/mail.c:407 +msgid "Send by Email" +msgstr "E-posta ile Gönder" + +#: ../plug-ins/common/mail.c:412 +msgid "_Send" +msgstr "_Gönder" + +#: ../plug-ins/common/mail.c:444 +msgid "_Filename:" +msgstr "_Dosya adı:" + +#: ../plug-ins/common/mail.c:456 +msgid "_To:" +msgstr "_Kime:" + +#: ../plug-ins/common/mail.c:470 +msgid "_From:" +msgstr "Kim_den:" + +#: ../plug-ins/common/mail.c:482 +msgid "S_ubject:" +msgstr "K_onu:" + +#: ../plug-ins/common/mail.c:591 +msgid "some sort of error with the file extension or lack thereof" +msgstr "dosya uzantısı ya da eksiklik nedeniyle bazı hatalar" + +#: ../plug-ins/common/mail.c:725 +#, c-format +msgid "Could not start sendmail (%s)" +msgstr "(%s) posta gönderme başlatılamadı" + +#: ../plug-ins/common/max-rgb.c:90 +msgid "Reduce image to pure red, green, and blue" +msgstr "Görüntüyü saf kırmızı, yeşil, ve maviye azaltın" + +#: ../plug-ins/common/max-rgb.c:95 +msgid "Maxim_um RGB..." +msgstr "Maksim_um RGB..." + +#: ../plug-ins/common/max-rgb.c:134 ../plug-ins/common/noise-hsv.c:158 +msgid "Can only operate on RGB drawables." +msgstr "Sadece RGB çizimlerinde işlem görür" + +#: ../plug-ins/common/max-rgb.c:234 +msgid "Max RGB" +msgstr "Maks RGB" + +#: ../plug-ins/common/max-rgb.c:259 +msgid "Maximum RGB Value" +msgstr "Azami RGB Değeri" + +#: ../plug-ins/common/max-rgb.c:292 +msgid "_Hold the maximal channels" +msgstr "Azami kanalları _Tut" + +#: ../plug-ins/common/max-rgb.c:295 +msgid "Ho_ld the minimal channels" +msgstr "Asgari kanalları t_ut" + +#: ../plug-ins/common/mosaic.c:359 +msgid "Convert the image into irregular tiles" +msgstr "Resmi düzensiz zemine çevir" + +#: ../plug-ins/common/mosaic.c:364 +msgid "_Mosaic..." +msgstr "_Mozaik..." + +#. progress bar for gradient finding +#: ../plug-ins/common/mosaic.c:502 +msgid "Finding edges" +msgstr "Kenarları bulma" + +#. Progress bar for rendering tiles +#: ../plug-ins/common/mosaic.c:556 +msgid "Rendering tiles" +msgstr "Zemin taranıyor" + +#: ../plug-ins/common/mosaic.c:589 +msgid "Mosaic" +msgstr "Mozaik" + +#: ../plug-ins/common/mosaic.c:629 +msgid "Squares" +msgstr "Kareler" + +#: ../plug-ins/common/mosaic.c:630 +msgid "Hexagons" +msgstr "Altıgenler" + +#: ../plug-ins/common/mosaic.c:631 +msgid "Octagons & squares" +msgstr "Sekizgenler & kareler" + +#: ../plug-ins/common/mosaic.c:632 +msgid "Triangles" +msgstr "Üçgenler" + +#: ../plug-ins/common/mosaic.c:640 +msgid "_Tiling primitives:" +msgstr "_Döşeme basitliği:" + +#: ../plug-ins/common/mosaic.c:648 +msgid "Tile _size:" +msgstr "Döşeme _boyutu::" + +#: ../plug-ins/common/mosaic.c:660 ../plug-ins/common/tile-glass.c:303 +msgid "Tile _height:" +msgstr "Döşeme _yüksekliği:" + +#: ../plug-ins/common/mosaic.c:673 +msgid "Til_e spacing:" +msgstr "Döşem_e boşluğu:" + +#: ../plug-ins/common/mosaic.c:685 +msgid "Tile _neatness:" +msgstr "Döşeme _düzeni:" + +#: ../plug-ins/common/mosaic.c:698 +msgid "Light _direction:" +msgstr "Işık _yönü:" + +#: ../plug-ins/common/mosaic.c:710 +msgid "Color _variation:" +msgstr "Renk _Değişimi" + +#: ../plug-ins/common/mosaic.c:739 +msgid "Co_lor averaging" +msgstr "Re_nk ortalaması" + +#: ../plug-ins/common/mosaic.c:752 +msgid "Allo_w tile splitting" +msgstr "Döşeme bölünmesine İ_zin ver" + +#: ../plug-ins/common/mosaic.c:765 +msgid "_Pitted surfaces" +msgstr "_Çukurlaşmış yüzeyler" + +#: ../plug-ins/common/mosaic.c:778 +msgid "_FG/BG lighting" +msgstr "Artalan/Önalan ışıması" + +#: ../plug-ins/common/newsprint.c:127 +msgid "Round" +msgstr "Yuvarlama" + +#: ../plug-ins/common/newsprint.c:136 +msgid "Line" +msgstr "Çizgi" + +#: ../plug-ins/common/newsprint.c:145 ../plug-ins/flame/flame.c:760 +msgid "Diamond" +msgstr "Elmas" + +#: ../plug-ins/common/newsprint.c:153 +msgid "PS Square (Euclidean Dot)" +msgstr "PS karesi (Euclidean Nokta)" + +#: ../plug-ins/common/newsprint.c:162 +msgid "PS Diamond" +msgstr "PS Karo" + +#: ../plug-ins/common/newsprint.c:332 +msgid "_Grey" +msgstr "_Gri" + +#: ../plug-ins/common/newsprint.c:345 +msgid "R_ed" +msgstr "Kırmı_zı" + +#: ../plug-ins/common/newsprint.c:374 +msgid "C_yan" +msgstr "Tu_rkuaz" + +#: ../plug-ins/common/newsprint.c:382 +msgid "Magen_ta" +msgstr "Kırmızım_sı Mor" + +#: ../plug-ins/common/newsprint.c:390 +msgid "_Yellow" +msgstr "_Sarı" + +#: ../plug-ins/common/newsprint.c:411 +msgid "Luminance" +msgstr "Işıklılık" + +#: ../plug-ins/common/newsprint.c:517 +msgid "Halftone the image to give newspaper-like effect" +msgstr "Resmi klişeleştir gazete etkisi vermek için" + +#: ../plug-ins/common/newsprint.c:526 +msgid "Newsprin_t..." +msgstr "Gazete _Kağıdı" + +#: ../plug-ins/common/newsprint.c:627 ../plug-ins/common/newsprint.c:1188 +msgid "Newsprint" +msgstr "Gazete kağıdı" + +#: ../plug-ins/common/newsprint.c:1031 +msgid "_Spot function:" +msgstr "_Nokta işlevi" + +#. resolution settings +#: ../plug-ins/common/newsprint.c:1240 +msgid "Resolution" +msgstr "Çözünürlük" + +#: ../plug-ins/common/newsprint.c:1259 +msgid "_Input SPI:" +msgstr "_Girdi SPI:" + +#: ../plug-ins/common/newsprint.c:1273 +msgid "O_utput LPI:" +msgstr "Ç_ıktı LPI:" + +#: ../plug-ins/common/newsprint.c:1286 +msgid "C_ell size:" +msgstr "H_ücre boyutu:" + +#. screen settings +#: ../plug-ins/common/newsprint.c:1299 +#: ../plug-ins/gradient-flare/gradient-flare.c:554 +msgid "Screen" +msgstr "Ekran" + +#: ../plug-ins/common/newsprint.c:1318 +msgid "B_lack pullout (%):" +msgstr "_Siyah çekilme (%):" + +#: ../plug-ins/common/newsprint.c:1340 +msgid "Separate to:" +msgstr "Boşluk bırak:" + +#: ../plug-ins/common/newsprint.c:1344 +msgid "_RGB" +msgstr "_RGB" + +#: ../plug-ins/common/newsprint.c:1361 +msgid "C_MYK" +msgstr "C_MYK" + +#: ../plug-ins/common/newsprint.c:1378 +msgid "I_ntensity" +msgstr "_Yoğunluk" + +#: ../plug-ins/common/newsprint.c:1403 +msgid "_Lock channels" +msgstr "Kanalları _kilitle" + +#: ../plug-ins/common/newsprint.c:1416 +msgid "_Factory Defaults" +msgstr "_Fabrika Ayarları" + +#. anti-alias control +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1256 +msgid "Antialiasing" +msgstr "Yumuşatma" + +#: ../plug-ins/common/newsprint.c:1450 +msgid "O_versample:" +msgstr "_Aşırı örnekleme:" + +#: ../plug-ins/common/nl-filter.c:118 +msgid "Nonlinear swiss army knife filter" +msgstr "Doğrusal olmayan İsviçre Çakısı süzgeci" + +#: ../plug-ins/common/nl-filter.c:124 +msgid "_NL Filter..." +msgstr "_NL Süzgeci..." + +#: ../plug-ins/common/nl-filter.c:952 ../plug-ins/common/nl-filter.c:1015 +msgid "NL Filter" +msgstr "NL Süzgeci" + +#: ../plug-ins/common/nl-filter.c:1044 +msgid "Filter" +msgstr "Süzgeç" + +#: ../plug-ins/common/nl-filter.c:1048 +msgid "_Alpha trimmed mean" +msgstr "_Görünür düzenlenmiş ortalama" + +#: ../plug-ins/common/nl-filter.c:1050 +msgid "Op_timal estimation" +msgstr "En _iyi tahmin" + +#: ../plug-ins/common/nl-filter.c:1052 +msgid "_Edge enhancement" +msgstr "_Kenar pekiştirme" + +#: ../plug-ins/common/nl-filter.c:1077 +msgid "A_lpha:" +msgstr "Gö_rünür:" + +#: ../plug-ins/common/noise-hsv.c:103 +msgid "Randomize hue/saturation/value independently" +msgstr "Renk tonu/doygunluk/değerler arasında bağımsız ve rasgele seç" + +#: ../plug-ins/common/noise-hsv.c:108 +msgid "HSV Noise..." +msgstr "HSV Gürültüsü..." + +#: ../plug-ins/common/noise-hsv.c:215 ../plug-ins/common/noise-hsv.c:361 +msgid "HSV Noise" +msgstr "HSV Gürültüsü" + +#: ../plug-ins/common/noise-hsv.c:397 +msgid "_Holdness:" +msgstr "_Kavranmama:" + +#: ../plug-ins/common/noise-hsv.c:409 +msgid "H_ue:" +msgstr "_Renk özü" + +#: ../plug-ins/common/noise-randomize.c:102 +msgid "Random Hurl" +msgstr "Rastgele Savurma" + +#: ../plug-ins/common/noise-randomize.c:103 +msgid "Random Pick" +msgstr "Rastgele Karıştırma" + +#: ../plug-ins/common/noise-randomize.c:104 +msgid "Random Slur" +msgstr "Rasgele Leke" + +#: ../plug-ins/common/noise-randomize.c:202 +msgid "Completely randomize a fraction of pixels" +msgstr "Benek kesirini tamamen rasgele dağıt" + +#: ../plug-ins/common/noise-randomize.c:204 +msgid "Randomly interchange some pixels with neighbors" +msgstr "Benekleri yanındakiler ile rasgele değiştir" + +#: ../plug-ins/common/noise-randomize.c:206 +msgid "Randomly slide some pixels downward (similar to melting)" +msgstr "Bazı benekleri rasgele aşağı kaydır (erimeye benzer)" + +#: ../plug-ins/common/noise-randomize.c:233 +msgid "_Hurl..." +msgstr "Savurma..." + +#: ../plug-ins/common/noise-randomize.c:245 +msgid "_Pick..." +msgstr "_Seç..." + +#: ../plug-ins/common/noise-randomize.c:257 +msgid "_Slur..." +msgstr "_Leke..." + +#: ../plug-ins/common/noise-randomize.c:771 +#: ../plug-ins/common/noise-solid.c:602 +msgid "_Random seed:" +msgstr "_Rasgele besleme" + +#: ../plug-ins/common/noise-randomize.c:780 +msgid "R_andomization (%):" +msgstr "R_assallık (%):" + +#: ../plug-ins/common/noise-randomize.c:783 +msgid "Percentage of pixels to be filtered" +msgstr "Süzülecek beneklerin yüzdesi" + +#: ../plug-ins/common/noise-randomize.c:795 +msgid "R_epeat:" +msgstr "_Tekrarlama:" + +#: ../plug-ins/common/noise-randomize.c:798 +msgid "Number of times to apply filter" +msgstr "Süzgecin uygulanacağı sayı" + +#: ../plug-ins/common/noise-rgb.c:144 +msgid "Distort colors by random amounts" +msgstr "Rasgele miktarda renkleri boz" + +#: ../plug-ins/common/noise-rgb.c:154 +msgid "_RGB Noise..." +msgstr "_RGB Gürültüsü..." + +#: ../plug-ins/common/noise-rgb.c:282 +msgid "Adding noise" +msgstr "Gürültü ekleme" + +#: ../plug-ins/common/noise-rgb.c:448 +msgid "RGB Noise" +msgstr "RGB Gürültüsü" + +#: ../plug-ins/common/noise-rgb.c:481 +msgid "Co_rrelated noise" +msgstr "İl_işkilendirilmiş gürültü" + +#: ../plug-ins/common/noise-rgb.c:496 +msgid "_Independent RGB" +msgstr "_Bağımsız RGB" + +#: ../plug-ins/common/noise-rgb.c:520 ../plug-ins/common/noise-rgb.c:524 +msgid "_Gray:" +msgstr "_Gri:" + +#: ../plug-ins/common/noise-rgb.c:550 +#, c-format +msgid "Channel #%d:" +msgstr "Kanal #%d:" + +#: ../plug-ins/common/noise-solid.c:176 +msgid "Create a random cloud-like texture" +msgstr "Rastgel bulut-benzeri bir doku oluştur" + +#: ../plug-ins/common/noise-solid.c:182 +msgid "_Solid Noise..." +msgstr "_Düz Gürültü..." + +#. Dialog initialization +#: ../plug-ins/common/noise-solid.c:315 ../plug-ins/common/noise-solid.c:563 +msgid "Solid Noise" +msgstr "Düz Gürültü" + +#: ../plug-ins/common/noise-solid.c:615 +msgid "_Detail:" +msgstr "_Ayrıntı:" + +#. Turbulent +#: ../plug-ins/common/noise-solid.c:625 +msgid "T_urbulent" +msgstr "_Çalkantı" + +#. Tilable +#: ../plug-ins/common/noise-solid.c:639 +msgid "T_ilable" +msgstr "_Döşenebilir" + +#: ../plug-ins/common/noise-solid.c:654 +msgid "_X size:" +msgstr "_X boyutu:" + +#: ../plug-ins/common/noise-solid.c:667 +msgid "_Y size:" +msgstr "_Y boyutu:" + +#: ../plug-ins/common/noise-spread.c:89 +msgid "Move pixels around randomly" +msgstr "Rasgele bir şekilde benekleri etrafında hareket ettir" + +#: ../plug-ins/common/noise-spread.c:98 +msgid "Sp_read..." +msgstr "Ya_y..." + +#: ../plug-ins/common/noise-spread.c:181 +msgid "Spreading" +msgstr "Yayılma" + +#: ../plug-ins/common/noise-spread.c:346 +msgid "Spread" +msgstr "Etrafa Yay" + +#: ../plug-ins/common/noise-spread.c:371 +msgid "Spread Amount" +msgstr "Yayılma Miktarı" + +#: ../plug-ins/common/nova.c:168 +msgid "Add a starburst to the image" +msgstr "Resmi yıldız yağmuru ekle" + +#: ../plug-ins/common/nova.c:177 +msgid "Super_nova..." +msgstr "Süper_nova..." + +#: ../plug-ins/common/nova.c:261 +msgid "Rendering supernova" +msgstr "Süpernova taranıyor" + +#: ../plug-ins/common/nova.c:304 +msgid "Supernova" +msgstr "Süpernova" + +#: ../plug-ins/common/nova.c:349 +msgid "Supernova Color Picker" +msgstr "Süpernova Renk Seçici" + +#: ../plug-ins/common/nova.c:378 +msgid "_Spokes:" +msgstr "_Tekerlek:" + +#: ../plug-ins/common/nova.c:393 +msgid "R_andom hue:" +msgstr "Ra_sgele renk tonu:" + +#: ../plug-ins/common/nova.c:446 +msgid "Center of Nova" +msgstr "Nova Merkezi" + +#: ../plug-ins/common/oilify.c:119 ../plug-ins/common/oilify.c:134 +msgid "Smear colors to simulate an oil painting" +msgstr "Yağlı boya benzetmesi yapmak için renkleri sıva" + +#: ../plug-ins/common/oilify.c:125 +msgid "Oili_fy..." +msgstr "Yağ_lama..." + +#: ../plug-ins/common/oilify.c:247 +msgid "Oil painting" +msgstr "Yağlı boya" + +#: ../plug-ins/common/oilify.c:777 +msgid "Oilify" +msgstr "Yağlama" + +#: ../plug-ins/common/oilify.c:815 +msgid "_Mask size:" +msgstr "_Maske boyutu:" + +#. +#. * Mask-size map check button +#. +#: ../plug-ins/common/oilify.c:830 +msgid "Use m_ask-size map:" +msgstr "M_aske-boyutu eşlemi kullan:" + +#: ../plug-ins/common/oilify.c:867 ../plug-ins/common/sinus.c:922 +msgid "_Exponent:" +msgstr "_Üst:" + +#. +#. * Exponent map check button +#. +#: ../plug-ins/common/oilify.c:882 +msgid "Use e_xponent map:" +msgstr "M_at eşlem kullan:" + +#. +#. * Intensity algorithm check button +#. +#: ../plug-ins/common/oilify.c:918 +msgid "_Use intensity algorithm" +msgstr "Yoğunluk algoritmasını _kullan" + +#: ../plug-ins/common/photocopy.c:153 +msgid "Simulate color distortion produced by a copy machine" +msgstr "Fotokopi makinesinden çıkmış gibi siyah-beyaz yap" + +#: ../plug-ins/common/photocopy.c:158 +msgid "_Photocopy..." +msgstr "_Fotokopi..." + +#: ../plug-ins/common/photocopy.c:839 +msgid "Photocopy" +msgstr "Fotokopi" + +#: ../plug-ins/common/photocopy.c:890 ../plug-ins/common/sharpen.c:511 +#: ../plug-ins/common/softglow.c:697 +msgid "_Sharpness:" +msgstr "_Keskinlik:" + +#: ../plug-ins/common/photocopy.c:904 +msgid "Percent _black:" +msgstr "_Siyah yüzdesi:" + +#: ../plug-ins/common/photocopy.c:918 +msgid "Percent _white:" +msgstr "_Beyaz yüzdesi:" + +#: ../plug-ins/common/pixelize.c:164 +msgid "Simplify image into an array of solid-colored squares" +msgstr "Resmi düz_renkli kareler dizisine basitleştir" + +#: ../plug-ins/common/pixelize.c:171 +msgid "_Pixelize..." +msgstr "_Benekleştir..." + +#: ../plug-ins/common/pixelize.c:273 +msgid "Pixelizing" +msgstr "Benekleştiriliyor" + +#: ../plug-ins/common/pixelize.c:316 +msgid "Pixelize" +msgstr "Benekleştir" + +#: ../plug-ins/common/pixelize.c:352 +msgid "Pixel _width:" +msgstr "Benek _genişliği:" + +#: ../plug-ins/common/pixelize.c:357 +msgid "Pixel _height:" +msgstr "Benek _yüksekliği:" + +#: ../plug-ins/common/plasma.c:176 +msgid "Create a random plasma texture" +msgstr "Rastgele plasma dokusu oluştur" + +#: ../plug-ins/common/plasma.c:181 +msgid "_Plasma..." +msgstr "_Plasma..." + +#: ../plug-ins/common/plasma.c:263 ../plug-ins/common/plasma.c:300 +msgid "Plasma" +msgstr "Plazma" + +#: ../plug-ins/common/plasma.c:337 +msgid "Random _seed:" +msgstr "Rasgele _besleme:" + +#: ../plug-ins/common/plasma.c:348 +msgid "T_urbulence:" +msgstr "Türbülans:" + +#: ../plug-ins/common/plugin-browser.c:134 +msgid "Display information about plug-ins" +msgstr "Eklentiler hakkındaki bilgiyi göster" + +#: ../plug-ins/common/plugin-browser.c:144 +msgid "_Plug-In Browser" +msgstr "Eklenti Tarayıcısı" + +#: ../plug-ins/common/plugin-browser.c:372 +msgid "Searching by name" +msgstr "Ada göre aranıyor" + +#: ../plug-ins/common/plugin-browser.c:386 +#, c-format +msgid "%d plug-in" +msgid_plural "%d plug-ins" +msgstr[0] "%d eklenti" + +#: ../plug-ins/common/plugin-browser.c:395 +msgid "No matches for your query" +msgstr "Sorgunuza uygun eşleşme yok" + +#: ../plug-ins/common/plugin-browser.c:398 +#, c-format +msgid "%d plug-in matches your query" +msgid_plural "%d plug-ins match your query" +msgstr[0] "Sorgunuzla eşleşen %d eklenti" + +#: ../plug-ins/common/plugin-browser.c:529 +msgid "No matches" +msgstr "Eşleşme yok" + +#: ../plug-ins/common/plugin-browser.c:554 +msgid "Plug-In Browser" +msgstr "Eklenti Tarayıcı" + +#: ../plug-ins/common/plugin-browser.c:597 +msgid "Name" +msgstr "İsim" + +#: ../plug-ins/common/plugin-browser.c:605 +#: ../plug-ins/common/plugin-browser.c:668 +msgid "Menu Path" +msgstr "Menü Yolu" + +#: ../plug-ins/common/plugin-browser.c:613 +#: ../plug-ins/common/plugin-browser.c:677 +msgid "Image Types" +msgstr "Görüntü Türleri" + +#: ../plug-ins/common/plugin-browser.c:623 +#: ../plug-ins/common/plugin-browser.c:686 +msgid "Installation Date" +msgstr "Kurulum Tarihi" + +#: ../plug-ins/common/plugin-browser.c:647 +msgid "List View" +msgstr "Liste Görünümü" + +#: ../plug-ins/common/plugin-browser.c:709 +msgid "Tree View" +msgstr "Ağaç Görünümü" + +#: ../plug-ins/common/polar-coords.c:156 +msgid "Convert image to or from polar coordinates" +msgstr "Görüntüyü kutupsal derinliğe ya da kutupsal derinlikten dönüştür" + +#: ../plug-ins/common/polar-coords.c:163 +msgid "P_olar Coordinates..." +msgstr "K_utupsal Derinlik..." + +#: ../plug-ins/common/polar-coords.c:360 +msgid "Polar coordinates" +msgstr "Kutupsal derinlik" + +#: ../plug-ins/common/polar-coords.c:592 +msgid "Polar Coordinates" +msgstr "Kutupsal Derinlik" + +#: ../plug-ins/common/polar-coords.c:631 +msgid "Circle _depth in percent:" +msgstr "Yüzde olarak daire _derinliği:" + +#: ../plug-ins/common/polar-coords.c:643 +msgid "Offset _angle:" +msgstr "Konum_açısı:" + +#: ../plug-ins/common/polar-coords.c:658 +msgid "_Map backwards" +msgstr "_Eşlem geçmişi" + +#: ../plug-ins/common/polar-coords.c:664 +msgid "" +"If checked the mapping will begin at the right side, as opposed to beginning " +"at the left." +msgstr "Eğer eşleme işaretliyse sağ tarafta başlayacak, değilse sol tarafta." + +#: ../plug-ins/common/polar-coords.c:675 +msgid "Map from _top" +msgstr "Ü_stten eşlem" + +#: ../plug-ins/common/polar-coords.c:681 +msgid "" +"If unchecked the mapping will put the bottom row in the middle and the top " +"row on the outside. If checked it will be the opposite." +msgstr "" +"Eğer işaretli değilse eşleme alt satırı dışarıda orta ve üst satıra koyacak. " +"İşaretli ise tam tersi." + +#: ../plug-ins/common/polar-coords.c:693 +msgid "To _polar" +msgstr "_Kutupsala" + +#: ../plug-ins/common/polar-coords.c:699 +msgid "" +"If unchecked the image will be circularly mapped onto a rectangle. If " +"checked the image will be mapped onto a circle." +msgstr "" +"Eğer işaretli değilse resim bir dikdörtgen içerisine dairesel olarak " +"eşlenecek. Eğer işaretli ise resim daire içerisine eşlenecek." + +#: ../plug-ins/common/procedure-browser.c:83 +msgid "List available procedures in the PDB" +msgstr "PDB'deki kullanılabilir yönergeleri listele" + +#: ../plug-ins/common/procedure-browser.c:88 +msgid "Procedure _Browser" +msgstr "Yönerge _Tarayıcı" + +#: ../plug-ins/common/procedure-browser.c:126 +msgid "Procedure Browser" +msgstr "Yönerge Tarayıcı" + +#: ../plug-ins/common/qbist.c:402 +msgid "Generate a huge variety of abstract patterns" +msgstr "Soyut desenlerin geniş bir çeşitliliğini oluştur" + +#: ../plug-ins/common/qbist.c:410 +msgid "_Qbist..." +msgstr "_Qbist..." + +#: ../plug-ins/common/qbist.c:511 +msgid "Qbist" +msgstr "Qbist" + +#: ../plug-ins/common/qbist.c:707 +msgid "Load QBE File" +msgstr "QBE Dosyasını Yükle" + +#: ../plug-ins/common/qbist.c:749 +msgid "Save as QBE File" +msgstr "QBE dosyası olarak kaydet" + +#: ../plug-ins/common/qbist.c:803 +msgid "G-Qbist" +msgstr "G-Qbist" + +#: ../plug-ins/common/red-eye-removal.c:105 +msgid "Remove the red eye effect caused by camera flashes" +msgstr "Kamera ışığından kaynaklanan gözlerdeki kırmızılığı kaldır" + +#: ../plug-ins/common/red-eye-removal.c:116 +msgid "_Red Eye Removal..." +msgstr "_Kırmızı Göz Kaldırma..." + +#: ../plug-ins/common/red-eye-removal.c:142 +msgid "Red Eye Removal" +msgstr "Kırmızı Göz Kaldırma" + +#: ../plug-ins/common/red-eye-removal.c:170 +#: ../plug-ins/common/unsharp-mask.c:706 ../plug-ins/common/wind.c:1008 +#: ../plug-ins/imagemap/imap_preferences.c:441 +#: ../plug-ins/map-object/map-object-ui.c:585 +msgid "_Threshold:" +msgstr "_Eşik:" + +#: ../plug-ins/common/red-eye-removal.c:176 +msgid "Threshold for the red eye color to remove." +msgstr "Kırmızı göz rengini kaldırma eşiği." + +#: ../plug-ins/common/red-eye-removal.c:181 +msgid "Manually selecting the eyes may improve the results." +msgstr "" +"Gözleri elle belirtmek daha iyi bir netice alınmasına imkan sağlayacaktır." + +#: ../plug-ins/common/red-eye-removal.c:301 +msgid "Removing red eye" +msgstr "Kırmızı göz kaldırılıyor" + +#: ../plug-ins/common/ripple.c:129 +msgid "Displace pixels in a ripple pattern" +msgstr "Dalga deseninde beneklerin yerini değiştirir" + +#: ../plug-ins/common/ripple.c:136 +msgid "_Ripple..." +msgstr "_Dalgacık..." + +#: ../plug-ins/common/ripple.c:226 +msgid "Rippling" +msgstr "Dalgacıklandırma" + +#: ../plug-ins/common/ripple.c:468 +msgid "Ripple" +msgstr "Dalgacık" + +#: ../plug-ins/common/ripple.c:526 +msgid "_Retain tilability" +msgstr "_Döşenebilirliği tut" + +#. Edges toggle box +#: ../plug-ins/common/ripple.c:560 +msgid "Edges" +msgstr "Kenarlar" + +#: ../plug-ins/common/ripple.c:566 +msgid "_Blank" +msgstr "_Sil" + +#. Wave toggle box +#: ../plug-ins/common/ripple.c:588 +msgid "Wave Type" +msgstr "Dalga Türü" + +#: ../plug-ins/common/ripple.c:592 +msgid "Saw_tooth" +msgstr "Testere_dişleri" + +#: ../plug-ins/common/ripple.c:593 +msgid "S_ine" +msgstr "S_inüs" + +#: ../plug-ins/common/ripple.c:616 +msgid "_Period:" +msgstr "_Dönem:" + +#: ../plug-ins/common/ripple.c:629 +msgid "A_mplitude:" +msgstr "G_enişlik:" + +#: ../plug-ins/common/ripple.c:642 +msgid "Phase _shift:" +msgstr "Faz _kayması:" + +#: ../plug-ins/common/rotate.c:413 +msgid "You can not rotate the whole image if there's a selection." +msgstr "Bütün resmi seçili bir alanda çeviremezsiniz." + +#: ../plug-ins/common/rotate.c:420 +msgid "You can not rotate the whole image if there's a floating selection." +msgstr "Eğer serbest seçim var ise tüm resmi döndüremezsiniz." + +#: ../plug-ins/common/rotate.c:431 +msgid "Sorry, channels and masks can not be rotated." +msgstr "Üzgünüz, kanal ve maskeler çevrilemez." + +#: ../plug-ins/common/rotate.c:437 +msgid "Rotating" +msgstr "Döndürme" + +#: ../plug-ins/common/sample-colorize.c:298 +msgid "Colorize image using a sample image as a guide" +msgstr "Örnek bir resmi rehber alarak resmi renklendirir" + +#: ../plug-ins/common/sample-colorize.c:303 +msgid "_Sample Colorize..." +msgstr "_Örnek Renklendirme..." + +#: ../plug-ins/common/sample-colorize.c:1318 +msgid "Sample Colorize" +msgstr "Örnek Renklendirme" + +#: ../plug-ins/common/sample-colorize.c:1323 +msgid "Get _Sample Colors" +msgstr "Örnek Renkler _Al" + +#. layer combo_box (Dst) +#: ../plug-ins/common/sample-colorize.c:1352 +msgid "Destination:" +msgstr "Hedef:" + +#. layer combo_box (Sample) +#: ../plug-ins/common/sample-colorize.c:1368 +msgid "Sample:" +msgstr "Örnek:" + +#: ../plug-ins/common/sample-colorize.c:1378 +msgid "From reverse gradient" +msgstr "Ters eğimden" + +#: ../plug-ins/common/sample-colorize.c:1383 +msgid "From gradient" +msgstr "Eğimden" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1404 +#: ../plug-ins/common/sample-colorize.c:1431 +msgid "Show selection" +msgstr "Seçimi göster" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1415 +#: ../plug-ins/common/sample-colorize.c:1442 +msgid "Show color" +msgstr "Rengi göster" + +#: ../plug-ins/common/sample-colorize.c:1555 +msgid "Input levels:" +msgstr "Girdi düzeyleri:" + +#: ../plug-ins/common/sample-colorize.c:1605 +msgid "Output levels:" +msgstr "Çıktı düzeyleri:" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1645 +msgid "Hold intensity" +msgstr "Yoğunluğu sabitle" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1656 +msgid "Original intensity" +msgstr "Özgün yoğunluk" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1674 +msgid "Use subcolors" +msgstr "Yardımcı renkleri kullan" + +#. check button +#: ../plug-ins/common/sample-colorize.c:1685 +msgid "Smooth samples" +msgstr "Pürüzsüz örnekler" + +#: ../plug-ins/common/sample-colorize.c:2657 +msgid "Sample analyze" +msgstr "Basit çözümleme" + +#: ../plug-ins/common/sample-colorize.c:3035 +msgid "Remap colorized" +msgstr "Renklendirilen yeniden eşleme" + +#: ../plug-ins/common/screenshot.c:240 +msgid "Create an image from an area of the screen" +msgstr "Ekran alanında görüntü oluşutur" + +#: ../plug-ins/common/screenshot.c:253 +msgid "_Screenshot..." +msgstr "_Ekran Görüntüsü..." + +#: ../plug-ins/common/screenshot.c:417 +msgid "Error selecting the window" +msgstr "Pencere seçme hatası" + +#: ../plug-ins/common/screenshot.c:778 +msgid "Importing screenshot" +msgstr "Ekran görüntüsü içe aktarılıyor" + +#: ../plug-ins/common/screenshot.c:804 ../plug-ins/common/screenshot.c:1060 +msgid "Screenshot" +msgstr "Ekran Görüntüsü" + +#: ../plug-ins/common/screenshot.c:845 +msgid "Mouse Pointer" +msgstr "Fare İmleci" + +#: ../plug-ins/common/screenshot.c:949 +msgid "Specified window not found" +msgstr "Belirtilen pencere bulunamadı" + +#: ../plug-ins/common/screenshot.c:975 +msgid "There was an error taking the screenshot." +msgstr "Ekran görüntüsü almada bir hata oluştu" + +#: ../plug-ins/common/screenshot.c:1069 +msgid "S_nap" +msgstr "Enstantane fotoğraf" + +#: ../plug-ins/common/screenshot.c:1099 +msgid "After the delay, the screenshot is taken." +msgstr "Gecikmenin ardından ekran görüntüsü alınır." + +#: ../plug-ins/common/screenshot.c:1101 +msgid "" +"After the delay, drag your mouse to select the region for the screenshot." +msgstr "" +"Gecikmeden sonra, ekran görüntüsü alınacak bölgeyi seçmek için farenizi " +"sürükleyin." + +#: ../plug-ins/common/screenshot.c:1104 +msgid "At the end of the delay, click in a window to snap it." +msgstr "" +"Gecikme süresinin sonunda, görüntü almak için pencerenin içine tıkla." + +#. Area +#: ../plug-ins/common/screenshot.c:1110 +msgid "Area" +msgstr "Alan" + +#: ../plug-ins/common/screenshot.c:1121 +msgid "Take a screenshot of a single _window" +msgstr "T_ek bir pencerenin ekran görüntüsünü al" + +#: ../plug-ins/common/screenshot.c:1140 +msgid "Include window _decoration" +msgstr "Pencere süslemesini kapsa" + +#: ../plug-ins/common/screenshot.c:1158 +msgid "Take a screenshot of the entire _screen" +msgstr "_Tüm ekranın ekran görüntüsünü al" + +#: ../plug-ins/common/screenshot.c:1177 +msgid "Include _mouse pointer" +msgstr "_Fare imlecini kapsa" + +#: ../plug-ins/common/screenshot.c:1197 +msgid "Select a _region to grab" +msgstr "Yakanacak _bölge seç" + +#. Delay +#: ../plug-ins/common/screenshot.c:1212 +msgid "Delay" +msgstr "Gecikme" + +#. this is the unit label of a spinbutton +#: ../plug-ins/common/screenshot.c:1234 +msgid "seconds" +msgstr "saniye" + +#: ../plug-ins/common/semi-flatten.c:68 +msgid "Replace partial transparency with the current background color" +msgstr "Mevcut artalan rengini kısmi saydamlık ile değiştir" + +#: ../plug-ins/common/semi-flatten.c:75 +msgid "_Semi-Flatten" +msgstr "_Yarı-Düzleştir" + +#: ../plug-ins/common/semi-flatten.c:118 +msgid "Semi-Flattening" +msgstr "Yarı-Düzleştirme" + +#: ../plug-ins/common/sharpen.c:113 +msgid "Make image sharper (less powerful than Unsharp Mask)" +msgstr "Resmi keskinleştirir (Keskin Netleştirmeye göre daha güçsüzdür)" + +#: ../plug-ins/common/sharpen.c:120 +msgid "_Sharpen..." +msgstr "_Keskinleştir..." + +#. +#. * Let the user know what we're doing... +#. +#: ../plug-ins/common/sharpen.c:307 +msgid "Sharpening" +msgstr "Keskinleştiriliyor" + +#: ../plug-ins/common/sharpen.c:476 +msgid "Sharpen" +msgstr "Keskinleştir" + +#: ../plug-ins/common/shift.c:101 +msgid "Shift each row of pixels by a random amount" +msgstr "Her benek satırını rasgele miktarda kaydır" + +#: ../plug-ins/common/shift.c:108 +msgid "_Shift..." +msgstr "_Ötele..." + +#: ../plug-ins/common/shift.c:189 +msgid "Shifting" +msgstr "Öteleme" + +#: ../plug-ins/common/shift.c:355 +msgid "Shift" +msgstr "Ötele" + +#: ../plug-ins/common/shift.c:388 +msgid "Shift _horizontally" +msgstr "Yatay olarak _kaydır" + +#: ../plug-ins/common/shift.c:391 +msgid "Shift _vertically" +msgstr "_Dikey olarak kaydır" + +#: ../plug-ins/common/shift.c:422 +msgid "Shift _amount:" +msgstr "Kaydırma _miktarı:" + +#: ../plug-ins/common/sinus.c:186 +msgid "Generate complex sinusoidal textures" +msgstr "Karmaşık sinüsoid desen oluştur" + +#: ../plug-ins/common/sinus.c:191 +msgid "_Sinus..." +msgstr "_Sinüs..." + +#: ../plug-ins/common/sinus.c:284 +msgid "Sinus: rendering" +msgstr "Sinüs: taranıyor" + +#. Create Main window with a vbox +#. ============================== +#: ../plug-ins/common/sinus.c:648 +msgid "Sinus" +msgstr "Sinüs" + +#: ../plug-ins/common/sinus.c:690 +msgid "Drawing Settings" +msgstr "Çizim Ayarları" + +#: ../plug-ins/common/sinus.c:700 +msgid "_X scale:" +msgstr "_X ölçeği:" + +#: ../plug-ins/common/sinus.c:709 +msgid "_Y scale:" +msgstr "_Y ölçeği:" + +#: ../plug-ins/common/sinus.c:718 +msgid "Co_mplexity:" +msgstr "Ka_rmaşıklık:" + +#: ../plug-ins/common/sinus.c:728 +msgid "Calculation Settings" +msgstr "Hesaplama Ayarları" + +#: ../plug-ins/common/sinus.c:741 +msgid "R_andom seed:" +msgstr "R_astgele tohum:" + +#: ../plug-ins/common/sinus.c:750 +msgid "_Force tiling?" +msgstr "Döşemeye _zorlansın mı?" + +#: ../plug-ins/common/sinus.c:763 +msgid "_Ideal" +msgstr "_İdeal" + +#: ../plug-ins/common/sinus.c:764 +msgid "_Distorted" +msgstr "_Bozulmuş" + +#: ../plug-ins/common/sinus.c:782 ../plug-ins/common/sinus.c:798 +#: ../plug-ins/imagemap/imap_preferences.c:422 +msgid "Colors" +msgstr "Renkler" + +#. if in grey scale, the colors are necessarily black and white +#: ../plug-ins/common/sinus.c:791 +msgid "The colors are white and black." +msgstr "Renkler beyaz ve siyah." + +#: ../plug-ins/common/sinus.c:802 +msgid "Bl_ack & white" +msgstr "Si_yah & Beyaz" + +#: ../plug-ins/common/sinus.c:804 +msgid "_Foreground & background" +msgstr "_Önalan ve Artalan" + +#: ../plug-ins/common/sinus.c:806 +msgid "C_hoose here:" +msgstr "Burada s_eç:" + +#: ../plug-ins/common/sinus.c:819 +msgid "First color" +msgstr "İlk renk" + +#: ../plug-ins/common/sinus.c:829 +msgid "Second color" +msgstr "İkinci renk" + +#: ../plug-ins/common/sinus.c:842 +msgid "Alpha Channels" +msgstr "Görünür Kanalları" + +#: ../plug-ins/common/sinus.c:855 +msgid "F_irst color:" +msgstr "İ_lk renk:" + +#: ../plug-ins/common/sinus.c:870 +msgid "S_econd color:" +msgstr "İ_kinci renk:" + +#: ../plug-ins/common/sinus.c:886 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:904 +msgid "Co_lors" +msgstr "_Renkler" + +#: ../plug-ins/common/sinus.c:895 +msgid "Blend Settings" +msgstr "Harmanlama Ayarları" + +#: ../plug-ins/common/sinus.c:908 +msgid "L_inear" +msgstr "D_oğrusal" + +#: ../plug-ins/common/sinus.c:909 +msgid "Bili_near" +msgstr "Çift_doğrusal:" + +#: ../plug-ins/common/sinus.c:910 +msgid "Sin_usoidal" +msgstr "Sin_üs eğrisi şeklinde" + +#: ../plug-ins/common/sinus.c:932 +msgid "_Blend" +msgstr "_Harmanlama" + +#: ../plug-ins/common/sinus.c:1049 +msgid "Do _preview" +msgstr "Önizleme" + +#: ../plug-ins/common/smooth-palette.c:83 +msgid "Derive a smooth color palette from the image" +msgstr "Görüntüden düzgün renk paleti türet" + +#: ../plug-ins/common/smooth-palette.c:88 +msgid "Smoo_th Palette..." +msgstr "_Pürüzsüz Palet..." + +#: ../plug-ins/common/smooth-palette.c:179 +msgid "Deriving smooth palette" +msgstr "Düzgün palet türetme" + +#: ../plug-ins/common/smooth-palette.c:412 +msgid "Smooth Palette" +msgstr "Pürüzsüz Palet..." + +#: ../plug-ins/common/smooth-palette.c:452 +msgid "_Search depth:" +msgstr "_Arama derinliği:" + +#: ../plug-ins/common/softglow.c:134 +msgid "Simulate glow by making highlights intense and fuzzy" +msgstr "Vurgulamaları yoğun ve bulanık yaparak parıltı benzetimi yap" + +#: ../plug-ins/common/softglow.c:139 +msgid "_Softglow..." +msgstr "Hafif _Parıltı..." + +#: ../plug-ins/common/softglow.c:632 +msgid "Softglow" +msgstr "Hafif Parıltı" + +#: ../plug-ins/common/softglow.c:669 +msgid "_Glow radius:" +msgstr "Parıltı _yarıçapı:" + +#: ../plug-ins/common/sparkle.c:178 +msgid "Turn bright spots into starry sparkles" +msgstr "Aydınlık noktaları yıldızlı parıltıya çevir" + +#: ../plug-ins/common/sparkle.c:186 +msgid "_Sparkle..." +msgstr "_Parıltı..." + +#: ../plug-ins/common/sparkle.c:223 +msgid "Region selected for filter is empty" +msgstr "Süzgeç için seçilen alan boş" + +#: ../plug-ins/common/sparkle.c:299 +msgid "Sparkling" +msgstr "Parlak" + +#: ../plug-ins/common/sparkle.c:337 +msgid "Sparkle" +msgstr "Parıltı" + +#: ../plug-ins/common/sparkle.c:373 +msgid "Luminosity _threshold:" +msgstr "Işıklılık _eşiği:" + +#: ../plug-ins/common/sparkle.c:376 +msgid "Adjust the luminosity threshold" +msgstr "Işıklılık eşiğini ayarla" + +#: ../plug-ins/common/sparkle.c:386 +msgid "F_lare intensity:" +msgstr "I_şıma şiddeti:" + +#: ../plug-ins/common/sparkle.c:389 +msgid "Adjust the flare intensity" +msgstr "Parlama yoğunluğunu ayarla" + +#: ../plug-ins/common/sparkle.c:399 +msgid "_Spike length:" +msgstr "_Çivi uzunluğu:" + +#: ../plug-ins/common/sparkle.c:402 +msgid "Adjust the spike length" +msgstr "Çivi uzunluğunu ayarla" + +#: ../plug-ins/common/sparkle.c:412 +msgid "Sp_ike points:" +msgstr "Çivi _noktaları:" + +#: ../plug-ins/common/sparkle.c:415 +msgid "Adjust the number of spikes" +msgstr "Çivilerin sayısını ayarla" + +#: ../plug-ins/common/sparkle.c:425 +msgid "Spi_ke angle (-1: random):" +msgstr "Çivi a_çısı (-1: rasgele):" + +#: ../plug-ins/common/sparkle.c:428 +msgid "Adjust the spike angle (-1 causes a random angle to be chosen)" +msgstr "Çivi açısını ayarla (-1 rasgele açı seçilmesini sağlar)" + +#: ../plug-ins/common/sparkle.c:439 +msgid "Spik_e density:" +msgstr "Çiv_i kalınlığı:" + +#: ../plug-ins/common/sparkle.c:442 +msgid "Adjust the spike density" +msgstr "Çivi kalınlığını ayarla" + +#: ../plug-ins/common/sparkle.c:452 +msgid "Tr_ansparency:" +msgstr "S_aydamlık:" + +#: ../plug-ins/common/sparkle.c:455 +msgid "Adjust the opacity of the spikes" +msgstr "Çivilerin opaklığını ayarla" + +#: ../plug-ins/common/sparkle.c:465 +msgid "_Random hue:" +msgstr "_Rastgele renk tonu:" + +#: ../plug-ins/common/sparkle.c:468 +msgid "Adjust how much the hue should be changed randomly" +msgstr "Ne kadar renk tonunun rasgele olarak değişmesi gerektiğini ayarla" + +#: ../plug-ins/common/sparkle.c:478 +msgid "Rando_m saturation:" +msgstr "Rastgel_e doygunluk" + +#: ../plug-ins/common/sparkle.c:481 +msgid "Adjust how much the saturation should be changed randomly" +msgstr "Ne kadar doygunluğun rastgele değiştirilmesi gerektiğini ayarlayın" + +#: ../plug-ins/common/sparkle.c:498 +msgid "_Preserve luminosity" +msgstr "Işıklılığı _koru" + +#: ../plug-ins/common/sparkle.c:505 +msgid "Should the luminosity be preserved?" +msgstr "Işıklılık korunmalı mı?" + +#: ../plug-ins/common/sparkle.c:514 +msgid "In_verse" +msgstr "Te_rs" + +#: ../plug-ins/common/sparkle.c:520 +msgid "Should the effect be inversed?" +msgstr "Etkiler tersine çevrilsin mi?" + +#: ../plug-ins/common/sparkle.c:529 +msgid "A_dd border" +msgstr "Kenarlık e_kle" + +#: ../plug-ins/common/sparkle.c:535 +msgid "Draw a border of spikes around the image" +msgstr "Resmin çevresindeki çivilerin kenarlığını çiz" + +#: ../plug-ins/common/sparkle.c:549 +msgid "_Natural color" +msgstr "_Doğal renk" + +#: ../plug-ins/common/sparkle.c:550 +msgid "_Foreground color" +msgstr "_Önalan rengi" + +#: ../plug-ins/common/sparkle.c:551 +msgid "_Background color" +msgstr "_Artalan rengi" + +#: ../plug-ins/common/sparkle.c:558 +msgid "Use the color of the image" +msgstr "Görüntünün rengini kullan" + +#: ../plug-ins/common/sparkle.c:559 +msgid "Use the foreground color" +msgstr "Önplan rengini kullan" + +#: ../plug-ins/common/sparkle.c:560 +msgid "Use the background color" +msgstr "Artalan rengini kullan" + +#: ../plug-ins/common/sphere-designer.c:291 +#: ../plug-ins/gimpressionist/general.c:166 +msgid "Solid" +msgstr "Kesiksiz" + +#: ../plug-ins/common/sphere-designer.c:292 +msgid "Checker" +msgstr "Denetleyici" + +#: ../plug-ins/common/sphere-designer.c:293 +msgid "Marble" +msgstr "Mermer" + +#: ../plug-ins/common/sphere-designer.c:294 +msgid "Lizard" +msgstr "Kertenkele" + +#: ../plug-ins/common/sphere-designer.c:295 +msgid "Phong" +msgstr "Phong" + +#: ../plug-ins/common/sphere-designer.c:296 ../plug-ins/flame/flame.c:774 +msgid "Noise" +msgstr "Parazit" + +#: ../plug-ins/common/sphere-designer.c:297 +msgid "Wood" +msgstr "Ağaç" + +#: ../plug-ins/common/sphere-designer.c:298 ../plug-ins/flame/flame.c:758 +msgid "Spiral" +msgstr "Spiral" + +#: ../plug-ins/common/sphere-designer.c:299 +msgid "Spots" +msgstr "Lekeler" + +#: ../plug-ins/common/sphere-designer.c:1742 +#: ../plug-ins/common/sphere-designer.c:2693 +msgid "Texture" +msgstr "Doku" + +#: ../plug-ins/common/sphere-designer.c:1744 +msgid "Bumpmap" +msgstr "Derinlik etkisi" + +#: ../plug-ins/common/sphere-designer.c:1746 +#: ../plug-ins/common/sphere-designer.c:2695 +msgid "Light" +msgstr "Hafif" + +#: ../plug-ins/common/sphere-designer.c:2010 +#, c-format +msgid "File '%s' is not a valid save file." +msgstr "'%s' dosyası geçerli bir kayıt dosyası değil." + +#: ../plug-ins/common/sphere-designer.c:2190 +msgid "Open File" +msgstr "Dosya Aç" + +#: ../plug-ins/common/sphere-designer.c:2190 +msgid "Save File" +msgstr "Dosyayı Kaydet" + +#: ../plug-ins/common/sphere-designer.c:2547 +msgid "Sphere Designer" +msgstr "Küre Tasarımcısı" + +#: ../plug-ins/common/sphere-designer.c:2678 +msgid "Properties" +msgstr "Özellikler" + +#: ../plug-ins/common/sphere-designer.c:2694 +msgid "Bump" +msgstr "Tümsek" + +#. row labels +#: ../plug-ins/common/sphere-designer.c:2702 +#: ../plug-ins/lighting/lighting-ui.c:405 +msgid "Type:" +msgstr "Tür:" + +#: ../plug-ins/common/sphere-designer.c:2721 +msgid "Texture:" +msgstr "Doku:" + +#: ../plug-ins/common/sphere-designer.c:2726 +msgid "Colors:" +msgstr "Renkler:" + +#: ../plug-ins/common/sphere-designer.c:2729 +#: ../plug-ins/common/sphere-designer.c:2740 +msgid "Color Selection Dialog" +msgstr "Renk Seçim Kutusu" + +#. Scale +#: ../plug-ins/common/sphere-designer.c:2751 +#: ../plug-ins/gimpressionist/paper.c:194 +#: ../plug-ins/ifs-compose/ifs-compose.c:554 +msgid "Scale:" +msgstr "Ölçekle:" + +#: ../plug-ins/common/sphere-designer.c:2759 +msgid "Turbulence:" +msgstr "Türbülans:" + +#: ../plug-ins/common/sphere-designer.c:2766 +msgid "Amount:" +msgstr "Adet:" + +#: ../plug-ins/common/sphere-designer.c:2773 +msgid "Exp.:" +msgstr "Üstel:" + +#: ../plug-ins/common/sphere-designer.c:2780 +msgid "Transformations" +msgstr "Dönüşümler" + +#: ../plug-ins/common/sphere-designer.c:2796 +#: ../plug-ins/map-object/map-object-ui.c:1143 +msgid "Scale X:" +msgstr "X Ölçeği:" + +#: ../plug-ins/common/sphere-designer.c:2803 +msgid "Scale Y:" +msgstr "Y Ölçeği:" + +#: ../plug-ins/common/sphere-designer.c:2809 +msgid "Scale Z:" +msgstr "Z Ölçeği:" + +#: ../plug-ins/common/sphere-designer.c:2816 +msgid "Rotate X:" +msgstr "X Dönmesi:" + +#: ../plug-ins/common/sphere-designer.c:2823 +msgid "Rotate Y:" +msgstr "Y Dönmesi:" + +#: ../plug-ins/common/sphere-designer.c:2830 +msgid "Rotate Z:" +msgstr "Z Dönmesi:" + +#: ../plug-ins/common/sphere-designer.c:2837 +msgid "Position X:" +msgstr "X Konumu:" + +#: ../plug-ins/common/sphere-designer.c:2844 +msgid "Position Y:" +msgstr "Y Konumu:" + +#: ../plug-ins/common/sphere-designer.c:2851 +msgid "Position Z:" +msgstr "Z Konumu:" + +#: ../plug-ins/common/sphere-designer.c:2966 +msgid "Rendering sphere" +msgstr "Küre taranıyor" + +#: ../plug-ins/common/sphere-designer.c:3016 +msgid "Create an image of a textured sphere" +msgstr "Dokumalı küre resmi oluştur" + +#: ../plug-ins/common/sphere-designer.c:3023 +msgid "Sphere _Designer..." +msgstr "Küre _Tasarımcısı..." + +#: ../plug-ins/common/sphere-designer.c:3083 +msgid "Region selected for plug-in is empty" +msgstr "Eklenti için seçilen alan boş" + +#: ../plug-ins/common/threshold-alpha.c:85 +msgid "Make transparency all-or-nothing" +msgstr "Tümünü/hiçbirini saydamlaştır" + +#: ../plug-ins/common/threshold-alpha.c:90 +msgid "_Threshold Alpha..." +msgstr "_Görünür Eşik..." + +#: ../plug-ins/common/threshold-alpha.c:131 +msgid "The layer has its alpha channel locked." +msgstr "Görünür kanalı olan katman kilitlendi." + +#: ../plug-ins/common/threshold-alpha.c:137 +msgid "RGBA/GRAYA drawable is not selected." +msgstr "Çizilebilir RGBA/GRAYA seçili değil." + +#: ../plug-ins/common/threshold-alpha.c:165 +msgid "Coloring transparency" +msgstr "Saydamlığı renklendirme" + +#: ../plug-ins/common/threshold-alpha.c:248 +msgid "Threshold Alpha" +msgstr "Görünür Eşik" + +#: ../plug-ins/common/threshold-alpha.c:283 +msgid "Threshold:" +msgstr "Eşik:" + +#: ../plug-ins/common/tile-glass.c:124 +msgid "Simulate distortion caused by square glass tiles" +msgstr "Kare cam döşemeleri sebebiyle oluşan bozulma benzetimi yap" + +#: ../plug-ins/common/tile-glass.c:130 +msgid "_Glass Tile..." +msgstr "_Cam Döşeme..." + +#: ../plug-ins/common/tile-glass.c:210 ../plug-ins/common/tile-glass.c:250 +msgid "Glass Tile" +msgstr "Cam Döşeme" + +#: ../plug-ins/common/tile-glass.c:289 +msgid "Tile _width:" +msgstr "Döşeme _genişliği:" + +#: ../plug-ins/common/tile-paper.c:243 ../plug-ins/common/tile-paper.c:556 +msgid "Paper Tile" +msgstr "Parçalara Ayır" + +#: ../plug-ins/common/tile-paper.c:269 +msgid "Division" +msgstr "Bölme" + +#: ../plug-ins/common/tile-paper.c:319 +msgid "Fractional Pixels" +msgstr "Kesirli Benekler" + +#: ../plug-ins/common/tile-paper.c:324 +msgid "_Background" +msgstr "A_rtalan" + +#: ../plug-ins/common/tile-paper.c:326 +msgid "_Ignore" +msgstr "_Yoksay" + +#: ../plug-ins/common/tile-paper.c:328 +msgid "_Force" +msgstr "_Zorla" + +#: ../plug-ins/common/tile-paper.c:335 +msgid "C_entering" +msgstr "O_rtalama" + +#: ../plug-ins/common/tile-paper.c:350 +msgid "Movement" +msgstr "Hareket Yönü" + +#: ../plug-ins/common/tile-paper.c:363 +msgid "_Max (%):" +msgstr "_Azami (%):" + +#: ../plug-ins/common/tile-paper.c:369 +msgid "_Wrap around" +msgstr "Etrafını _sar" + +#: ../plug-ins/common/tile-paper.c:379 +msgid "Background Type" +msgstr "Artalan Türü" + +#: ../plug-ins/common/tile-paper.c:386 +msgid "I_nverted image" +msgstr "Te_rs görüntü" + +#: ../plug-ins/common/tile-paper.c:388 +msgid "Im_age" +msgstr "Gö_rüntü" + +#: ../plug-ins/common/tile-paper.c:390 +msgid "Fo_reground color" +msgstr "Ön_alan rengi" + +#: ../plug-ins/common/tile-paper.c:392 +msgid "Bac_kground color" +msgstr "Ar_talan rengi" + +#: ../plug-ins/common/tile-paper.c:394 +msgid "S_elect here:" +msgstr "Burayı s_eç:" + +#: ../plug-ins/common/tile-paper.c:401 +msgid "Background Color" +msgstr "Artalan Rengi" + +#: ../plug-ins/common/tile-paper.c:846 +msgid "Cut image into paper tiles, and slide them" +msgstr "Resmi dörtgen şeklinde parçalara ayırır ve onları rastgele döşer" + +#: ../plug-ins/common/tile-paper.c:851 +msgid "September 31, 1999" +msgstr "31 Eylül 1999" + +#: ../plug-ins/common/tile-paper.c:852 +msgid "_Paper Tile..." +msgstr "_Parçalara Ayır..." + +#: ../plug-ins/common/tile-seamless.c:67 +msgid "Alters edges to make the image seamlessly tileable" +msgstr "Resme, resmin kenarlarını yumuşak olarak döşer" + +#: ../plug-ins/common/tile-seamless.c:73 +msgid "_Make Seamless" +msgstr "_Yumuşak Döşe" + +#: ../plug-ins/common/tile-seamless.c:338 +msgid "Tiler" +msgstr "Döşeyici" + +#: ../plug-ins/common/tile-small.c:215 +msgid "Tile image into smaller versions of the original" +msgstr "Resmin küçük hallerini düzenli olarak döşer" + +#: ../plug-ins/common/tile-small.c:220 +msgid "_Small Tiles..." +msgstr "_Küçük Döşemeler..." + +#: ../plug-ins/common/tile-small.c:263 +msgid "Region selected for filter is empty." +msgstr "Süzgeç için seçilen alan boş." + +#. Set the tile cache size +#: ../plug-ins/common/tile-small.c:321 ../plug-ins/common/tile.c:190 +msgid "Tiling" +msgstr "Döşeme" + +#. Get the preview image +#: ../plug-ins/common/tile-small.c:364 +msgid "Small Tiles" +msgstr "Küçük Döşemeler" + +#. Area for buttons etc +#. Flip +#: ../plug-ins/common/tile-small.c:414 +#: ../plug-ins/ifs-compose/ifs-compose.c:610 +msgid "Flip" +msgstr "Çevir" + +#: ../plug-ins/common/tile-small.c:462 +msgid "A_ll tiles" +msgstr "T_üm parçalar" + +#: ../plug-ins/common/tile-small.c:476 +msgid "Al_ternate tiles" +msgstr "Değ_işimli parçalar" + +#: ../plug-ins/common/tile-small.c:490 +msgid "_Explicit tile" +msgstr "_Seçili parça" + +#: ../plug-ins/common/tile-small.c:496 +msgid "Ro_w:" +msgstr "Satı_r:" + +#: ../plug-ins/common/tile-small.c:520 +msgid "Col_umn:" +msgstr "Süt_un:" + +#: ../plug-ins/common/tile-small.c:572 +msgid "O_pacity:" +msgstr "I_şık geçirmezlik:" + +#. Lower frame saying howmany segments +#: ../plug-ins/common/tile-small.c:581 +msgid "Number of Segments" +msgstr "Parçaların Sayısı" + +#: ../plug-ins/common/tile.c:101 +msgid "Create an array of copies of the image" +msgstr "Görüntü kopyalarının dizisini oluştur" + +#: ../plug-ins/common/tile.c:111 +msgid "_Tile..." +msgstr "_Döşe..." + +#: ../plug-ins/common/tile.c:401 +msgid "Tile" +msgstr "Döşe" + +#: ../plug-ins/common/tile.c:422 +msgid "Tile to New Size" +msgstr "Yeni Boyuta Döşe" + +#: ../plug-ins/common/tile.c:444 +msgid "C_reate new image" +msgstr "Yeni görüntü o_luştur" + +#: ../plug-ins/common/unit-editor.c:94 +msgid "Saved" +msgstr "Kaydedildi" + +#: ../plug-ins/common/unit-editor.c:94 +msgid "" +"A unit definition will only be saved before GIMP exits if this column is " +"checked." +msgstr "" +"Öğe tanımı GIMP'ten çıkmadan önce eğer bu sütun işaretlenirse kaydedilecek." + +#: ../plug-ins/common/unit-editor.c:96 +msgid "ID" +msgstr "Kimlik" + +#: ../plug-ins/common/unit-editor.c:96 +msgid "" +"This string will be used to identify a unit in GIMP's configuration files." +msgstr "" +"Bu dizgi GIMP'in yapılandırma dosyasındaki bir birimi saptamak için " +"kullanılacaktır." + +#: ../plug-ins/common/unit-editor.c:98 +msgid "Factor" +msgstr "Etken" + +#: ../plug-ins/common/unit-editor.c:98 +msgid "How many units make up an inch." +msgstr "Kaç birim inç yapıyor." + +#: ../plug-ins/common/unit-editor.c:99 +msgid "Digits" +msgstr "Sayılar" + +#: ../plug-ins/common/unit-editor.c:99 +msgid "" +"This field is a hint for numerical input fields. It specifies how many " +"decimal digits the input field should provide to get approximately the same " +"accuracy as an \"inch\" input field with two decimal digits." +msgstr "" +"Bu alan, sayısal girdi alanları için bir tavsiyedir. Girdi alanının yaklaşık " +"olarak aynı doğrulukta olan iki ondalık haneli \"inç\" girdi alanı için ne " +"kadar ondalık hane sağlaması gerektiğini belirtir." + +#: ../plug-ins/common/unit-editor.c:104 +msgid "Symbol" +msgstr "Sembol" + +#: ../plug-ins/common/unit-editor.c:104 +msgid "" +"The unit's symbol if it has one (e.g. \"'\" for inches). The unit's " +"abbreviation is used if doesn't have a symbol." +msgstr "" +"Birim sembolü varsa kullanılır (örn. \"'\" inç'ler için). Eğer sembol yoksa " +"birim kısaltması kullanılır." + +#: ../plug-ins/common/unit-editor.c:107 +msgid "Abbreviation" +msgstr "Kısaltma" + +#: ../plug-ins/common/unit-editor.c:107 +msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." +msgstr "Birimin kısaltması (ör: santimetre için \"cm\")." + +#: ../plug-ins/common/unit-editor.c:109 +msgid "Singular" +msgstr "Tekil" + +#: ../plug-ins/common/unit-editor.c:109 +msgid "The unit's singular form." +msgstr "Birimin tekil formu." + +#: ../plug-ins/common/unit-editor.c:110 +msgid "Plural" +msgstr "Çoğul" + +#: ../plug-ins/common/unit-editor.c:110 +msgid "The unit's plural form." +msgstr "Birimin çoğul formu." + +#: ../plug-ins/common/unit-editor.c:121 +msgid "Create a new unit from scratch" +msgstr "BAştan yeni birim oluştur" + +#: ../plug-ins/common/unit-editor.c:127 +msgid "Create a new unit using the currently selected unit as template" +msgstr "Mevcut seçili birimi şablon olarak kullanıp yeni bir birim oluşturun" + +#: ../plug-ins/common/unit-editor.c:145 +msgid "Create or alter units used in GIMP" +msgstr "GIMP'de kullanılmış birimleri oluştur yada değiştir" + +#: ../plug-ins/common/unit-editor.c:150 +msgid "U_nits" +msgstr "B_irimler" + +#: ../plug-ins/common/unit-editor.c:208 +msgid "Add a New Unit" +msgstr "Yeni Birim Ekle" + +#: ../plug-ins/common/unit-editor.c:237 +msgid "_ID:" +msgstr "Ki_mlik:" + +#: ../plug-ins/common/unit-editor.c:248 +msgid "_Factor:" +msgstr "_Etken:" + +#: ../plug-ins/common/unit-editor.c:258 +msgid "_Digits:" +msgstr "_Sayılar:" + +#: ../plug-ins/common/unit-editor.c:270 +msgid "_Symbol:" +msgstr "_Sembol:" + +#: ../plug-ins/common/unit-editor.c:282 +msgid "_Abbreviation:" +msgstr "K_ısaltma:" + +#: ../plug-ins/common/unit-editor.c:294 +msgid "Si_ngular:" +msgstr "Te_kil:" + +#: ../plug-ins/common/unit-editor.c:306 +msgid "_Plural:" +msgstr "_Çoğul:" + +#: ../plug-ins/common/unit-editor.c:349 +msgid "Incomplete input" +msgstr "Tamamlanmamış girdi" + +#: ../plug-ins/common/unit-editor.c:352 +msgid "Please fill in all text fields." +msgstr "Lütfen tüm metin alanlarını doldurun." + +#: ../plug-ins/common/unit-editor.c:409 +msgid "Unit Editor" +msgstr "Birim Düzenleyici" + +#: ../plug-ins/common/unsharp-mask.c:128 +msgid "The most widely useful method for sharpening an image" +msgstr "Bir görüntüyü keskinleştirmek için kullanışlı en yaygın yöntem" + +#: ../plug-ins/common/unsharp-mask.c:138 +msgid "_Unsharp Mask..." +msgstr "_Keskin Netleştirme..." + +#: ../plug-ins/common/unsharp-mask.c:475 +msgid "Merging" +msgstr "Birleştiriliyor" + +#: ../plug-ins/common/unsharp-mask.c:644 +msgid "Unsharp Mask" +msgstr "Keskin Netleştirme" + +#: ../plug-ins/common/value-invert.c:90 +msgid "Invert the brightness of each pixel" +msgstr "Her bir beneğin parlaklığını tersine çevir" + +#: ../plug-ins/common/value-invert.c:104 +msgid "_Value Invert" +msgstr "_Değeri tersine çevir" + +#: ../plug-ins/common/value-invert.c:191 +msgid "Value Invert" +msgstr "Değeri tersine çevir" + +#: ../plug-ins/common/value-propagate.c:189 +msgid "More _white (larger value)" +msgstr "Daha fazla _beyaz (daha büyük değer)" + +#: ../plug-ins/common/value-propagate.c:192 +msgid "More blac_k (smaller value)" +msgstr "Daha fazla siya_h (daha az değer)" + +#: ../plug-ins/common/value-propagate.c:195 +msgid "_Middle value to peaks" +msgstr "_Orta değer en yüksek değere" + +#: ../plug-ins/common/value-propagate.c:198 +msgid "_Foreground to peaks" +msgstr "_Önalan en yüksek değere" + +#: ../plug-ins/common/value-propagate.c:201 +msgid "O_nly foreground" +msgstr "S_adece önplan" + +#: ../plug-ins/common/value-propagate.c:204 +msgid "Only b_ackground" +msgstr "Sadece a_rkaplan" + +#: ../plug-ins/common/value-propagate.c:207 +msgid "Mor_e opaque" +msgstr "Daha faz_la opak" + +#: ../plug-ins/common/value-propagate.c:210 +msgid "More t_ransparent" +msgstr "Daha fazla ş_effalık" + +#: ../plug-ins/common/value-propagate.c:233 +msgid "Propagate certain colors to neighboring pixels" +msgstr "Belirli renkleri komşu beneklere çoğalt" + +#: ../plug-ins/common/value-propagate.c:238 +msgid "_Value Propagate..." +msgstr "Yayılma _Değeri..." + +#: ../plug-ins/common/value-propagate.c:245 +msgid "Shrink lighter areas of the image" +msgstr "Görüntünün aydınlık alanlarını küçültmek" + +#: ../plug-ins/common/value-propagate.c:250 +msgid "E_rode" +msgstr "A_şındır" + +#: ../plug-ins/common/value-propagate.c:257 +msgid "Grow lighter areas of the image" +msgstr "Görüntünün aydınlık alanlarını büyütmek" + +#: ../plug-ins/common/value-propagate.c:262 +msgid "_Dilate" +msgstr "_Genişletme" + +#: ../plug-ins/common/value-propagate.c:473 +#: ../plug-ins/common/value-propagate.c:1086 +msgid "Value Propagate" +msgstr "Yayılma Değeri" + +#. Parameter settings +#: ../plug-ins/common/value-propagate.c:1152 +msgid "Propagate" +msgstr "Yayımla" + +#: ../plug-ins/common/value-propagate.c:1165 +msgid "Lower t_hreshold:" +msgstr "Alt eş_ik" + +#: ../plug-ins/common/value-propagate.c:1177 +msgid "_Upper threshold:" +msgstr "Üs_t eşik" + +#: ../plug-ins/common/value-propagate.c:1189 +msgid "_Propagating rate:" +msgstr "_Yayılma oranı:" + +#: ../plug-ins/common/value-propagate.c:1200 +msgid "To l_eft" +msgstr "S_ola" + +#: ../plug-ins/common/value-propagate.c:1203 +msgid "To _right" +msgstr "S_ağa" + +#: ../plug-ins/common/value-propagate.c:1206 +msgid "To _top" +msgstr "Ü_ste" + +#: ../plug-ins/common/value-propagate.c:1209 +msgid "To _bottom" +msgstr "A_lta" + +#: ../plug-ins/common/value-propagate.c:1218 +msgid "Propagating _alpha channel" +msgstr "_Görünür kanalı çoğaltılıyor" + +#: ../plug-ins/common/value-propagate.c:1229 +msgid "Propagating value channel" +msgstr "Değer kanalı çoğaltılıyor" + +#: ../plug-ins/common/van-gogh-lic.c:566 ../plug-ins/common/van-gogh-lic.c:641 +msgid "Van Gogh (LIC)" +msgstr "Van Gogh (LIC)" + +#: ../plug-ins/common/van-gogh-lic.c:666 +msgid "Effect Channel" +msgstr "Etki Kanalı" + +#: ../plug-ins/common/van-gogh-lic.c:673 +msgid "_Brightness" +msgstr "_Parlaklık" + +#: ../plug-ins/common/van-gogh-lic.c:679 +msgid "Effect Operator" +msgstr "Etki İşleci" + +#: ../plug-ins/common/van-gogh-lic.c:684 +msgid "_Derivative" +msgstr "_Türemiş" + +#: ../plug-ins/common/van-gogh-lic.c:685 +msgid "_Gradient" +msgstr "_Gradyan" + +#: ../plug-ins/common/van-gogh-lic.c:691 +msgid "Convolve" +msgstr "Evriştirme" + +#: ../plug-ins/common/van-gogh-lic.c:696 +msgid "_With white noise" +msgstr "Beyaz gürültü i_le" + +#: ../plug-ins/common/van-gogh-lic.c:697 +msgid "W_ith source image" +msgstr "Kaynak görüntü i_le" + +#: ../plug-ins/common/van-gogh-lic.c:716 +msgid "_Effect image:" +msgstr "_Etki görüntüsü:" + +#: ../plug-ins/common/van-gogh-lic.c:727 +msgid "_Filter length:" +msgstr "_Süzgeç uzunluğu:" + +#: ../plug-ins/common/van-gogh-lic.c:736 +msgid "_Noise magnitude:" +msgstr "_Gürültü büyüklüğü:" + +#: ../plug-ins/common/van-gogh-lic.c:745 +msgid "In_tegration steps:" +msgstr "Bü_tünleştirme adımları" + +#: ../plug-ins/common/van-gogh-lic.c:754 +msgid "_Minimum value:" +msgstr "_Asgari değer:" + +#: ../plug-ins/common/van-gogh-lic.c:763 +msgid "M_aximum value:" +msgstr "M_aksimum değer:" + +#: ../plug-ins/common/van-gogh-lic.c:809 +msgid "Special effects that nobody understands" +msgstr "Kimsenin anlamadığı özel etkiler" + +#: ../plug-ins/common/van-gogh-lic.c:814 +msgid "_Van Gogh (LIC)..." +msgstr "_Van Gogh (LIC)..." + +#: ../plug-ins/common/video.c:42 +msgid "_Staggered" +msgstr "_Aşamalı" + +#: ../plug-ins/common/video.c:43 +msgid "_Large staggered" +msgstr "_Geniş aşamalı" + +#: ../plug-ins/common/video.c:44 +msgid "S_triped" +msgstr "Ç_izgili" + +#: ../plug-ins/common/video.c:45 +msgid "_Wide-striped" +msgstr "_Geniş-çizgili" + +#: ../plug-ins/common/video.c:46 +msgid "Lo_ng-staggered" +msgstr "U_zun-aşamalı" + +#: ../plug-ins/common/video.c:47 +msgid "_3x3" +msgstr "_3x3" + +#: ../plug-ins/common/video.c:48 +msgid "Larg_e 3x3" +msgstr "Büyü_k 3x3" + +#: ../plug-ins/common/video.c:49 +msgid "_Hex" +msgstr "_Hex" + +#: ../plug-ins/common/video.c:50 +msgid "_Dots" +msgstr "_Noktalar" + +#: ../plug-ins/common/video.c:1807 +msgid "Simulate distortion produced by a fuzzy or low-res monitor" +msgstr "" +"Bulanıklık ya da düşük çözünürlüklü monitör üretimi bozulma benzetimi yap" + +#: ../plug-ins/common/video.c:1814 +msgid "Vi_deo..." +msgstr "Vi_deo..." + +#: ../plug-ins/common/video.c:1886 ../plug-ins/common/video.c:2017 +msgid "Video" +msgstr "Video" + +#. frame for the radio buttons +#: ../plug-ins/common/video.c:2039 +msgid "Video Pattern" +msgstr "Video Deseni" + +#: ../plug-ins/common/video.c:2083 +msgid "_Additive" +msgstr "_Katkı" + +#: ../plug-ins/common/video.c:2093 +msgid "_Rotated" +msgstr "_Döndürülmüş" + +#: ../plug-ins/common/warp.c:233 +msgid "Twist or smear image in many different ways" +msgstr "Resmi bir çok farklı biçimde bük ya da lekele" + +#: ../plug-ins/common/warp.c:241 +msgid "_Warp..." +msgstr "_Eğrilik..." + +#: ../plug-ins/common/warp.c:376 +msgid "Warp" +msgstr "Sapma" + +#: ../plug-ins/common/warp.c:397 +msgid "Basic Options" +msgstr "Temel Seçenekler" + +#: ../plug-ins/common/warp.c:419 +msgid "Step size:" +msgstr "Adım boyutu:" + +#: ../plug-ins/common/warp.c:433 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:770 +#: ../plug-ins/ifs-compose/ifs-compose.c:1212 +msgid "Iterations:" +msgstr "Yinelemeler:" + +#. Displacement map menu +#: ../plug-ins/common/warp.c:442 +msgid "Displacement map:" +msgstr "Yer değiştirme eşlemi:" + +#. ======================================================================= +#. Displacement Type +#: ../plug-ins/common/warp.c:460 +msgid "On edges:" +msgstr "Kenarlar üzerinde:" + +#: ../plug-ins/common/warp.c:471 +msgid "Wrap" +msgstr "Sarma" + +#: ../plug-ins/common/warp.c:486 +msgid "Smear" +msgstr "Yayma" + +#: ../plug-ins/common/warp.c:501 ../plug-ins/file-fits/fits.c:1021 +#: ../plug-ins/flame/flame.c:1175 ../plug-ins/gfig/gfig-dialog.c:1460 +msgid "Black" +msgstr "Siyah" + +#: ../plug-ins/common/warp.c:516 +msgid "Foreground color" +msgstr "Önalan rengi" + +#. -------------------------------------------------------------------- +#. --------- The secondary table -------------------------- +#: ../plug-ins/common/warp.c:536 +msgid "Advanced Options" +msgstr "Gelişmiş Seçenekler" + +#: ../plug-ins/common/warp.c:552 +msgid "Dither size:" +msgstr "Titreme boyutu:" + +#: ../plug-ins/common/warp.c:565 +msgid "Rotation angle:" +msgstr "Döndürme açısı:" + +#: ../plug-ins/common/warp.c:578 +msgid "Substeps:" +msgstr "Alt basamaklar:" + +#. Magnitude map menu +#: ../plug-ins/common/warp.c:587 +msgid "Magnitude map:" +msgstr "Büyüklük eşlemi:" + +#: ../plug-ins/common/warp.c:609 +msgid "Use magnitude map" +msgstr "Büyüklük eşlemini kullan" + +#. -------------------------------------------------------------------- +#. --------- The "other" table -------------------------- +#: ../plug-ins/common/warp.c:622 +msgid "More Advanced Options" +msgstr "Daha Fazla Gelişmiş Seçenekler" + +#: ../plug-ins/common/warp.c:639 +msgid "Gradient scale:" +msgstr "Eğim ölçeği:" + +#: ../plug-ins/common/warp.c:658 +msgid "Gradient map selection menu" +msgstr "Renk geçişi eşlemi seçim menüsü" + +#: ../plug-ins/common/warp.c:668 +msgid "Vector mag:" +msgstr "Vector mag:" + +#. Angle +#: ../plug-ins/common/warp.c:683 ../plug-ins/ifs-compose/ifs-compose.c:568 +msgid "Angle:" +msgstr "Açı:" + +#: ../plug-ins/common/warp.c:702 +msgid "Fixed-direction-vector map selection menu" +msgstr "Sabit-yönlü-vektör eşlemi seçme menüsü" + +#. make sure layer is visible +#: ../plug-ins/common/warp.c:1178 +msgid "Smoothing X gradient" +msgstr "Yumuşatma X eğimi" + +#: ../plug-ins/common/warp.c:1181 +msgid "Smoothing Y gradient" +msgstr "Yumuşatma Y eğimi" + +#. calculate new X,Y Displacement image maps +#: ../plug-ins/common/warp.c:1231 +msgid "Finding XY gradient" +msgstr "XY düşümleri bulunuyor" + +#: ../plug-ins/common/warp.c:1256 +#, c-format +msgid "Flow step %d" +msgstr "Akış adımı %d" + +#: ../plug-ins/common/waves.c:120 +msgid "Distort the image with waves" +msgstr "Dalgalarla görüntüyü boz" + +#: ../plug-ins/common/waves.c:125 +msgid "_Waves..." +msgstr "_Dalgalar..." + +#: ../plug-ins/common/waves.c:248 ../plug-ins/flame/flame.c:763 +msgid "Waves" +msgstr "Dalgalar" + +#: ../plug-ins/common/waves.c:294 +msgid "_Reflective" +msgstr "_Yansıtıcı" + +#: ../plug-ins/common/waves.c:313 +msgid "_Amplitude:" +msgstr "_Genlik:" + +#: ../plug-ins/common/waves.c:325 +msgid "_Phase:" +msgstr "_Evre:" + +#: ../plug-ins/common/waves.c:337 +msgid "_Wavelength:" +msgstr "_Dalgaboyu:" + +#: ../plug-ins/common/waves.c:448 +msgid "Waving" +msgstr "Dalgalanma" + +#: ../plug-ins/common/web-browser.c:206 +#, c-format +msgid "" +"Web browser not specified.\n" +"Please specify a web browser using the Preferences dialog." +msgstr "" +"Web tarayıcısı belirtilmemiş.\n" +"Lütfen, Tercihler iletişim kutusunu kullanarak bir web tarayıcısı belirleyin." + +#: ../plug-ins/common/web-browser.c:228 +#, c-format +msgid "" +"Could not parse the web browser command specified in the Preferences " +"dialog:\n" +"\n" +"%s" +msgstr "" +"Tercihler iletişim kutusunda belirtilen web tarayıcısı komutu " +"ayrıştırılamadı:\n" +"\n" +"%s" + +#: ../plug-ins/common/web-browser.c:246 +#, c-format +msgid "" +"Could not execute the web browser specified in the Preferences dialog:\n" +"\n" +"%s" +msgstr "" +"Tercihler iletişim kutusunda belirtilen web tarayıcısı komutu yürütülemedi:\n" +"\n" +"%s" + +#: ../plug-ins/common/whirl-pinch.c:138 +msgid "Distort an image by whirling and pinching" +msgstr "Görüntüyü döndürerek ve kıstırarak boz" + +#: ../plug-ins/common/whirl-pinch.c:149 +msgid "W_hirl and Pinch..." +msgstr "Dö_nme ve Kıstırma..." + +#: ../plug-ins/common/whirl-pinch.c:193 +msgid "Region affected by plug-in is empty" +msgstr "Eklentiden etkilenen alan boş" + +#: ../plug-ins/common/whirl-pinch.c:341 +msgid "Whirling and pinching" +msgstr "Döndürme ve kıstırma" + +#: ../plug-ins/common/whirl-pinch.c:528 +msgid "Whirl and Pinch" +msgstr "Dönme ve kıstırma" + +#: ../plug-ins/common/whirl-pinch.c:565 +msgid "_Whirl angle:" +msgstr "_Dönme açısı" + +#: ../plug-ins/common/whirl-pinch.c:577 +msgid "_Pinch amount:" +msgstr "Kıstırma adedi" + +#: ../plug-ins/common/wind.c:175 +msgid "Smear image to give windblown effect" +msgstr "Esme etkisi vermek için resmi yay" + +#: ../plug-ins/common/wind.c:180 +msgid "Wi_nd..." +msgstr "Rüz_gar..." + +#: ../plug-ins/common/wind.c:315 +msgid "Rendering blast" +msgstr "Rüzgar taranıyor" + +#: ../plug-ins/common/wind.c:447 +msgid "Rendering wind" +msgstr "Esinti taranıyor" + +#: ../plug-ins/common/wind.c:879 +msgid "Wind" +msgstr "Esinti" + +#. ******************************************************** +#. radio buttons for choosing wind rendering algorithm +#. ***************************************************** +#: ../plug-ins/common/wind.c:921 +msgid "Style" +msgstr "Biçem" + +#: ../plug-ins/common/wind.c:925 +msgid "_Wind" +msgstr "_Esinti" + +#: ../plug-ins/common/wind.c:926 +msgid "_Blast" +msgstr "_Rüzgar" + +#: ../plug-ins/common/wind.c:949 +msgid "_Left" +msgstr "So_l" + +#: ../plug-ins/common/wind.c:950 +msgid "_Right" +msgstr "_Sağ" + +#. **************************************************** +#. radio buttons for choosing BOTH, LEADING, TRAILING +#. ************************************************** +#: ../plug-ins/common/wind.c:969 +msgid "Edge Affected" +msgstr "Kenar Etkilendi" + +#: ../plug-ins/common/wind.c:973 +msgid "L_eading" +msgstr "Yö_nlendiriliyor" + +#: ../plug-ins/common/wind.c:974 +msgid "Tr_ailing" +msgstr "Sü_rükleniyor" + +#: ../plug-ins/common/wind.c:975 +msgid "Bot_h" +msgstr "_Her ikisi" + +#: ../plug-ins/common/wind.c:1012 +msgid "Higher values restrict the effect to fewer areas of the image" +msgstr "Yüksek değerler resmin daha az alanındaki etkiyi kısıtlıyor" + +#: ../plug-ins/common/wind.c:1027 ../plug-ins/gimpressionist/orientmap.c:694 +msgid "_Strength:" +msgstr "_Keskinlik:" + +#: ../plug-ins/common/wind.c:1031 +msgid "Higher values increase the magnitude of the effect" +msgstr "Yüksek değerler etkinin büyüklüğünü arttırıyor" + +#: ../plug-ins/file-bmp/bmp-read.c:88 +msgid "Bad colormap" +msgstr "Hatalı renk haritası" + +#: ../plug-ins/file-bmp/bmp-read.c:172 ../plug-ins/file-bmp/bmp-read.c:182 +#: ../plug-ins/file-bmp/bmp-read.c:189 ../plug-ins/file-bmp/bmp-read.c:198 +#: ../plug-ins/file-bmp/bmp-read.c:213 ../plug-ins/file-bmp/bmp-read.c:418 +#: ../plug-ins/file-bmp/bmp-read.c:439 ../plug-ins/file-bmp/bmp-read.c:450 +#: ../plug-ins/file-bmp/bmp-read.c:458 ../plug-ins/file-bmp/bmp-read.c:466 +#: ../plug-ins/file-bmp/bmp-read.c:478 +#, c-format +msgid "'%s' is not a valid BMP file" +msgstr "'%s' geçerli bir BMP dosyası değil" + +#: ../plug-ins/file-bmp/bmp-read.c:227 ../plug-ins/file-bmp/bmp-read.c:254 +#: ../plug-ins/file-bmp/bmp-read.c:282 ../plug-ins/file-bmp/bmp-read.c:347 +#: ../plug-ins/file-bmp/bmp-read.c:397 +#, c-format +msgid "Error reading BMP file header from '%s'" +msgstr "'%s'den BMP dosya başlığı okuma hatası" + +#: ../plug-ins/file-bmp/bmp-read.c:590 +msgid "Unrecognized or invalid BMP compression format." +msgstr "Tanınmayan neya geçersiz BMP sıkıştırma biçimi." + +#: ../plug-ins/file-bmp/bmp-read.c:632 +msgid "Unsupported or invalid bitdepth." +msgstr "Desteklenmeyen veya geçersiz bit derinliği." + +#: ../plug-ins/file-bmp/bmp-read.c:820 ../plug-ins/file-bmp/bmp-read.c:861 +#: ../plug-ins/file-bmp/bmp-read.c:911 +msgid "The bitmap ends unexpectedly." +msgstr "Bit eşlemi beklenmedik bir şekilde sonlandırıldı." + +#: ../plug-ins/file-bmp/bmp-write.c:188 ../plug-ins/file-bmp/bmp-write.c:210 +msgid "Cannot save indexed image with transparency in BMP file format." +msgstr "Saydamlık içeriği ile BMP dosya biçimi kaydedilemez." + +#: ../plug-ins/file-bmp/bmp-write.c:190 ../plug-ins/file-bmp/bmp-write.c:212 +msgid "Alpha channel will be ignored." +msgstr "Görünür kanalı yoksayılacak." + +#: ../plug-ins/file-bmp/bmp-write.c:794 +msgid "Save as BMP" +msgstr "BMP olarak kaydet" + +#: ../plug-ins/file-bmp/bmp-write.c:817 +msgid "_Run-Length Encoded" +msgstr "_Çalışma-Süresi Kodlandı" + +#: ../plug-ins/file-bmp/bmp-write.c:829 ../plug-ins/file-jpeg/jpeg-save.c:900 +msgid "_Advanced Options" +msgstr "_Gelişmiş Seçenekler" + +#: ../plug-ins/file-bmp/bmp-write.c:844 +msgid "16 bits" +msgstr "16 bit" + +#: ../plug-ins/file-bmp/bmp-write.c:880 +msgid "24 bits" +msgstr "24 bit" + +#: ../plug-ins/file-bmp/bmp-write.c:897 +msgid "32 bits" +msgstr "32 bit" + +#: ../plug-ins/file-bmp/bmp.c:124 ../plug-ins/file-bmp/bmp.c:143 +msgid "Windows BMP image" +msgstr "Windows BMP görüntüsü" + +#: ../plug-ins/file-faxg3/faxg3.c:103 +msgid "G3 fax image" +msgstr "G3 faks görüntüsü" + +#: ../plug-ins/file-fits/fits.c:168 ../plug-ins/file-fits/fits.c:188 +msgid "Flexible Image Transport System" +msgstr "Esnek Görüntü Aktarım Sistemi" + +#: ../plug-ins/file-fits/fits.c:368 +msgid "Error during open of FITS file" +msgstr "FITS dosyası açılırken hata oluştu" + +#: ../plug-ins/file-fits/fits.c:374 +msgid "FITS file keeps no displayable images" +msgstr "FITS dosyası görüntülenemez resimler barındırıyor" + +#: ../plug-ins/file-fits/fits.c:455 +msgid "FITS save cannot handle images with alpha channels" +msgstr "FITS görünür kanallı resimleri kaydedemez" + +#: ../plug-ins/file-fits/fits.c:993 +msgid "Load FITS File" +msgstr "FITS Dosyası Yükleme" + +#: ../plug-ins/file-fits/fits.c:1017 +msgid "Replacement for undefined pixels" +msgstr "Tanımlanmamış benekler için değiştirme" + +#: ../plug-ins/file-fits/fits.c:1022 ../plug-ins/gfig/gfig-dialog.c:1286 +#: ../plug-ins/gfig/gfig-dialog.c:1461 +msgid "White" +msgstr "Beyaz" + +#: ../plug-ins/file-fits/fits.c:1029 +msgid "Pixel value scaling" +msgstr "Benek değer ölçeklemesi" + +#: ../plug-ins/file-fits/fits.c:1034 +msgid "By DATAMIN/DATAMAX" +msgstr "DATAMIN/DATAMAX tarafından" + +#: ../plug-ins/file-fits/fits.c:1041 +msgid "Image Composing" +msgstr "Görüntü Oluşturma" + +#: ../plug-ins/file-fli/fli-gimp.c:166 ../plug-ins/file-fli/fli-gimp.c:186 +msgid "AutoDesk FLIC animation" +msgstr "AutoDesk FLIC canlandırması" + +#: ../plug-ins/file-fli/fli-gimp.c:562 +#, c-format +msgid "Frame (%i)" +msgstr "Çerçeve (%i)" + +#: ../plug-ins/file-fli/fli-gimp.c:714 +msgid "Sorry, I can save only INDEXED and GRAY images." +msgstr "Üzgünüm, sadece SIRALANMIŞ ve GRİ görüntüleri kaydedebilirim." + +#: ../plug-ins/file-fli/fli-gimp.c:846 +msgid "GFLI 1.3 - Load framestack" +msgstr "GFLI 1.3 - Çerçeve kümesini yükle" + +#: ../plug-ins/file-fli/fli-gimp.c:914 +msgid "GFLI 1.3 - Save framestack" +msgstr "GFLI 1.3 - Çerçeve kümesini kaydet" + +#: ../plug-ins/file-ico/ico-dialog.c:54 +msgid "Save as Windows Icon" +msgstr "Windows Simgesi olarak Kaydet" + +#: ../plug-ins/file-ico/ico-dialog.c:86 +msgid "Icon Details" +msgstr "Simge Detayları" + +#: ../plug-ins/file-ico/ico-dialog.c:106 +msgid "" +"Large icons and compression are not supported by all programs. Older " +"applications may not open this file correctly." +msgstr "" +"Geniş simgeler ve sıkıştırma tüm programlar tarafından desteklenmez. Daha " +"eski uygulamalar bu dosyayı düzgün bir şekilde açamayabilir." + +#: ../plug-ins/file-ico/ico-dialog.c:178 +msgid "1 bpp, 1-bit alpha, 2-slot palette" +msgstr "1 bpp, 1-bit görünür, 2-dilimli palet" + +#: ../plug-ins/file-ico/ico-dialog.c:179 +msgid "4 bpp, 1-bit alpha, 16-slot palette" +msgstr "4 bpp, 1-bit görünür, 16-dilimli palet" + +#: ../plug-ins/file-ico/ico-dialog.c:180 +msgid "8 bpp, 1-bit alpha, 256-slot palette" +msgstr "8 bpp, 1-bit görünür, 256-dilimli palet" + +#: ../plug-ins/file-ico/ico-dialog.c:181 +msgid "24 bpp, 1-bit alpha, no palette" +msgstr "24 bpp, 1-bit görünür, palet yok" + +#: ../plug-ins/file-ico/ico-dialog.c:182 +msgid "32 bpp, 8-bit alpha, no palette" +msgstr "32 bpp, 8-bit görünür, palet yok" + +#: ../plug-ins/file-ico/ico-dialog.c:196 +msgid "Compressed (PNG)" +msgstr "Sıkıştırılmış (PNG)" + +#. read successfully. add to image +#: ../plug-ins/file-ico/ico-load.c:624 +#, c-format +msgid "Icon #%i" +msgstr "Simge #%i" + +#: ../plug-ins/file-ico/ico-load.c:733 ../plug-ins/file-jpeg/jpeg-load.c:633 +#: ../plug-ins/file-psd/psd-thumb-load.c:85 +#, c-format +msgid "Opening thumbnail for '%s'" +msgstr "'%s' için önizleme açılıyor" + +#: ../plug-ins/file-ico/ico.c:103 ../plug-ins/file-ico/ico.c:137 +msgid "Microsoft Windows icon" +msgstr "Microsoft Windows simgesi" + +#: ../plug-ins/file-jpeg/jpeg-exif.c:293 +msgid "Rotate Image?" +msgstr "Görüntü Döndürülsün Mü?" + +#: ../plug-ins/file-jpeg/jpeg-exif.c:296 +msgid "_Keep Orientation" +msgstr "_Yönelimi Sakla" + +#: ../plug-ins/file-jpeg/jpeg-exif.c:352 +msgid "According to the EXIF data, this image is rotated." +msgstr "EXIF verisine göre bu resim döndürüldü." + +#: ../plug-ins/file-jpeg/jpeg-exif.c:367 +msgid "Would you like GIMP to rotate it into the standard orientation?" +msgstr "GIMP'in standart bir yönlenme ile döndürmesini ister misiniz?" + +#: ../plug-ins/file-jpeg/jpeg-load.c:241 +msgid "JPEG preview" +msgstr "JPEG önizleme" + +#: ../plug-ins/file-jpeg/jpeg-save.c:200 +#, c-format +msgid "File size: %02.01f kB" +msgstr "Dosya boyutu: %02.01f kB" + +#: ../plug-ins/file-jpeg/jpeg-save.c:682 +msgid "Calculating file size..." +msgstr "Dosya boyutu hesaplanıyor..." + +#: ../plug-ins/file-jpeg/jpeg-save.c:774 ../plug-ins/file-jpeg/jpeg-save.c:876 +msgid "File size: unknown" +msgstr "Dosya boyutu: bilinmiyor" + +#: ../plug-ins/file-jpeg/jpeg-save.c:827 +msgid "Save as JPEG" +msgstr "JPEG olarak kaydet" + +#: ../plug-ins/file-jpeg/jpeg-save.c:862 +msgid "_Quality:" +msgstr "_Kalite:" + +#: ../plug-ins/file-jpeg/jpeg-save.c:866 +msgid "JPEG quality parameter" +msgstr "JPEG kalite parametresi" + +#: ../plug-ins/file-jpeg/jpeg-save.c:885 +msgid "Enable preview to obtain the file size." +msgstr "Dosya boyutunu elde etmek için önizlemeye olanak tanı." + +#: ../plug-ins/file-jpeg/jpeg-save.c:888 +msgid "Sho_w preview in image window" +msgstr "Önizlemeyi görüntü penceresinde göste_r" + +#: ../plug-ins/file-jpeg/jpeg-save.c:929 +msgid "S_moothing:" +msgstr "D_üzgünleştirme:" + +#: ../plug-ins/file-jpeg/jpeg-save.c:942 +msgid "Frequency (rows):" +msgstr "Sıklık (satırlar):" + +#: ../plug-ins/file-jpeg/jpeg-save.c:958 +msgid "Use _restart markers" +msgstr "_Yeniden başlatma işaretçilerini kullan" + +#: ../plug-ins/file-jpeg/jpeg-save.c:974 +msgid "_Optimize" +msgstr "_Eniyile" + +#: ../plug-ins/file-jpeg/jpeg-save.c:988 +msgid "_Progressive" +msgstr "_İlerlemeli" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1004 +msgid "Save _EXIF data" +msgstr "_EXIF verisini kaydet" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1021 +msgid "Save _thumbnail" +msgstr "Ö_nizlemeyi kaydet" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1038 +msgid "Save _XMP data" +msgstr "_XMP verisini kaydet" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1053 +msgid "_Use quality settings from original image" +msgstr "Kalite ayarlarını özgün görüntüden _kullan" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1059 +msgid "" +"If the original image was loaded from a JPEG file using non-standard quality " +"settings (quantization tables), enable this option to get almost the same " +"quality and file size." +msgstr "" +"Eğer özgün resim standart olmayan kalite ayarları (niceleme tabloları) " +"kullanan bir JPEG dosyasından yüklenmişse; bu seçeneği, aynı kaliteye ve " +"dosya boyutuna yakın sonuçlar elde etmek için etkinleştirin." + +#. Subsampling +#: ../plug-ins/file-jpeg/jpeg-save.c:1083 +msgid "Su_bsampling:" +msgstr "Al_t Örnekleme" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1090 +msgid "1x1,1x1,1x1 (best quality)" +msgstr "1x1,1x1,1x1 (en iyi kalite)" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1092 +msgid "2x1,1x1,1x1 (4:2:2)" +msgstr "2x1,1x1,1x1 (4:2:2)" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1094 +msgid "1x2,1x1,1x1" +msgstr "1x2,1x1,1x1" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1096 +msgid "2x2,1x1,1x1 (smallest file)" +msgstr "2x2,1x1,1x1 (en küçük dosya)" + +#. DCT method +#: ../plug-ins/file-jpeg/jpeg-save.c:1126 +msgid "_DCT method:" +msgstr "_DCT yöntemi:" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1132 +msgid "Fast Integer" +msgstr "Sabit Tam Sayı" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1133 +msgid "Integer" +msgstr "Tamsayı" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1134 +msgid "Floating-Point" +msgstr "Yüzen-Nokta" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1150 +msgid "Comment" +msgstr "Açıklama" + +#: ../plug-ins/file-jpeg/jpeg-save.c:1195 +msgid "Sa_ve Defaults" +msgstr "Varsayılanları Ka_ydet" + +#: ../plug-ins/file-jpeg/jpeg.c:137 ../plug-ins/file-jpeg/jpeg.c:175 +msgid "JPEG image" +msgstr "JPEG görüntüsü" + +#: ../plug-ins/file-jpeg/jpeg.c:301 +msgid "Export Preview" +msgstr "Önizlemeyi dışa aktar" + +#: ../plug-ins/file-psd/psd-load.c:215 +#: ../plug-ins/file-psd/psd-thumb-load.c:131 +#, c-format +msgid "Error loading PSD file: %s" +msgstr "PSD dosyası yükleme hatası: %s" + +#: ../plug-ins/file-psd/psd-load.c:270 +#, c-format +msgid "Not a valid photoshop document file" +msgstr "Geçersiz photoshop belge dosyası" + +#: ../plug-ins/file-psd/psd-load.c:277 +#, c-format +msgid "Unsupported file format version: %d" +msgstr "Desteklenmeyen dosya biçim sürümü: %d" + +#: ../plug-ins/file-psd/psd-load.c:284 +#, c-format +msgid "Too many channels in file: %d" +msgstr "Dosyada çok fazla kanal var: %d" + +#: ../plug-ins/file-psd/psd-load.c:311 +#, c-format +msgid "Unsupported or invalid image size: %dx%d" +msgstr "Desteklenmeyen yada geçersiz görüntü boyutu: %dx%d" + +#: ../plug-ins/file-psd/psd-load.c:323 +#, c-format +msgid "Unsupported color mode: %s" +msgstr "Desteklenmeyen renk modu: %s" + +#: ../plug-ins/file-psd/psd-load.c:350 +#, c-format +msgid "Unsupported bit depth: %d" +msgstr "Desteklenmeyen bit derinliği: %d" + +#: ../plug-ins/file-psd/psd-load.c:384 ../plug-ins/file-psd/psd-load.c:394 +#: ../plug-ins/file-psd/psd-load.c:625 ../plug-ins/file-psd/psd-load.c:834 +#, c-format +msgid "The file is corrupt!" +msgstr "Bozuk dosya!" + +#: ../plug-ins/file-psd/psd-load.c:554 +#, c-format +msgid "Too many channels in layer: %d" +msgstr "%d katmanında çok fazla kanal var" + +#: ../plug-ins/file-psd/psd-load.c:562 +#, c-format +msgid "Unsupported or invalid layer height: %d" +msgstr "Desteklenmeyen veya geçersiz katman yüksekliği: %d" + +#: ../plug-ins/file-psd/psd-load.c:570 +#, c-format +msgid "Unsupported or invalid layer width: %d" +msgstr "Desteklenmeyen veya geçersiz katman genişliği: %d" + +#: ../plug-ins/file-psd/psd-load.c:579 +#, c-format +msgid "Unsupported or invalid layer size: %dx%d" +msgstr "Desteklenmeyen ya da geçersiz katman boyutu: %dx%d" + +#: ../plug-ins/file-psd/psd-load.c:763 +#, c-format +msgid "Unsupported or invalid layer mask height: %d" +msgstr "Desteklenmeyen veya geçersiz katman maskesi yüksekliği: %d" + +#: ../plug-ins/file-psd/psd-load.c:771 +#, c-format +msgid "Unsupported or invalid layer mask width: %d" +msgstr "Desteklenmeyen veya geçersiz katman maskesi genişliği: %d" + +#: ../plug-ins/file-psd/psd-load.c:780 +#, c-format +msgid "Unsupported or invalid layer mask size: %dx%d" +msgstr "Desteklenmeyen ya da geçersiz katman maskesi boyutu: %dx%d" + +#: ../plug-ins/file-psd/psd-load.c:1202 ../plug-ins/file-psd/psd-load.c:1551 +#, c-format +msgid "Unsupported compression mode: %d" +msgstr "Desteklenmeyen sıkıştırma biçimi. %d" + +#: ../plug-ins/file-psd/psd-load.c:1644 +msgid "Extra" +msgstr "Ek" + +#: ../plug-ins/file-psd/psd-load.c:1819 +#, c-format +msgid "Unsupported or invalid channel size" +msgstr "Desteklenmeyen veya geçersiz kanal boyutu" + +#: ../plug-ins/file-psd/psd-save.c:228 ../plug-ins/file-psd/psd.c:114 +#: ../plug-ins/file-psd/psd.c:153 +msgid "Photoshop image" +msgstr "Photoshop görüntüsü" + +#: ../plug-ins/file-psd/psd-save.c:371 +#, c-format +msgid "" +"Unable to save layer with mode '%s'. Either the PSD file format or the save " +"plug-in does not support that, using normal mode instead." +msgstr "" +"Katman '%s' biçiminde kaydedilemedi. Ayrıca PSD dosya biçimi ya da kaydetme " +"eklentisi bunu desteklemiyor, bunun yerine normal biçim kullanılıyor." + +#: ../plug-ins/file-psd/psd-save.c:631 +msgid "Error: Can't convert GIMP base imagetype to PSD mode" +msgstr "Hata: GIMP temel resim türü PSD biçimine dönüştürülemiyor." + +#: ../plug-ins/file-psd/psd-save.c:1605 +#, c-format +msgid "" +"Unable to save '%s'. The PSD file format does not support images that are " +"more than 30,000 pixels wide or tall." +msgstr "" +"'%s' Kaydedilemedi. PSD dosya biçimi 30,000 benek boyu ya da genişliğinden " +"büyük resimleri desteklemiyor." + +#: ../plug-ins/file-psd/psd-save.c:1620 +#, c-format +msgid "" +"Unable to save '%s'. The PSD file format does not support images with " +"layers that are more than 30,000 pixels wide or tall." +msgstr "" +"'%s' Kaydedilemedi. PSD dosya biçimi 30,000 benek boyu ya da genişliğinden " +"büyük katmanları olan resimleri desteklemiyor." + +#: ../plug-ins/file-psd/psd-util.c:51 +msgid "Unexpected end of file" +msgstr "Beklenmedik dosya sonlandırması" + +#: ../plug-ins/file-sgi/sgi.c:121 ../plug-ins/file-sgi/sgi.c:141 +msgid "Silicon Graphics IRIS image" +msgstr "Silicon Graphics IRIS görüntüsü" + +#: ../plug-ins/file-sgi/sgi.c:325 +#, c-format +msgid "Could not open '%s' for reading." +msgstr "'%s' dosyası okumak için açılamadı." + +#: ../plug-ins/file-sgi/sgi.c:341 +#, c-format +msgid "Invalid width: %hu" +msgstr "Geçersiz genişlik: %hu" + +#: ../plug-ins/file-sgi/sgi.c:348 +#, c-format +msgid "Invalid height: %hu" +msgstr "Geçersiz yükseklik: %hu" + +#: ../plug-ins/file-sgi/sgi.c:355 +#, c-format +msgid "Invalid number of channels: %hu" +msgstr "Geçersiz kanal sayısı: %hu" + +#: ../plug-ins/file-sgi/sgi.c:569 +#, c-format +msgid "Could not open '%s' for writing." +msgstr "`%s' yazmak için açılamadı." + +#: ../plug-ins/file-sgi/sgi.c:649 +msgid "Save as SGI" +msgstr "SGI olarak kaydet" + +#: ../plug-ins/file-sgi/sgi.c:665 +msgid "Compression type" +msgstr "Sıkıştırma türü" + +#: ../plug-ins/file-sgi/sgi.c:669 +msgid "No compression" +msgstr "Sıkıştırma yok" + +#: ../plug-ins/file-sgi/sgi.c:671 +msgid "RLE compression" +msgstr "RLE sıkıştırması" + +#: ../plug-ins/file-sgi/sgi.c:673 +msgid "" +"Aggressive RLE\n" +"(not supported by SGI)" +msgstr "" +"Agresif RLE\n" +"(SGI tarafından desteklenmiyor)" + +#: ../plug-ins/file-uri/gimpmountoperation.c:448 +msgid "Co_nnect" +msgstr "_Bağlan" + +#: ../plug-ins/file-uri/gimpmountoperation.c:492 +msgid "Connect _anonymously" +msgstr "_Kimliğini belirtmeden bağlan" + +#: ../plug-ins/file-uri/gimpmountoperation.c:501 +msgid "Connect as u_ser:" +msgstr "_Kullanıcı olarak bağlan:" + +#: ../plug-ins/file-uri/gimpmountoperation.c:538 +msgid "_Username:" +msgstr "_Kullanıcı Adı:" + +#: ../plug-ins/file-uri/gimpmountoperation.c:542 +msgid "_Domain:" +msgstr "_Etki Alanı:" + +#: ../plug-ins/file-uri/gimpmountoperation.c:547 +msgid "_Password:" +msgstr "_Parola:" + +#: ../plug-ins/file-uri/gimpmountoperation.c:562 +msgid "_Forget password immediately" +msgstr "_Parolayı hemen unut" + +#: ../plug-ins/file-uri/gimpmountoperation.c:570 +msgid "_Remember password until you logout" +msgstr "Çıkış yapana kadar _parolayı hatırla" + +#: ../plug-ins/file-uri/gimpmountoperation.c:578 +msgid "_Remember forever" +msgstr "_Her zaman hatırla" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:163 +#: ../plug-ins/file-uri/uri-backend-libcurl.c:129 +#: ../plug-ins/file-uri/uri-backend-wget.c:303 +#, c-format +msgid "Downloading %s of image data" +msgstr "Görüntü verisinin %s'i indiriliyor" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:164 +#: ../plug-ins/file-uri/uri-backend-gvfs.c:226 +#: ../plug-ins/file-uri/uri-backend-libcurl.c:136 +#: ../plug-ins/file-uri/uri-backend-wget.c:346 +#, c-format +msgid "Downloaded %s of image data" +msgstr "Görüntü verisinin %s'i indirildi" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:182 +#, c-format +msgid "Uploading %s of image data" +msgstr "Görüntü verisinin %s'i yükleniyor" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:183 +#: ../plug-ins/file-uri/uri-backend-gvfs.c:230 +#, c-format +msgid "Uploaded %s of image data" +msgstr "Görüntü verisinin %s'i yüklendi" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:253 +#: ../plug-ins/file-uri/uri-backend-gvfs.c:297 +#: ../plug-ins/file-uri/uri-backend-libcurl.c:158 +#: ../plug-ins/file-uri/uri-backend-wget.c:195 +msgid "Connecting to server" +msgstr "Sunucuya bağlanılıyor" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:312 +#, c-format +msgid "Failed to read %s from '%s': %s" +msgstr "'%s' dosyasından %s okuma başarısız: %s" + +#: ../plug-ins/file-uri/uri-backend-gnomevfs.c:361 +#, c-format +msgid "Failed to write %s to '%s': %s" +msgstr "'%s': %s üzerine %s yazılamadı." + +#: ../plug-ins/file-uri/uri-backend-gvfs.c:200 +#, c-format +msgid "Downloading image (%s of %s)" +msgstr "Resim indiriliyor (%s de %s)" + +#: ../plug-ins/file-uri/uri-backend-gvfs.c:204 +#, c-format +msgid "Uploading image (%s of %s)" +msgstr "Resim yükleniyor (%s de %s)" + +#: ../plug-ins/file-uri/uri-backend-libcurl.c:60 +msgid "Could not initialize libcurl" +msgstr "Libcurl başlatılamadı" + +#: ../plug-ins/file-uri/uri-backend-libcurl.c:202 +#, c-format +msgid "Opening '%s' for reading resulted in HTTP response code: %d" +msgstr "Neticelenen HTTP yanıt kodunu okumak için '%s' açılıyor: %d" + +#: ../plug-ins/file-uri/uri-backend-wget.c:162 +#: ../plug-ins/file-uri/uri-backend-wget.c:182 +#: ../plug-ins/file-uri/uri-backend-wget.c:201 +#: ../plug-ins/file-uri/uri-backend-wget.c:224 +#: ../plug-ins/file-uri/uri-backend-wget.c:253 +#, c-format +msgid "wget exited abnormally on URI '%s'" +msgstr "wget beklenmedik biçimde kapandı. URI '%s'" + +#. The third line is "Connecting to..." +#: ../plug-ins/file-uri/uri-backend-wget.c:190 +#, c-format +msgid "(timeout is %d second)" +msgid_plural "(timeout is %d seconds)" +msgstr[0] "(zaman aşımı %d saniye)" + +#. The fourth line is either the network request or an error +#: ../plug-ins/file-uri/uri-backend-wget.c:219 +msgid "Opening URI" +msgstr "URI açılıyor" + +#: ../plug-ins/file-uri/uri-backend-wget.c:230 +#: ../plug-ins/file-uri/uri-backend-wget.c:263 +#, c-format +msgid "A network error occurred: %s" +msgstr "Bir ağ hatası meydana geldi: %s" + +#: ../plug-ins/file-uri/uri-backend-wget.c:308 +msgid "Downloading unknown amount of image data" +msgstr "Görüntü verisinin bilinmeyen miktarı indiriliyor" + +#: ../plug-ins/file-uri/uri.c:119 ../plug-ins/file-uri/uri.c:140 +msgid "URI" +msgstr "Kaynak Tanımlayıcı" + +#: ../plug-ins/file-xjt/xjt.c:488 ../plug-ins/file-xjt/xjt.c:506 +msgid "GIMP compressed XJT image" +msgstr "GIMP sıkıştırmalı XJT görüntüsü" + +#: ../plug-ins/file-xjt/xjt.c:736 +#, c-format +msgid "XJT file contains unknown layermode %d" +msgstr "XJT dosyası bilinmeyen katmankipi %d içeriyor" + +#: ../plug-ins/file-xjt/xjt.c:773 +#, c-format +msgid "Warning: unsupported layermode %d saved to XJT" +msgstr "Uyarı: desteklenmeyen katmankipi %d XJT'ye kaydedildi" + +#: ../plug-ins/file-xjt/xjt.c:789 +#, c-format +msgid "XJT file contains unknown pathtype %d" +msgstr "XJT dosyası bilinmeyen yol biçimi içeriyor %d" + +#: ../plug-ins/file-xjt/xjt.c:805 +#, c-format +msgid "Warning: unsupported pathtype %d saved to XJT" +msgstr "Uyarı: desteklenmeyen yol biçimi %d kaydedildi XJT dosyasına" + +#: ../plug-ins/file-xjt/xjt.c:824 +#, c-format +msgid "XJT file contains unknown unittype %d" +msgstr "XJT dosyası bilinmeyen birim biçimi içeriyor %d" + +#: ../plug-ins/file-xjt/xjt.c:845 +#, c-format +msgid "Warning: unsupported unittype %d saved to XJT" +msgstr "Uyarı: bilinmeyen birim biçimi %d kaydedildi XJT dosyasına" + +#: ../plug-ins/file-xjt/xjt.c:866 +msgid "Save as XJT" +msgstr "XJT olarak kaydet" + +#: ../plug-ins/file-xjt/xjt.c:889 +msgid "Optimize" +msgstr "Eniyile" + +#: ../plug-ins/file-xjt/xjt.c:899 +msgid "Clear transparent" +msgstr "Saydamlığı temizle" + +#: ../plug-ins/file-xjt/xjt.c:911 +msgid "Quality:" +msgstr "Kalite:" + +#: ../plug-ins/file-xjt/xjt.c:920 +msgid "Smoothing:" +msgstr "Yumuşatma:" + +#: ../plug-ins/file-xjt/xjt.c:1719 ../plug-ins/file-xjt/xjt.c:3373 +#, c-format +msgid "Could not create working folder '%s': %s" +msgstr "'%s' çalışan dizini oluşturulamadı: %s" + +#: ../plug-ins/file-xjt/xjt.c:3239 +#, c-format +msgid "Error: Could not read XJT property file '%s'." +msgstr "Hata: XJT nitelik dosyası '%s' okunamadı." + +#: ../plug-ins/file-xjt/xjt.c:3246 +#, c-format +msgid "Error: XJT property file '%s' is empty." +msgstr "Hata: XJT özellik dosyası '%s' boş." + +#: ../plug-ins/flame/flame.c:129 +msgid "Create cosmic recursive fractal flames" +msgstr "Kozmik tekrarlamalı kesirli alevler oluştur" + +#: ../plug-ins/flame/flame.c:134 +msgid "_Flame..." +msgstr "_Alev..." + +#: ../plug-ins/flame/flame.c:227 +msgid "Drawing flame" +msgstr "Alev çizme" + +#: ../plug-ins/flame/flame.c:319 +msgid "Flame works only on RGB drawables." +msgstr "Alev sadece RGB çizilebilirliği üzerinde çalışır." + +#: ../plug-ins/flame/flame.c:402 +#, c-format +msgid "'%s' is not a regular file" +msgstr "'%s' normal bir dosya değil." + +#: ../plug-ins/flame/flame.c:646 +msgid "Edit Flame" +msgstr "Alevi düzenle" + +#: ../plug-ins/flame/flame.c:669 +msgid "Directions" +msgstr "Yönler" + +#: ../plug-ins/flame/flame.c:705 +msgid "Controls" +msgstr "Denetimler" + +#: ../plug-ins/flame/flame.c:719 +msgid "_Speed:" +msgstr "_Hız:" + +#: ../plug-ins/flame/flame.c:736 +msgid "_Randomize" +msgstr "_Rastgele" + +#: ../plug-ins/flame/flame.c:746 +msgid "Same" +msgstr "Benzer" + +#: ../plug-ins/flame/flame.c:747 ../plug-ins/gimpressionist/orientation.c:164 +#: ../plug-ins/gimpressionist/size.c:167 +msgid "Random" +msgstr "Rastgele" + +#: ../plug-ins/flame/flame.c:751 +msgid "Swirl" +msgstr "Girdap" + +#: ../plug-ins/flame/flame.c:752 +msgid "Horseshoe" +msgstr "Nal" + +#: ../plug-ins/flame/flame.c:753 ../plug-ins/gfig/gfig-dialog.c:1442 +msgid "Polar" +msgstr "Kutupsal" + +#: ../plug-ins/flame/flame.c:754 +msgid "Bent" +msgstr "Eğri" + +#: ../plug-ins/flame/flame.c:755 +msgid "Handkerchief" +msgstr "Mendil" + +#: ../plug-ins/flame/flame.c:756 +msgid "Heart" +msgstr "Kalp" + +#: ../plug-ins/flame/flame.c:757 +msgid "Disc" +msgstr "Disk" + +#: ../plug-ins/flame/flame.c:759 +msgid "Hyperbolic" +msgstr "Hiperbolik" + +#: ../plug-ins/flame/flame.c:761 +msgid "Ex" +msgstr "Eski" + +#: ../plug-ins/flame/flame.c:762 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:844 +msgid "Julia" +msgstr "Julia" + +#: ../plug-ins/flame/flame.c:764 +msgid "Fisheye" +msgstr "Balık gözü" + +#: ../plug-ins/flame/flame.c:765 +msgid "Popcorn" +msgstr "Patlamış mısır" + +#: ../plug-ins/flame/flame.c:766 +msgid "Exponential" +msgstr "Üstel" + +#: ../plug-ins/flame/flame.c:767 +msgid "Power" +msgstr "Güç" + +#: ../plug-ins/flame/flame.c:768 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:997 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1038 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1079 +msgid "Cosine" +msgstr "Kosinüs" + +#: ../plug-ins/flame/flame.c:769 +msgid "Rings" +msgstr "Çemberler" + +#: ../plug-ins/flame/flame.c:770 +msgid "Fan" +msgstr "Fan" + +#: ../plug-ins/flame/flame.c:771 +msgid "Eyefish" +msgstr "Balık gözü" + +#: ../plug-ins/flame/flame.c:772 +msgid "Bubble" +msgstr "Kabarcık" + +#: ../plug-ins/flame/flame.c:773 ../plug-ins/map-object/map-object-ui.c:491 +msgid "Cylinder" +msgstr "Silindir" + +#: ../plug-ins/flame/flame.c:775 +msgid "Blur" +msgstr "Bulanıklaştır" + +#: ../plug-ins/flame/flame.c:776 +msgid "Gaussian" +msgstr "Gaussian" + +#: ../plug-ins/flame/flame.c:789 +msgid "_Variation:" +msgstr "_Çeşitlilik:" + +#: ../plug-ins/flame/flame.c:811 +msgid "Load Flame" +msgstr "Alev Yükle" + +#: ../plug-ins/flame/flame.c:826 +msgid "Save Flame" +msgstr "Alevi Kaydet" + +#: ../plug-ins/flame/flame.c:968 +msgid "Flame" +msgstr "Alev" + +#: ../plug-ins/flame/flame.c:1069 +msgid "_Rendering" +msgstr "_Taranıyor" + +#: ../plug-ins/flame/flame.c:1095 +msgid "Co_ntrast:" +msgstr "Ka_rşıtlık:" + +#: ../plug-ins/flame/flame.c:1109 +msgid "_Gamma:" +msgstr "_Gama:" + +#: ../plug-ins/flame/flame.c:1123 +msgid "Sample _density:" +msgstr "Örnek _yoğunluk:" + +#: ../plug-ins/flame/flame.c:1134 +msgid "Spa_tial oversample:" +msgstr "U_zaysal üstünörnekleme:" + +#: ../plug-ins/flame/flame.c:1145 +msgid "Spatial _filter radius:" +msgstr "Uzaysal _süzgeç yarıçapı:" + +#: ../plug-ins/flame/flame.c:1164 +msgid "Color_map:" +msgstr "_Renk haritası:" + +#: ../plug-ins/flame/flame.c:1206 +msgid "Custom gradient" +msgstr "Özel renk geçişi" + +#: ../plug-ins/flame/flame.c:1232 +msgid "C_amera" +msgstr "K_amera" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:547 +#: ../plug-ins/gfig/gfig-dialog.c:274 ../plug-ins/gimpressionist/utils.c:143 +#: ../plug-ins/gradient-flare/gradient-flare.c:881 +#, c-format +msgid "" +"No %s in gimprc:\n" +"You need to add an entry like\n" +"(%s \"%s\")\n" +"to your %s file." +msgstr "" +"gimprc içinde %s yok:\n" +"Şöyle bir giriş eklemelisiniz\n" +"(%s \"%s\")\n" +"%s dosyanıza." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:638 +msgid "Realtime preview" +msgstr "Gerçek zamanlı önizleme" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:646 +msgid "If enabled the preview will be redrawn automatically" +msgstr "Eğer etkinleştirilirse önizleme otomatik olarak yeniden çizilecek." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:649 +msgid "R_edraw preview" +msgstr "Önizlemeyi _yeniden çiz" + +#. Zoom Options +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:657 +msgid "Zoom" +msgstr "Yakınlaştır" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:693 +msgid "Undo last zoom change" +msgstr "Son yakınlaştırma değişimini geri al" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:703 +msgid "Redo last zoom change" +msgstr "Son yakınlaştırma değişimini ileri al" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:718 +msgid "_Parameters" +msgstr "_Parametreler" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:721 +msgid "Fractal Parameters" +msgstr "Kesirli Katsayılar" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:734 +#: ../plug-ins/map-object/map-object-ui.c:1099 +msgid "Left:" +msgstr "Sol:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:743 +#: ../plug-ins/map-object/map-object-ui.c:1099 +msgid "Right:" +msgstr "Sağ:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:752 +#: ../plug-ins/map-object/map-object-ui.c:1098 +msgid "Top:" +msgstr "Tepe:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:761 +#: ../plug-ins/map-object/map-object-ui.c:1098 +msgid "Bottom:" +msgstr "Alt:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:773 +msgid "" +"The higher the number of iterations, the more details will be calculated" +msgstr "Yüksek tekrarlamların sayısı, daha fazla detay hesaplanacak." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:781 +msgid "CX:" +msgstr "CX:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:784 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:794 +msgid "Changes aspect of fractal" +msgstr "Kesir açısını değiştirir" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:791 +msgid "CY:" +msgstr "CY:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:809 +msgid "Load a fractal from file" +msgstr "Dosyadan kesir yükler" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:817 +msgid "Reset parameters to default values" +msgstr "Parametreleri temel değerlere ayarla." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:826 +msgid "Save active fractal to file" +msgstr "Aktif kesiri dosyaya kaydet" + +#. Fractal type toggle box +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:829 +msgid "Fractal Type" +msgstr "Kesir Türü" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:842 +msgid "Mandelbrot" +msgstr "Mandelbrot" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:846 +msgid "Barnsley 1" +msgstr "Barnsley 1" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:848 +msgid "Barnsley 2" +msgstr "Barnsley 2" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:850 +msgid "Barnsley 3" +msgstr "Barnsley 3" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:852 +msgid "Spider" +msgstr "Örümcek" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:854 +msgid "Man'o'war" +msgstr "Man'o'war" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:856 +msgid "Lambda" +msgstr "Lamda" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:858 +msgid "Sierpinski" +msgstr "Sierpinski" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:920 +msgid "Number of colors:" +msgstr "Renk sayısı:" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:923 +msgid "Change the number of colors in the mapping" +msgstr "Eşleme içindeki renk sayısını değiştir." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:930 +msgid "Use loglog smoothing" +msgstr "Günlük kayıdı düzgünleştirmesi kullan" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:937 +msgid "Use log log smoothing to eliminate \"banding\" in the result" +msgstr "" +"Sonuçlardaki \"şeritlemeyi\" kaldırmak için günlük kayıdı düzgünleştirmesini " +"kullan" + +#. Color Density frame +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:941 +msgid "Color Density" +msgstr "Renk Yoğunluğu" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:956 +msgid "Change the intensity of the red channel" +msgstr "Kırmızı kanalı yoğunluğunu değiştir" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:966 +msgid "Change the intensity of the green channel" +msgstr "Yeşil kanalı yoğunluğunu değiştir" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:976 +msgid "Change the intensity of the blue channel" +msgstr "Mavi kanalı yoğunluğunu değiştir" + +#. Color Function frame +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:982 +msgid "Color Function" +msgstr "Renk İşlevi" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:995 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1036 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1077 +msgid "Sine" +msgstr "Sinüs" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1004 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1045 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1086 +msgid "Use sine-function for this color component" +msgstr "Bu renk bileşeni için sine-işlevini kullan" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1007 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1048 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1089 +msgid "Use cosine-function for this color component" +msgstr "Bu renk bileşeni için cosine-işlevini kullan" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1010 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1051 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1092 +msgid "" +"Use linear mapping instead of any trigonometrical function for this color " +"channel" +msgstr "" +"Bu renk bileşeni için kullanılan herhangi bir trigonometrik işlev yerine " +"doğrusal eşlemeyi kullan" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1019 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1060 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1101 +msgid "Inversion" +msgstr "Tersine çevirme" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1027 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1068 +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1109 +msgid "" +"If you enable this option higher color values will be swapped with lower " +"ones and vice versa" +msgstr "" +"Eğer bu seçenek etkinleştirilirse yüksek renk değerleri düşük olanlarla " +"değiştirilecek." + +#. Colormode toggle box +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1114 +msgid "Color Mode" +msgstr "Renk Kipi" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1123 +msgid "As specified above" +msgstr "Yukarıda belirtildiği gibi" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1135 +msgid "" +"Create a color-map with the options you specified above (color " +"density/function). The result is visible in the preview image" +msgstr "" +"Aşağıda belirttiğiniz seçenekler ile (renk yoğunluğu/işlevi) renk haritası " +"oluşturun. Sonuç önizleme resminde görülür." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1145 +msgid "Apply active gradient to final image" +msgstr "Aktif gradyanı son resme uygula" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1157 +msgid "Create a color-map using a gradient from the gradient editor" +msgstr "" +"Artımlı geçiş düzenleyicisinden bir artımlı geçiş kullanarak renk haritası " +"oluştur." + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1168 +msgid "FractalExplorer Gradient" +msgstr "KesirTarayıcı Artımlı Geçişi" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1198 +msgid "_Fractals" +msgstr "_Kesirler" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1560 +#, c-format +msgid "Could not write '%s': %s" +msgstr "'%s' yazılamadı: %s" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1635 +msgid "Load Fractal Parameters" +msgstr "Kesir Katsayıları Yükle" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1673 +msgid "Save Fractal Parameters" +msgstr "Kesir Kaysayılarını Kaydet" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1871 +#, c-format +msgid "'%s' is not a FractalExplorer file" +msgstr "'%s' KesirTarayıcısı dosyası değil" + +#: ../plug-ins/fractal-explorer/fractal-explorer-dialogs.c:1877 +#, c-format +msgid "'%s' is corrupt. Line %d Option section incorrect" +msgstr "'%s' bozuk. Satır %d Option kısmı hatalı" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:239 +msgid "Render fractal art" +msgstr "Keslirli usul tara" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:244 +msgid "_Fractal Explorer..." +msgstr "_Kesirli Tarama..." + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:374 +msgid "Rendering fractal" +msgstr "Kesirli tarama" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:756 +#: ../plug-ins/gradient-flare/gradient-flare.c:3200 +#, c-format +msgid "Are you sure you want to delete \"%s\" from the list and from disk?" +msgstr "\"%s\", listeden ve diskinizden silmek istediğinize emin misiniz?" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:760 +msgid "Delete Fractal" +msgstr "Kesiri Sil" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:950 +#, c-format +msgid "File '%s' is not a FractalExplorer file" +msgstr "'%s' dosyası KesirTarayıcısı dosyası değil" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:959 +#, c-format +msgid "" +"File '%s' is corrupt.\n" +"Line %d Option section incorrect" +msgstr "" +"'%s' dosyası bozuk.\n" +"Satır %d Option kısmı hatalı" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1003 +msgid "My first fractal" +msgstr "İlk Kesirli Taramam" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1067 +msgid "Select folder and rescan collection" +msgstr "Dizini seçin ve koleksiyonu tekrar tarayın" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1079 +msgid "Apply currently selected fractal" +msgstr "Şuan seçilen kesiri uygula" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1091 +msgid "Delete currently selected fractal" +msgstr "Şuan seçilen kesiri sil" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1114 +msgid "Rescan for Fractals" +msgstr "Kesirler için yeniden tara" + +#: ../plug-ins/fractal-explorer/fractal-explorer.c:1133 +msgid "Add FractalExplorer Path" +msgstr "KesirTarayıcısı Yolu Ekle" + +#: ../plug-ins/gfig/gfig-bezier.c:443 +msgid "Closed" +msgstr "Kapatıldı" + +#: ../plug-ins/gfig/gfig-bezier.c:448 +msgid "Close curve on completion" +msgstr "Sonuçlandığında kavisi kapat." + +#: ../plug-ins/gfig/gfig-bezier.c:453 +msgid "Show Line Frame" +msgstr "Çizgi çerçevesini göster" + +#: ../plug-ins/gfig/gfig-bezier.c:458 +msgid "Draws lines between the control points. Only during curve creation" +msgstr "" +"Denetim noktaları arasında çizgiler çizer. Sadece kavis oluşturma esnasında" + +#. Start building the dialog up +#: ../plug-ins/gfig/gfig-dialog.c:286 +msgid "Gfig" +msgstr "Gfig" + +#. Tool options notebook +#: ../plug-ins/gfig/gfig-dialog.c:337 +msgid "Tool Options" +msgstr "Araç Seçenekleri" + +#: ../plug-ins/gfig/gfig-dialog.c:354 +msgid "_Stroke" +msgstr "_Darbe" + +#. Fill frame on right side +#: ../plug-ins/gfig/gfig-dialog.c:401 +msgid "Fill" +msgstr "Doldur" + +#: ../plug-ins/gfig/gfig-dialog.c:415 +msgid "No fill" +msgstr "Dolgusuz" + +#: ../plug-ins/gfig/gfig-dialog.c:416 +msgid "Color fill" +msgstr "Renk doldurma" + +#: ../plug-ins/gfig/gfig-dialog.c:417 +msgid "Pattern fill" +msgstr "Desen doldurma" + +#: ../plug-ins/gfig/gfig-dialog.c:418 +msgid "Shape gradient" +msgstr "Şekilli renk geçiş" + +#: ../plug-ins/gfig/gfig-dialog.c:419 +msgid "Vertical gradient" +msgstr "Düşey renk geçişi" + +#: ../plug-ins/gfig/gfig-dialog.c:420 +msgid "Horizontal gradient" +msgstr "Yatay renk geçişi" + +#. "show image" checkbutton at bottom of style frame +#: ../plug-ins/gfig/gfig-dialog.c:480 +msgid "Show image" +msgstr "Resmi göster" + +#. "snap to grid" checkbutton at bottom of style frame +#: ../plug-ins/gfig/gfig-dialog.c:493 +msgctxt "checkbutton" +msgid "Snap to grid" +msgstr "Izgaraya uydur" + +#. "show grid" checkbutton at bottom of style frame +#: ../plug-ins/gfig/gfig-dialog.c:502 +msgid "Show grid" +msgstr "Izgarayı göster" + +#: ../plug-ins/gfig/gfig-dialog.c:637 +msgid "Load Gfig Object Collection" +msgstr "Gfig Nesne Koleksiyonunu Yükle" + +#: ../plug-ins/gfig/gfig-dialog.c:686 +msgid "Save Gfig Drawing" +msgstr "Gfig Çizimini Kaydet" + +#: ../plug-ins/gfig/gfig-dialog.c:831 +msgid "First Gfig" +msgstr "İlk Gfig" + +#: ../plug-ins/gfig/gfig-dialog.c:870 +msgid "_Undo" +msgstr "_Geri Al" + +#: ../plug-ins/gfig/gfig-dialog.c:874 +msgid "_Clear" +msgstr "_Temizle" + +#: ../plug-ins/gfig/gfig-dialog.c:878 ../plug-ins/imagemap/imap_menu.c:209 +msgid "_Grid" +msgstr "_Izgara" + +#: ../plug-ins/gfig/gfig-dialog.c:886 +msgid "Raise selected object" +msgstr "Seçilen nesne yükseltildi" + +#: ../plug-ins/gfig/gfig-dialog.c:890 +msgid "Lower selected object" +msgstr "Seçilen nesne alçaltıldı" + +#: ../plug-ins/gfig/gfig-dialog.c:894 +msgid "Raise selected object to top" +msgstr "Seçilen nesneyi en üste yükselt" + +#: ../plug-ins/gfig/gfig-dialog.c:898 +msgid "Lower selected object to bottom" +msgstr "Seçilen nesneyi en alta indir" + +#: ../plug-ins/gfig/gfig-dialog.c:902 +msgid "Show previous object" +msgstr "Önceki nesneyi göster" + +#: ../plug-ins/gfig/gfig-dialog.c:906 +msgid "Show next object" +msgstr "Sonraki nesneyi göster" + +#: ../plug-ins/gfig/gfig-dialog.c:910 ../plug-ins/gfig/gfig-stock.c:53 +msgid "Show all objects" +msgstr "Tüm nesneleri göster" + +#: ../plug-ins/gfig/gfig-dialog.c:916 ../plug-ins/gfig/gfig-stock.c:47 +msgid "Create line" +msgstr "Çizgi oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:919 ../plug-ins/gfig/gfig-stock.c:51 +msgid "Create rectangle" +msgstr "Dörtgen oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:922 ../plug-ins/gfig/gfig-stock.c:42 +msgid "Create circle" +msgstr "Daire oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:925 ../plug-ins/gfig/gfig-stock.c:46 +msgid "Create ellipse" +msgstr "Elips oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:928 ../plug-ins/gfig/gfig-stock.c:44 +msgid "Create arc" +msgstr "Arc oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:931 ../plug-ins/gfig/gfig-stock.c:50 +msgid "Create reg polygon" +msgstr "Reg poligonu oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:934 ../plug-ins/gfig/gfig-stock.c:55 +msgid "Create star" +msgstr "Yıldız oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:937 ../plug-ins/gfig/gfig-stock.c:54 +msgid "Create spiral" +msgstr "Spiral oluştur" + +#: ../plug-ins/gfig/gfig-dialog.c:940 +msgid "Create bezier curve. Shift + Button ends object creation." +msgstr "Bezier eğrisi oluştur. Shift + Tuş nesne oluşturmayı sonlandırır." + +#: ../plug-ins/gfig/gfig-dialog.c:944 ../plug-ins/gfig/gfig-stock.c:48 +msgid "Move an object" +msgstr "Bir nesneyi taşı" + +#: ../plug-ins/gfig/gfig-dialog.c:947 ../plug-ins/gfig/gfig-stock.c:49 +msgid "Move a single point" +msgstr "Tek nokta taşı" + +#: ../plug-ins/gfig/gfig-dialog.c:950 ../plug-ins/gfig/gfig-stock.c:43 +msgid "Copy an object" +msgstr "Bir nesne seç" + +#: ../plug-ins/gfig/gfig-dialog.c:953 ../plug-ins/gfig/gfig-stock.c:45 +msgid "Delete an object" +msgstr "Bir nesneyi sil" + +#: ../plug-ins/gfig/gfig-dialog.c:956 ../plug-ins/gfig/gfig-stock.c:52 +msgid "Select an object" +msgstr "Bir nesne seç" + +#: ../plug-ins/gfig/gfig-dialog.c:1038 +msgid "This tool has no options" +msgstr "Bu aracın seçeneği yok" + +#. Put buttons in +#: ../plug-ins/gfig/gfig-dialog.c:1228 +msgid "Show position" +msgstr "Konumu göster" + +#: ../plug-ins/gfig/gfig-dialog.c:1240 +msgid "Show control points" +msgstr "Denetim noktalarını göster" + +#: ../plug-ins/gfig/gfig-dialog.c:1274 +msgid "Max undo:" +msgstr "En Fazla Geri Alma:" + +#: ../plug-ins/gfig/gfig-dialog.c:1283 +#: ../plug-ins/gimpressionist/general.c:185 +msgid "Transparent" +msgstr "Şeffaf" + +#: ../plug-ins/gfig/gfig-dialog.c:1285 +msgid "Foreground" +msgstr "Önalan" + +#: ../plug-ins/gfig/gfig-dialog.c:1287 ../plug-ins/imagemap/imap_cmd_copy.c:54 +#: ../plug-ins/imagemap/imap_cmd_copy_object.c:55 +#: ../plug-ins/imagemap/imap_menu.c:160 +msgid "Copy" +msgstr "Kopyala" + +#: ../plug-ins/gfig/gfig-dialog.c:1296 +msgid "" +"Layer background type. Copy causes the previous layer to be copied before " +"the draw is performed." +msgstr "" +"Katman artalan biçimi. Kopyalama seçeneği, çizim gerçekleştirilmeden önce " +"önceki katmanın kopyalanmasına neden olur." + +#: ../plug-ins/gfig/gfig-dialog.c:1302 +msgid "Background:" +msgstr "Arkaplan:" + +#: ../plug-ins/gfig/gfig-dialog.c:1305 +msgid "Feather" +msgstr "Yumuşat" + +#: ../plug-ins/gfig/gfig-dialog.c:1329 +msgid "Radius:" +msgstr "Yarıçap:" + +#: ../plug-ins/gfig/gfig-dialog.c:1386 +msgid "Grid spacing:" +msgstr "Izgara aralığı:" + +#: ../plug-ins/gfig/gfig-dialog.c:1403 +msgid "Polar grid sectors desired:" +msgstr "İstenilen kutupsal ızgara dilimleri:" + +#: ../plug-ins/gfig/gfig-dialog.c:1425 +msgid "Polar grid radius interval:" +msgstr "Kutupsal ızgara yarıçapı aralığı:" + +#: ../plug-ins/gfig/gfig-dialog.c:1441 ../plug-ins/imagemap/imap_menu.c:220 +msgid "Rectangle" +msgstr "Dörtgen" + +#: ../plug-ins/gfig/gfig-dialog.c:1443 +msgid "Isometric" +msgstr "Izometrik" + +#: ../plug-ins/gfig/gfig-dialog.c:1452 +msgid "Grid type:" +msgstr "Izgara türü:" + +#: ../plug-ins/gfig/gfig-dialog.c:1459 +#: ../plug-ins/gradient-flare/gradient-flare.c:551 +msgid "Normal" +msgstr "Normal" + +#: ../plug-ins/gfig/gfig-dialog.c:1462 +msgid "Grey" +msgstr "Gri" + +#: ../plug-ins/gfig/gfig-dialog.c:1463 +msgid "Darker" +msgstr "Daha Koyu" + +#: ../plug-ins/gfig/gfig-dialog.c:1464 +msgid "Lighter" +msgstr "Daha Açık" + +#: ../plug-ins/gfig/gfig-dialog.c:1465 +msgid "Very dark" +msgstr "Çok koyu" + +#: ../plug-ins/gfig/gfig-dialog.c:1474 +msgid "Grid color:" +msgstr "Izgara rengi:" + +#: ../plug-ins/gfig/gfig-dialog.c:1697 +msgid "Sides:" +msgstr "Yanlar:" + +#: ../plug-ins/gfig/gfig-dialog.c:1707 +msgid "Right" +msgstr "Sağ" + +#: ../plug-ins/gfig/gfig-dialog.c:1708 +msgid "Left" +msgstr "Sol" + +#: ../plug-ins/gfig/gfig-dialog.c:1718 +#: ../plug-ins/gimpressionist/orientation.c:148 +msgid "Orientation:" +msgstr "Yöneliş:" + +#: ../plug-ins/gfig/gfig-dobject.c:585 +msgid "Hey where has the object gone ?" +msgstr "Hey cisim nereye gitti ?" + +#: ../plug-ins/gfig/gfig-dobject.c:955 +msgid "Error reading file" +msgstr "Dosya okunamıyor" + +#: ../plug-ins/gfig/gfig-dobject.c:1044 +msgid "Editing read-only object - you will not be able to save it" +msgstr "Salt okunur nesne düzenleniyor - dosyayı kaydedemeyeceksiniz." + +#: ../plug-ins/gfig/gfig-poly.c:51 +msgid "Regular Polygon Number of Sides" +msgstr "Kenarların Düzgün Çokgen Sayısı" + +#: ../plug-ins/gfig/gfig-preview.c:328 +msgid "Object Details" +msgstr "Nesne Özellikleri" + +#. Position labels +#: ../plug-ins/gfig/gfig-preview.c:378 +msgid "XY position:" +msgstr "XY konumu:" + +#: ../plug-ins/gfig/gfig-spiral.c:55 +msgid "Spiral Number of Turns" +msgstr "Dönüşlerin Sarmal Sayısı" + +#: ../plug-ins/gfig/gfig-star.c:52 +msgid "Star Number of Points" +msgstr "Yıldız Noktalarının Sayısı" + +#: ../plug-ins/gfig/gfig-stock.c:41 +msgid "Create bezier curve" +msgstr "Bezier eğrisi oluştur" + +#: ../plug-ins/gfig/gfig.c:124 +msgid "Create geometric shapes" +msgstr "Geometrik şekiller oluştur" + +#: ../plug-ins/gfig/gfig.c:135 +msgid "_Gfig..." +msgstr "_Gfig..." + +#: ../plug-ins/gfig/gfig.c:731 +msgid "" +"Error trying to save figure as a parasite: can't attach parasite to drawable." +msgstr "" +"Şekli parazit olarak kaydetmeye çalışırken hata: parazit çizilebilir olarak " +"eklenemiyor." + +#: ../plug-ins/gfig/gfig.c:758 +#, c-format +msgid "Error trying to open temporary file '%s' for parasite loading: %s" +msgstr "" +"Parazit yüklemesi için geçici dosya '%s' açılmaya çalışılırken hata: %s" + +#: ../plug-ins/gimpressionist/brush.c:247 +msgid "Can only save drawables!" +msgstr "Sadece çizilebilenler kaydedilebilir!" + +#: ../plug-ins/gimpressionist/brush.c:252 +msgid "Save Brush" +msgstr "Fırçayı Kaydet" + +#: ../plug-ins/gimpressionist/brush.c:507 +msgid "_Brush" +msgstr "_Fırça" + +#: ../plug-ins/gimpressionist/brush.c:544 +msgid "Gamma:" +msgstr "Gama:" + +#: ../plug-ins/gimpressionist/brush.c:562 +msgid "Changes the gamma (brightness) of the selected brush" +msgstr "Seçilen fırçada gamma (aydınlık) değişiklikleri" + +#: ../plug-ins/gimpressionist/brush.c:570 +msgid "Select:" +msgstr "Seç:" + +#: ../plug-ins/gimpressionist/brush.c:599 +msgid "Aspect ratio:" +msgstr "En-boy oranı:" + +#: ../plug-ins/gimpressionist/brush.c:603 +msgid "Specifies the aspect ratio of the brush" +msgstr "Fırçanın en-boy oranını belirler" + +#: ../plug-ins/gimpressionist/brush.c:612 +#: ../plug-ins/gimpressionist/paper.c:206 +msgid "Relief:" +msgstr "Kabartma:" + +#: ../plug-ins/gimpressionist/brush.c:616 +#: ../plug-ins/gimpressionist/paper.c:210 +msgid "Specifies the amount of embossing to apply to the image (in percent)" +msgstr "Resme uygulanacak kabartma miktarını belirtir (yüzde olarak)" + +#: ../plug-ins/gimpressionist/color.c:60 +msgid "Co_lor" +msgstr "R_enk" + +#: ../plug-ins/gimpressionist/color.c:70 +msgid "A_verage under brush" +msgstr "Fırça altı or_talaması" + +#: ../plug-ins/gimpressionist/color.c:72 +msgid "C_enter of brush" +msgstr "_Fırçayı ortala" + +#: ../plug-ins/gimpressionist/color.c:79 +msgid "Color is computed from the average of all pixels under the brush" +msgstr "Renk, fırça altındaki tüm beneklerin ortalamasından hesaplandı" + +#: ../plug-ins/gimpressionist/color.c:83 +msgid "Samples the color from the pixel in the center of the brush" +msgstr "Rengi fırçanın merkezindeki benekten örnekler" + +#: ../plug-ins/gimpressionist/color.c:94 +msgid "Color _noise:" +msgstr "Renk _gürültüsü:" + +#: ../plug-ins/gimpressionist/color.c:98 +msgid "Adds random noise to the color" +msgstr "Renge rasgele gürültü ekler" + +#: ../plug-ins/gimpressionist/general.c:134 +#: ../plug-ins/gradient-flare/gradient-flare.c:3529 +msgid "_General" +msgstr "_Genel" + +#: ../plug-ins/gimpressionist/general.c:150 +msgid "Keep original" +msgstr "Aslını koru" + +#: ../plug-ins/gimpressionist/general.c:151 +msgid "Preserve the original image as a background" +msgstr "Özgün resmi artalan olarak koru" + +#: ../plug-ins/gimpressionist/general.c:156 +msgid "From paper" +msgstr "Kağıttan" + +#: ../plug-ins/gimpressionist/general.c:157 +msgid "Copy the texture of the selected paper as a background" +msgstr "Seçilen kağıdın dokusunu artalan olarak kopyala" + +#: ../plug-ins/gimpressionist/general.c:167 +msgid "Solid colored background" +msgstr "Katı renkli artalan" + +#: ../plug-ins/gimpressionist/general.c:186 +msgid "" +"Use a transparent background; Only the strokes painted will be visible" +msgstr "Saydam artalan kullan; yalnızca boyanan darbeler görünür olacak" + +#: ../plug-ins/gimpressionist/general.c:203 +msgid "Paint edges" +msgstr "Boya kenarları" + +#: ../plug-ins/gimpressionist/general.c:208 +msgid "Selects if to place strokes all the way out to the edges of the image" +msgstr "Resimin kenarlarından dışa çıkması için darbeler seçer." + +#. Tileable checkbox +#: ../plug-ins/gimpressionist/general.c:213 ../plug-ins/maze/maze-dialog.c:278 +msgid "Tileable" +msgstr "Döşenebilir" + +#: ../plug-ins/gimpressionist/general.c:217 +msgid "Selects if the resulting image should be seamlessly tileable" +msgstr "" +"Sonuçlanan resmin kusursuz olarak döşenebilir olması istendiği için seçilir" + +#: ../plug-ins/gimpressionist/general.c:222 +msgid "Drop shadow" +msgstr "Gölge düşürme" + +#: ../plug-ins/gimpressionist/general.c:227 +msgid "Adds a shadow effect to each brush stroke" +msgstr "Her fırça darbesine bir gölge etkisi ekle" + +#: ../plug-ins/gimpressionist/general.c:240 +msgid "Edge darken:" +msgstr "Kenar karartma:" + +#: ../plug-ins/gimpressionist/general.c:244 +msgid "How much to \"darken\" the edges of each brush stroke" +msgstr "Her fırça darbesi için kenarlar ne kadar karartılacak" + +#: ../plug-ins/gimpressionist/general.c:249 +msgid "Shadow darken:" +msgstr "Gölge karartma:" + +#: ../plug-ins/gimpressionist/general.c:253 +msgid "How much to \"darken\" the drop shadow" +msgstr "Gölge düşürmenin ne kadar \"koyu\" olacağı" + +#: ../plug-ins/gimpressionist/general.c:258 +msgid "Shadow depth:" +msgstr "Gölge derinliği:" + +#: ../plug-ins/gimpressionist/general.c:262 +msgid "" +"The depth of the drop shadow, i.e. how far apart from the object it should be" +msgstr "" +"Gölge düşürmenin derinliği, örn. nesneden ne kadar uzaklıkta bulunmalı" + +#: ../plug-ins/gimpressionist/general.c:267 +msgid "Shadow blur:" +msgstr "Gölge bulanıklığı:" + +#: ../plug-ins/gimpressionist/general.c:271 +msgid "How much to blur the drop shadow" +msgstr "Gölge düşürme bulanıklılığının ne kadar olacağı" + +#: ../plug-ins/gimpressionist/general.c:276 +msgid "Deviation threshold:" +msgstr "Sapma eşiği:" + +#: ../plug-ins/gimpressionist/general.c:280 +msgid "A bailout-value for adaptive selections" +msgstr "Uyarlanabilir seçimler için bir kurtarma değeri" + +#: ../plug-ins/gimpressionist/gimp.c:90 +msgid "Performs various artistic operations" +msgstr "Çeşitli sanatsal işlemler gerçekleştirir" + +#: ../plug-ins/gimpressionist/gimp.c:95 +msgid "_GIMPressionist..." +msgstr "_GIMPressionist..." + +#: ../plug-ins/gimpressionist/gimp.c:371 +msgid "Painting" +msgstr "Boyama" + +#: ../plug-ins/gimpressionist/gimpressionist.c:139 +msgid "GIMPressionist" +msgstr "GIMPressionist" + +#: ../plug-ins/gimpressionist/orientation.c:92 +msgid "Or_ientation" +msgstr "_Yöneltme" + +#: ../plug-ins/gimpressionist/orientation.c:106 +msgid "Directions:" +msgstr "Yönler:" + +#: ../plug-ins/gimpressionist/orientation.c:110 +msgid "The number of directions (i.e. brushes) to use" +msgstr "Kullanıcılacak yönlerin sayısı (örn. fırçalar)" + +#: ../plug-ins/gimpressionist/orientation.c:118 +msgid "Start angle:" +msgstr "Başlangıç açısı:" + +#: ../plug-ins/gimpressionist/orientation.c:122 +msgid "The starting angle of the first brush to create" +msgstr "Oluşturulacak ilk fırçanın başlangıç açısı" + +#: ../plug-ins/gimpressionist/orientation.c:130 +msgid "Angle span:" +msgstr "Köşe kirişi:" + +#: ../plug-ins/gimpressionist/orientation.c:134 +msgid "The angle span of the first brush to create" +msgstr "İlk fırçanın oluşturulacak köşe kirişi" + +#: ../plug-ins/gimpressionist/orientation.c:157 +msgid "" +"Let the value (brightness) of the region determine the direction of the " +"stroke" +msgstr "Darbenin yönünü belirlemesi için alan değerine (parlaklık) izin ver" + +#: ../plug-ins/gimpressionist/orientation.c:160 +#: ../plug-ins/gimpressionist/size.c:163 +msgid "Radius" +msgstr "Yarıçap" + +#: ../plug-ins/gimpressionist/orientation.c:161 +msgid "" +"The distance from the center of the image determines the direction of the " +"stroke" +msgstr "Resmin ortasından gelen uzaklık darbenin yönünü belirler" + +#: ../plug-ins/gimpressionist/orientation.c:165 +msgid "Selects a random direction of each stroke" +msgstr "Her darbe için rasgele bir yön seçer" + +#: ../plug-ins/gimpressionist/orientation.c:168 +#: ../plug-ins/gimpressionist/size.c:171 +msgid "Radial" +msgstr "Dairesel" + +#: ../plug-ins/gimpressionist/orientation.c:169 +msgid "" +"Let the direction from the center determine the direction of the stroke" +msgstr "Darbenin merkezden gelen yöne göre yönünü belirlemesine izin ver" + +#: ../plug-ins/gimpressionist/orientation.c:176 +#: ../plug-ins/gimpressionist/size.c:179 +msgid "Flowing" +msgstr "Akış" + +#: ../plug-ins/gimpressionist/orientation.c:177 +#: ../plug-ins/gimpressionist/size.c:180 +msgid "The strokes follow a \"flowing\" pattern" +msgstr "Darbeler bir \"akıcı\" desen izler" + +#: ../plug-ins/gimpressionist/orientation.c:181 +msgid "The hue of the region determines the direction of the stroke" +msgstr "Alanın renk tonu darbenin yönünü belirler." + +#: ../plug-ins/gimpressionist/orientation.c:184 +#: ../plug-ins/gimpressionist/size.c:187 +msgid "Adaptive" +msgstr "Uyarlanır" + +#: ../plug-ins/gimpressionist/orientation.c:185 +msgid "The direction that matches the original image the closest is selected" +msgstr "Özgün resim ile en yakın eşleşen yön seçildi" + +#: ../plug-ins/gimpressionist/orientation.c:192 +#: ../plug-ins/gimpressionist/size.c:196 +msgid "Manual" +msgstr "Kılavuz" + +#: ../plug-ins/gimpressionist/orientation.c:193 +msgid "Manually specify the stroke orientation" +msgstr "Darbe yönlenmesini elle belirt" + +#: ../plug-ins/gimpressionist/orientation.c:204 +msgid "Opens up the Orientation Map Editor" +msgstr "Yönlendirme Eşlemi Düzenleyicisini açar" + +#: ../plug-ins/gimpressionist/orientmap.c:526 +msgid "Orientation Map Editor" +msgstr "Yönlendirme Eşlemi Düzenleyicisi" + +#: ../plug-ins/gimpressionist/orientmap.c:555 +msgid "Vectors" +msgstr "Vektörler" + +#: ../plug-ins/gimpressionist/orientmap.c:567 +msgid "" +"The vector-field. Left-click to move selected vector, Right-click to point " +"it towards mouse, Middle-click to add a new vector." +msgstr "" +"Vektör alanı. Seçilen vektörü taşımak için sol tıklayın, fareye göre " +"yönlendirmek için sağ tıklayın, yeni vektör eklemek için ortaya tıklayın." + +#: ../plug-ins/gimpressionist/orientmap.c:590 +#: ../plug-ins/gimpressionist/sizemap.c:459 +msgid "Adjust the preview's brightness" +msgstr "Önizlemenin parlaklığını ayarla" + +#: ../plug-ins/gimpressionist/orientmap.c:612 +msgid "Select previous vector" +msgstr "Önceki vektörü seç" + +#: ../plug-ins/gimpressionist/orientmap.c:618 +msgid "Select next vector" +msgstr "Sonraki vektörü seç" + +#: ../plug-ins/gimpressionist/orientmap.c:620 +#: ../plug-ins/gimpressionist/sizemap.c:490 +msgid "A_dd" +msgstr "_Ekle" + +#: ../plug-ins/gimpressionist/orientmap.c:624 +msgid "Add new vector" +msgstr "Yeni vektör ekle" + +#: ../plug-ins/gimpressionist/orientmap.c:626 +#: ../plug-ins/gimpressionist/sizemap.c:497 +msgid "_Kill" +msgstr "İşlemi Ö_ldür" + +#: ../plug-ins/gimpressionist/orientmap.c:630 +msgid "Delete selected vector" +msgstr "Seçilen vektörü sil" + +#: ../plug-ins/gimpressionist/orientmap.c:641 +msgid "Type" +msgstr "Tip" + +#: ../plug-ins/gimpressionist/orientmap.c:645 +msgid "_Normal" +msgstr "_Normal" + +#: ../plug-ins/gimpressionist/orientmap.c:646 +msgid "Vorte_x" +msgstr "_Girdap" + +#: ../plug-ins/gimpressionist/orientmap.c:647 +msgid "Vortex_2" +msgstr "Girdap_2" + +#: ../plug-ins/gimpressionist/orientmap.c:648 +msgid "Vortex_3" +msgstr "Girdap_3" + +#: ../plug-ins/gimpressionist/orientmap.c:654 +#: ../plug-ins/gimpressionist/sizemap.c:542 +msgid "_Voronoi" +msgstr "_Voronoi" + +#: ../plug-ins/gimpressionist/orientmap.c:662 +msgid "" +"Voronoi-mode makes only the vector closest to the given point have any " +"influence" +msgstr "" +"Voronoi-biçimi, verilen noktaya en yakın vektöre herhangi bir etki yapar" + +#: ../plug-ins/gimpressionist/orientmap.c:672 +msgid "A_ngle:" +msgstr "_Açı:" + +#: ../plug-ins/gimpressionist/orientmap.c:676 +msgid "Change the angle of the selected vector" +msgstr "Seçilen vektörün açısını değiştir" + +#: ../plug-ins/gimpressionist/orientmap.c:683 +msgid "Ang_le offset:" +msgstr "K_öşe konumu:" + +#: ../plug-ins/gimpressionist/orientmap.c:687 +msgid "Offset all vectors with a given angle" +msgstr "Tüm vektörleri bir açı ile dengele" + +#: ../plug-ins/gimpressionist/orientmap.c:698 +msgid "Change the strength of the selected vector" +msgstr "Seçilen vektörün keskinliğini değiştir" + +#: ../plug-ins/gimpressionist/orientmap.c:705 +msgid "S_trength exp.:" +msgstr "Keskinlik dışa aktarması:" + +#: ../plug-ins/gimpressionist/orientmap.c:709 +#: ../plug-ins/gimpressionist/sizemap.c:537 +msgid "Change the exponent of the strength" +msgstr "Keskinliğin şiddetini değiştir" + +#: ../plug-ins/gimpressionist/paper.c:138 +msgid "P_aper" +msgstr "K_ağıt" + +#: ../plug-ins/gimpressionist/paper.c:173 +msgid "Inverts the Papers texture" +msgstr "Kağıtların dokusunu tersine çevirir" + +#: ../plug-ins/gimpressionist/paper.c:177 +msgid "O_verlay" +msgstr "Ka_plama" + +#: ../plug-ins/gimpressionist/paper.c:182 +msgid "Applies the paper as it is (without embossing it)" +msgstr "Kağıdı olduğu gibi uygular (kabartma olmadan)" + +#: ../plug-ins/gimpressionist/paper.c:198 +msgid "Specifies the scale of the texture (in percent of original file)" +msgstr "Dokunun derecesini belirler (özgün dosyanın yüzdesi olarak)" + +#: ../plug-ins/gimpressionist/placement.c:67 +msgid "Pl_acement" +msgstr "Ye_rleşim" + +#: ../plug-ins/gimpressionist/placement.c:73 +msgid "Placement" +msgstr "Yerleştirme" + +#: ../plug-ins/gimpressionist/placement.c:77 +msgid "Randomly" +msgstr "Rastgele" + +#: ../plug-ins/gimpressionist/placement.c:81 +msgid "Evenly distributed" +msgstr "Eşit olarak dağıtılmış" + +#: ../plug-ins/gimpressionist/placement.c:89 +msgid "Place strokes randomly around the image" +msgstr "Darbeleri resmin çevresine rasgele yerleştir" + +#: ../plug-ins/gimpressionist/placement.c:93 +msgid "The strokes are evenly distributed across the image" +msgstr "Darbeler resim boyunca eşit bir şekilde dağıtılır" + +#: ../plug-ins/gimpressionist/placement.c:102 +msgid "Centered" +msgstr "Ortalanmış" + +#: ../plug-ins/gimpressionist/placement.c:108 +msgid "Focus the brush strokes around the center of the image" +msgstr "Fırça darbelerini resim merkezi etrafında odakla" + +#: ../plug-ins/gimpressionist/placement.c:120 +msgid "Stroke _density:" +msgstr "Darbe _yoğunluğu:" + +#: ../plug-ins/gimpressionist/placement.c:124 +msgid "The relative density of the brush strokes" +msgstr "Fırça darbelerinin göreceli yoğunluğu" + +#. +#. * gimp_filename_to_utf8 () and g_strerror () return temporary strings +#. * that need not and should not be freed. So this call is OK. +#. * +#: ../plug-ins/gimpressionist/ppmtool.c:650 +#, c-format +msgid "Failed to save PPM file '%s': %s" +msgstr "PPM dosyası '%s' kaydedilemedi: %s" + +#: ../plug-ins/gimpressionist/presets.c:640 +msgid "Save Current" +msgstr "Şimdikini Kaydet" + +#: ../plug-ins/gimpressionist/presets.c:894 +msgid "Gimpressionist Defaults" +msgstr "Gimpressionist Varsayılanları" + +#: ../plug-ins/gimpressionist/presets.c:1015 +msgid "_Presets" +msgstr "_Öntanımlı" + +#: ../plug-ins/gimpressionist/presets.c:1030 +msgid "Save Current..." +msgstr "Şimdikini Kaydet..." + +#: ../plug-ins/gimpressionist/presets.c:1038 +msgid "Save the current settings to the specified file" +msgstr "Geçerli ayarları belirtilen dosyaya kaydet" + +#: ../plug-ins/gimpressionist/presets.c:1066 +msgid "Reads the selected Preset into memory" +msgstr "Belleğe seçilen Öntanımı okur" + +#: ../plug-ins/gimpressionist/presets.c:1072 +msgid "Deletes the selected Preset" +msgstr "Seçili öntanımlı ayarı sil" + +#: ../plug-ins/gimpressionist/presets.c:1078 +msgid "Reread the folder of Presets" +msgstr "Öntanımlıların dizinlerini yeniden oku" + +#: ../plug-ins/gimpressionist/preview.c:174 +#: ../plug-ins/gimpressionist/repaint.c:1184 +#: ../plug-ins/imagemap/imap_polygon.c:515 +#: ../plug-ins/lighting/lighting-ui.c:1075 +msgid "_Update" +msgstr "_Güncelle" + +#: ../plug-ins/gimpressionist/preview.c:180 +msgid "Refresh the Preview window" +msgstr "Önizleme penceresini yenile" + +#: ../plug-ins/gimpressionist/preview.c:188 +msgid "Revert to the original image" +msgstr "Özgün resme geri döndür" + +#: ../plug-ins/gimpressionist/size.c:95 +msgid "_Size" +msgstr "_Boyut" + +#: ../plug-ins/gimpressionist/size.c:109 +msgid "Sizes:" +msgstr "Boyutlar:" + +#: ../plug-ins/gimpressionist/size.c:113 +msgid "The number of sizes of brushes to use" +msgstr "Kullanılacak fırçaların boyutlarının sayısı" + +#: ../plug-ins/gimpressionist/size.c:121 +msgid "Minimum size:" +msgstr "Asgari boyut:" + +#: ../plug-ins/gimpressionist/size.c:125 +msgid "The smallest brush to create" +msgstr "Oluşturulacak en küçük fırça" + +#: ../plug-ins/gimpressionist/size.c:133 +msgid "Maximum size:" +msgstr "Azami boyut:" + +#: ../plug-ins/gimpressionist/size.c:137 +msgid "The largest brush to create" +msgstr "Oluşturulacak en büyük fırça" + +#: ../plug-ins/gimpressionist/size.c:151 +msgid "Size:" +msgstr "Büyüklük:" + +#: ../plug-ins/gimpressionist/size.c:160 +msgid "" +"Let the value (brightness) of the region determine the size of the stroke" +msgstr "" +"Darbenin boyutunu belirlemesi için alan değerine (parlaklık) izin ver" + +#: ../plug-ins/gimpressionist/size.c:164 +msgid "" +"The distance from the center of the image determines the size of the stroke" +msgstr "Resmin ortasından gelen uzaklık darbenin boyutunu belirler" + +#: ../plug-ins/gimpressionist/size.c:168 +msgid "Selects a random size for each stroke" +msgstr "Her darbe için rasgele boyut seçer" + +#: ../plug-ins/gimpressionist/size.c:172 +msgid "Let the direction from the center determine the size of the stroke" +msgstr "Darbe boyutunun merkezden gelen yöne belirlenmesine izin ver" + +#: ../plug-ins/gimpressionist/size.c:184 +msgid "The hue of the region determines the size of the stroke" +msgstr "Alanın renk tonu darbenin boyutunu belirler" + +#: ../plug-ins/gimpressionist/size.c:188 +msgid "" +"The brush-size that matches the original image the closest is selected" +msgstr "Özgün resim ile eşleşen en yakın fırça boyutu seçildi" + +#: ../plug-ins/gimpressionist/size.c:197 +msgid "Manually specify the stroke size" +msgstr "Darbe boyutunu elle belirle" + +#: ../plug-ins/gimpressionist/size.c:208 +msgid "Opens up the Size Map Editor" +msgstr "Boyut Eşleme Düzenleyicisini açar" + +#: ../plug-ins/gimpressionist/sizemap.c:401 +msgid "Size Map Editor" +msgstr "Boyut Eşleme Düzenleyicisi" + +#: ../plug-ins/gimpressionist/sizemap.c:429 +msgid "Smvectors" +msgstr "Smvektörleri" + +#: ../plug-ins/gimpressionist/sizemap.c:439 +msgid "" +"The smvector-field. Left-click to move selected smvector, Right-click to " +"point it towards mouse, Middle-click to add a new smvector." +msgstr "" +"Smvektör alanı. smvektörü seçmek için ol tıklayın, fare istikametini " +"işaretlemek için sağ tıklayın, yeni bir smvektör oluşturmak için ortaya " +"tıklayın." + +#: ../plug-ins/gimpressionist/sizemap.c:481 +msgid "Select previous smvector" +msgstr "Önceki smvektörü seç" + +#: ../plug-ins/gimpressionist/sizemap.c:488 +msgid "Select next smvector" +msgstr "Sonraki smvektörü seç" + +#: ../plug-ins/gimpressionist/sizemap.c:495 +msgid "Add new smvector" +msgstr "Yeni smvektör ekle" + +#: ../plug-ins/gimpressionist/sizemap.c:502 +msgid "Delete selected smvector" +msgstr "Seçilen smvektörü sil" + +#: ../plug-ins/gimpressionist/sizemap.c:515 +msgid "Change the angle of the selected smvector" +msgstr "Seçilen smvektörün açısını değiştir" + +#: ../plug-ins/gimpressionist/sizemap.c:522 +msgid "S_trength:" +msgstr "Ke_skinlik" + +#: ../plug-ins/gimpressionist/sizemap.c:526 +msgid "Change the strength of the selected smvector" +msgstr "Seçilen smvektörün keskinliğini değiştir" + +#: ../plug-ins/gimpressionist/sizemap.c:533 +msgid "St_rength exp.:" +msgstr "Ke_skeinlik dışa aktarımı:" + +#: ../plug-ins/gimpressionist/sizemap.c:549 +msgid "" +"Voronoi-mode makes only the smvector closest to the given point have any " +"influence" +msgstr "" +"Voronoi-biçimi, verilen noktaya en yakın smvektöre herhangi bir etki yapar" + +#: ../plug-ins/gradient-flare/gradient-flare.c:552 +msgid "Addition" +msgstr "Ekleme" + +#: ../plug-ins/gradient-flare/gradient-flare.c:553 +msgid "Overlay" +msgstr "Üstekoyum" + +#: ../plug-ins/gradient-flare/gradient-flare.c:807 +msgid "Produce a lense flare effect using gradients" +msgstr "Artımlı geçiş kullanarak alev merceği etkisi üretir" + +#: ../plug-ins/gradient-flare/gradient-flare.c:812 +msgid "_Gradient Flare..." +msgstr "Alev A_rtımlı Geçişi..." + +#. +#. * Dialog Shell +#. +#: ../plug-ins/gradient-flare/gradient-flare.c:951 +#: ../plug-ins/gradient-flare/gradient-flare.c:2357 +msgid "Gradient Flare" +msgstr "Alev Artımlı Geçişi" + +#: ../plug-ins/gradient-flare/gradient-flare.c:1264 +#, c-format +msgid "Failed to open GFlare file '%s': %s" +msgstr "IşımaGeçişi dosyası '%s' açılamadı: %s" + +#: ../plug-ins/gradient-flare/gradient-flare.c:1272 +#, c-format +msgid "'%s' is not a valid GFlare file." +msgstr "'%s' geçerli bir IşımaGeçişi dosyası değil." + +#: ../plug-ins/gradient-flare/gradient-flare.c:1326 +#, c-format +msgid "invalid formatted GFlare file: %s\n" +msgstr "Geçersiz biçimli IşımaGeçişi dosyası: %s\n" + +#: ../plug-ins/gradient-flare/gradient-flare.c:1451 +#, c-format +msgid "" +"GFlare '%s' is not saved. If you add a new entry in '%s', like:\n" +"(gflare-path \"%s\")\n" +"and make a folder '%s', then you can save your own GFlares into that folder." +msgstr "" +"IşımaGeçişi '%s' kaydedilmedi. Eğer '%s' içerisine yeni bir girdi " +"ekleyecekseniz, örneğin:\n" +"(gflare-yolu \"%s\")\n" +"ve '%s' dizini oluşturacaksanız kendi IşımaGeçişlerinizi o dizine " +"kaydedebilirsiniz." + +#: ../plug-ins/gradient-flare/gradient-flare.c:1484 +#, c-format +msgid "Failed to write GFlare file '%s': %s" +msgstr "IşımaGeçişi dosyası '%s' yazılamadı: %s" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2414 +msgid "A_uto update preview" +msgstr "Önizlemeyi o_tomatik güncelleştir" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2465 +msgid "`Default' is created." +msgstr "`Varsayılan' yaratıldı." + +#: ../plug-ins/gradient-flare/gradient-flare.c:2466 +msgid "Default" +msgstr "Öntanımlı" + +#. +#. * Scales +#. +#. +#. * Scales +#. +#: ../plug-ins/gradient-flare/gradient-flare.c:2745 +#: ../plug-ins/gradient-flare/gradient-flare.c:3582 +#: ../plug-ins/gradient-flare/gradient-flare.c:3687 +#: ../plug-ins/gradient-flare/gradient-flare.c:3824 +msgid "Parameters" +msgstr "Parametreler" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2771 +msgid "Ro_tation:" +msgstr "Dö_ndürme:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2783 +msgid "_Hue rotation:" +msgstr "_Renk tonu dönüşü:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2795 +msgid "Vector _angle:" +msgstr "Vektör _açısı:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2807 +msgid "Vector _length:" +msgstr "Vektör _uzunluğu:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2828 +msgid "A_daptive supersampling" +msgstr "U_yarlamalı Üstün Örnekleme" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2847 +msgid "_Max depth:" +msgstr "A_zami derinlik:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2857 +msgid "_Threshold" +msgstr "_Eşik" + +#: ../plug-ins/gradient-flare/gradient-flare.c:2995 +msgid "S_elector" +msgstr "S_eçici" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3059 +msgid "New Gradient Flare" +msgstr "Yeni Artımlı Işıma Geçişi" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3062 +msgid "Enter a name for the new GFlare" +msgstr "Yeni IşımaGeçişi için isim girin" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3082 +#, c-format +msgid "The name '%s' is used already!" +msgstr "'%s' adı zaten kullanımda!" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3138 +msgid "Copy Gradient Flare" +msgstr "Artımlı Işıma Geçişini Kopyala" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3141 +msgid "Enter a name for the copied GFlare" +msgstr "Kopyalanan IşımaGeçişi için isim girin" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3163 +#, c-format +msgid "The name `%s' is used already!" +msgstr "`%s' adı zaten kullanımda!" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3194 +msgid "Cannot delete!! There must be at least one GFlare." +msgstr "Silinemiyor! En az bir IşımaGeçişi olmalı." + +#: ../plug-ins/gradient-flare/gradient-flare.c:3204 +msgid "Delete Gradient Flare" +msgstr "Artımlı Işıma Geçişini Sil" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3276 +#, c-format +msgid "not found %s in gflares_list" +msgstr "%s ışımageçişi_listesinde bulunamadı" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3317 +msgid "Gradient Flare Editor" +msgstr "Artımlı Işıma Geçişi Düzenleyicisi" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3321 +msgid "Rescan Gradients" +msgstr "Artımlı Geçişleri Yeniden Tara" + +#. Glow +#: ../plug-ins/gradient-flare/gradient-flare.c:3446 +msgid "Glow Paint Options" +msgstr "Parıltı Boyama Seçenekleri" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3457 +#: ../plug-ins/gradient-flare/gradient-flare.c:3485 +#: ../plug-ins/gradient-flare/gradient-flare.c:3513 +msgid "Opacity:" +msgstr "Opaklık:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3470 +#: ../plug-ins/gradient-flare/gradient-flare.c:3498 +#: ../plug-ins/gradient-flare/gradient-flare.c:3526 +msgid "Paint mode:" +msgstr "Boyama kipi:" + +#. Rays +#: ../plug-ins/gradient-flare/gradient-flare.c:3474 +msgid "Rays Paint Options" +msgstr "Işınların Boyama Seçenekleri" + +#. Rays +#: ../plug-ins/gradient-flare/gradient-flare.c:3502 +msgid "Second Flares Paint Options" +msgstr "İkinci Işıma Boyaması Seçenekleri" + +#. +#. * Gradient Menus +#. +#: ../plug-ins/gradient-flare/gradient-flare.c:3555 +#: ../plug-ins/gradient-flare/gradient-flare.c:3658 +#: ../plug-ins/gradient-flare/gradient-flare.c:3797 +msgid "Gradients" +msgstr "Renk Geçişleri" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3566 +#: ../plug-ins/gradient-flare/gradient-flare.c:3671 +#: ../plug-ins/gradient-flare/gradient-flare.c:3808 +msgid "Radial gradient:" +msgstr "Işınsal renk geçişi:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3570 +#: ../plug-ins/gradient-flare/gradient-flare.c:3675 +msgid "Angular gradient:" +msgstr "Açısal artımlı geçişi:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3574 +#: ../plug-ins/gradient-flare/gradient-flare.c:3679 +msgid "Angular size gradient:" +msgstr "Artımlı geçişin açısal boyutu:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3594 +#: ../plug-ins/gradient-flare/gradient-flare.c:3699 +#: ../plug-ins/gradient-flare/gradient-flare.c:3836 +msgid "Size (%):" +msgstr "Boyut (%):" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3606 +#: ../plug-ins/gradient-flare/gradient-flare.c:3711 +#: ../plug-ins/gradient-flare/gradient-flare.c:3848 +msgid "Rotation:" +msgstr "Döndürme:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3618 +#: ../plug-ins/gradient-flare/gradient-flare.c:3724 +#: ../plug-ins/gradient-flare/gradient-flare.c:3861 +msgid "Hue rotation:" +msgstr "Renk tonu dönüşü:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3632 +msgid "G_low" +msgstr "Pa_rıltı" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3736 +msgid "# of Spikes:" +msgstr "# Çivi:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3748 +msgid "Spike thickness:" +msgstr "Çivi kalınlığı:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3762 +msgid "_Rays" +msgstr "I_şınlar" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3812 +msgid "Size factor gradient:" +msgstr "Artımlı geçiş değişkeni boyutu:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3816 +msgid "Probability gradient:" +msgstr "Artımlı geçiş olasılığı:" + +#. +#. * Shape Radio Button Frame +#. +#: ../plug-ins/gradient-flare/gradient-flare.c:3878 +msgid "Shape of Second Flares" +msgstr "İkinci Işıma Şekli" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3886 +#: ../plug-ins/imagemap/imap_menu.c:222 +msgid "Circle" +msgstr "Daire" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3903 +#: ../plug-ins/imagemap/imap_menu.c:224 +msgid "Polygon" +msgstr "Çok kenarlı" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3936 +msgid "Random seed:" +msgstr "Rasgele besleme:" + +#: ../plug-ins/gradient-flare/gradient-flare.c:3950 +msgid "_Second Flares" +msgstr "İ_kinci Işımalar" + +#: ../plug-ins/help-browser/dialog.c:186 +#: ../plug-ins/help-browser/dialog.c:1121 +msgid "GIMP Help Browser" +msgstr "GIMP Yardım Gezgini" + +#: ../plug-ins/help-browser/dialog.c:564 +msgid "Go back one page" +msgstr "Bir sayfa geri git" + +#: ../plug-ins/help-browser/dialog.c:569 +msgid "Go forward one page" +msgstr "Bir sayfa ileri git" + +#: ../plug-ins/help-browser/dialog.c:574 +msgid "_Reload" +msgstr "_Yeniden Yükle" + +#: ../plug-ins/help-browser/dialog.c:574 +msgid "Reload current page" +msgstr "Şimdiki sayfayı yeniden yükle" + +#: ../plug-ins/help-browser/dialog.c:579 +msgid "_Stop" +msgstr "_Dur" + +#: ../plug-ins/help-browser/dialog.c:579 +msgid "Stop loading this page" +msgstr "Sayfanın yüklenmesini durdur" + +#: ../plug-ins/help-browser/dialog.c:584 +msgid "Go to the index page" +msgstr "İndeks sayfasına git" + +#: ../plug-ins/help-browser/dialog.c:589 +msgid "C_opy location" +msgstr "Yeri k_opyala" + +#: ../plug-ins/help-browser/dialog.c:590 +msgid "Copy the location of this page to the clipboard" +msgstr "Bu sayfanın yerini panoya kopyala" + +#: ../plug-ins/help-browser/dialog.c:610 +msgid "Find text in current page" +msgstr "Şimdiki sayfada metni bul" + +#: ../plug-ins/help-browser/dialog.c:615 +msgid "Find _Again" +msgstr "Y_eniden Bul" + +#: ../plug-ins/help-browser/dialog.c:634 +msgid "S_how Index" +msgstr "İndeksi _Göster" + +#: ../plug-ins/help-browser/dialog.c:635 +msgid "Toggle the visibility of the sidebar" +msgstr "Kenar çubuğu görünürlüğünü değiştir" + +#: ../plug-ins/help-browser/dialog.c:656 +msgid "Visit the GIMP documentation website" +msgstr "GIMP belgeleme sitesine git" + +#: ../plug-ins/help-browser/dialog.c:1162 +msgid "Find:" +msgstr "Bul:" + +#: ../plug-ins/help-browser/dialog.c:1179 +msgctxt "search" +msgid "_Previous" +msgstr "_Önceki" + +#: ../plug-ins/help-browser/dialog.c:1191 +msgctxt "search" +msgid "_Next" +msgstr "_Sonraki" + +#: ../plug-ins/help/gimphelpdomain.c:181 +#, c-format +msgid "The help pages for '%s' are not available." +msgstr "'%s' için yardım sayfalarına şu an bakılamıyor." + +#: ../plug-ins/help/gimphelpdomain.c:187 +msgid "The GIMP user manual is not available." +msgstr "GIMP kullanıcı rehberine şu an bakılamıyor." + +#: ../plug-ins/help/gimphelpdomain.c:188 +msgid "" +"Please make sure gimp-help-en is installed, or the appropriate gimp-help " +"package for your language." +msgstr "" +"Lütfen gimp-help-en ya da diliniz için uygun gimp-help paketi kurulu " +"olduğundan emin olun." + +#: ../plug-ins/help/gimphelpdomain.c:197 +msgid "Perhaps you are missing GIO backends and need to install GVFS?" +msgstr "GIO arkauçları eksik olabilir ve GVFS yüklemeniz gerekebilir?" + +#: ../plug-ins/help/gimphelpdomain.c:216 +#, c-format +msgid "Help ID '%s' unknown" +msgstr "'%s' yardım kimliği bilinmiyor" + +#: ../plug-ins/help/gimphelplocale.c:209 +#, c-format +msgid "Loading index from '%s'" +msgstr "İçerik '%s' üzerinden yükleniyor" + +#: ../plug-ins/help/gimphelplocale.c:267 +#, c-format +msgid "" +"Parse error in '%s':\n" +"%s" +msgstr "" +"'%s' içinde ayrıştırma hatası:\n" +"%s" + +#: ../plug-ins/ifs-compose/ifs-compose.c:334 +msgid "Create an Iterated Function System (IFS) fractal" +msgstr "Ötelenmiş İşlev Sistemi (IFS) kesiri oluştur" + +#: ../plug-ins/ifs-compose/ifs-compose.c:346 +msgid "_IFS Fractal..." +msgstr "_IFS Kesiri..." + +#. X +#: ../plug-ins/ifs-compose/ifs-compose.c:526 +#: ../plug-ins/lighting/lighting-ui.c:527 +#: ../plug-ins/map-object/map-object-ui.c:675 +#: ../plug-ins/map-object/map-object-ui.c:729 +#: ../plug-ins/map-object/map-object-ui.c:997 +#: ../plug-ins/map-object/map-object-ui.c:1046 +msgid "X:" +msgstr "X:" + +#. Y +#: ../plug-ins/ifs-compose/ifs-compose.c:540 +#: ../plug-ins/lighting/lighting-ui.c:541 +#: ../plug-ins/map-object/map-object-ui.c:689 +#: ../plug-ins/map-object/map-object-ui.c:742 +#: ../plug-ins/map-object/map-object-ui.c:1010 +#: ../plug-ins/map-object/map-object-ui.c:1057 +#: ../plug-ins/map-object/map-object-ui.c:1155 +msgid "Y:" +msgstr "Y:" + +#. Asym +#: ../plug-ins/ifs-compose/ifs-compose.c:582 +msgid "Asymmetry:" +msgstr "Asimetri:" + +#. Shear +#: ../plug-ins/ifs-compose/ifs-compose.c:596 +msgid "Shear:" +msgstr "Kesme:" + +#. Simple color control section +#: ../plug-ins/ifs-compose/ifs-compose.c:641 +msgid "Simple" +msgstr "Basit" + +#: ../plug-ins/ifs-compose/ifs-compose.c:650 +msgid "IFS Fractal: Target" +msgstr "IFS Kesiri: Hedef" + +#: ../plug-ins/ifs-compose/ifs-compose.c:656 +msgid "Scale hue by:" +msgstr "Renk tonunu şuna göre ölçekle:" + +#: ../plug-ins/ifs-compose/ifs-compose.c:671 +msgid "Scale value by:" +msgstr "Değeri şuna göre ayarla:" + +#. Full color control section +#: ../plug-ins/ifs-compose/ifs-compose.c:688 +msgid "Full" +msgstr "Tam" + +#: ../plug-ins/ifs-compose/ifs-compose.c:696 +msgid "IFS Fractal: Red" +msgstr "IFS Kesiri: Kırmızı" + +#: ../plug-ins/ifs-compose/ifs-compose.c:704 +msgid "IFS Fractal: Green" +msgstr "IFS Kesiri: Yeşil" + +#: ../plug-ins/ifs-compose/ifs-compose.c:712 +msgid "IFS Fractal: Blue" +msgstr "IFS Kesiri: Mavi" + +#: ../plug-ins/ifs-compose/ifs-compose.c:720 +msgid "IFS Fractal: Black" +msgstr "IFS Kesiri: Siyah" + +#: ../plug-ins/ifs-compose/ifs-compose.c:770 +msgid "IFS Fractal" +msgstr "IFS Kesiri" + +#: ../plug-ins/ifs-compose/ifs-compose.c:868 +msgid "Spatial Transformation" +msgstr "Uzaysal Dönüşüm" + +#: ../plug-ins/ifs-compose/ifs-compose.c:874 +msgid "Color Transformation" +msgstr "Renk Dönüşümü" + +#: ../plug-ins/ifs-compose/ifs-compose.c:884 +msgid "Relative probability:" +msgstr "Nispi olasılık:" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1059 +#: ../plug-ins/imagemap/imap_menu.c:163 +msgid "Select _All" +msgstr "Hepsini _Seç" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1063 +msgid "Re_center" +msgstr "Yeniden_ortala" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1063 +msgid "Recompute Center" +msgstr "Merkezi yeniden hesapla" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1067 +msgid "Render Options" +msgstr "Tarama Seçenekleri" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1073 +#: ../plug-ins/imagemap/imap_cmd_move.c:86 +#: ../plug-ins/imagemap/imap_cmd_object_move.c:57 +msgid "Move" +msgstr "Taşı" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1076 +msgid "Rotate" +msgstr "Döndür" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1076 +msgid "Rotate / Scale" +msgstr "Döndür / Ölçekle" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1079 +msgid "Stretch" +msgstr "Germe" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1177 +msgid "IFS Fractal Render Options" +msgstr "IFS Kesirli Tarama Seçenekleri" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1199 +msgid "Max. memory:" +msgstr "Azami hafıza:" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1226 +msgid "Subdivide:" +msgstr "Tekrar Bölme:" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1239 +msgid "Spot radius:" +msgstr "Nokta yarıçapı:" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1304 +#, c-format +msgid "Rendering IFS (%d/%d)" +msgstr "IFS taranıyor (%d/%d)" + +#: ../plug-ins/ifs-compose/ifs-compose.c:1470 +#, c-format +msgid "Transformation %s" +msgstr "Dönüştürme %s" + +#: ../plug-ins/ifs-compose/ifs-compose.c:2379 +msgid "Save failed" +msgstr "Kaydetme işlemi başarısız" + +#: ../plug-ins/ifs-compose/ifs-compose.c:2460 +#: ../plug-ins/ifs-compose/ifs-compose.c:2473 +msgid "Open failed" +msgstr "Açma işlemi başarısız" + +#: ../plug-ins/ifs-compose/ifs-compose.c:2468 +#, c-format +msgid "File '%s' doesn't seem to be an IFS Fractal file." +msgstr "'%s' dosyası bir IFS Kesir dosyası gibi görünmüyor." + +#: ../plug-ins/ifs-compose/ifs-compose.c:2508 +msgid "Save as IFS Fractal file" +msgstr "IFS Kesir dosyası olarak kaydet" + +#: ../plug-ins/ifs-compose/ifs-compose.c:2545 +msgid "Open IFS Fractal file" +msgstr "IFS Kesir dosyasını aç" + +#: ../plug-ins/imagemap/imap_about.c:43 +msgid "Image Map Plug-In" +msgstr "Resim Eşleme Eklentisi" + +#: ../plug-ins/imagemap/imap_about.c:47 +msgid "Copyright © 1999-2005 by Maurits Rijk" +msgstr "Telif Hakkı © 1999-2005 Maurits Rijk" + +#: ../plug-ins/imagemap/imap_about.c:49 +msgid "Released under the GNU General Public License" +msgstr "GNU Genel Kamu Lisansı ile yayımlanmıştır" + +#: ../plug-ins/imagemap/imap_circle.c:64 +msgid "C_ircle" +msgstr "D_aire" + +#: ../plug-ins/imagemap/imap_circle.c:264 +msgid "Center _x:" +msgstr "Merkez _x:" + +#: ../plug-ins/imagemap/imap_circle.c:269 +#: ../plug-ins/imagemap/imap_circle.c:276 +#: ../plug-ins/imagemap/imap_circle.c:282 ../plug-ins/imagemap/imap_grid.c:250 +#: ../plug-ins/imagemap/imap_grid.c:256 +#: ../plug-ins/imagemap/imap_polygon.c:505 +#: ../plug-ins/imagemap/imap_polygon.c:513 +#: ../plug-ins/imagemap/imap_rectangle.c:394 +#: ../plug-ins/imagemap/imap_rectangle.c:401 +#: ../plug-ins/imagemap/imap_rectangle.c:408 +#: ../plug-ins/imagemap/imap_rectangle.c:415 +msgid "pixels" +msgstr "piksel" + +#: ../plug-ins/imagemap/imap_circle.c:271 +msgid "Center _y:" +msgstr "Merkez _y:" + +#: ../plug-ins/imagemap/imap_cmd_clear.c:51 +msgid "Clear" +msgstr "Temizle" + +#: ../plug-ins/imagemap/imap_cmd_create.c:58 +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:151 +msgid "Create" +msgstr "Oluştur" + +#: ../plug-ins/imagemap/imap_cmd_cut.c:55 +#: ../plug-ins/imagemap/imap_cmd_cut_object.c:51 +#: ../plug-ins/imagemap/imap_menu.c:159 +msgid "Cut" +msgstr "Kes" + +#: ../plug-ins/imagemap/imap_cmd_delete.c:57 +#: ../plug-ins/imagemap/imap_menu.c:162 +msgid "Delete" +msgstr "Sil" + +#: ../plug-ins/imagemap/imap_cmd_delete_point.c:61 +#: ../plug-ins/imagemap/imap_menu.c:179 +msgid "Delete Point" +msgstr "Nokta sil" + +#: ../plug-ins/imagemap/imap_cmd_edit_object.c:54 +msgid "Edit Object" +msgstr "Nesneyi Düzenle" + +#. Create the areas +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:117 +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:147 +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:251 +msgid "Use Gimp Guides" +msgstr "Gimp Kılavuzlarını Kullan" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:160 +msgid "Al_ternate" +msgstr "Al_ternatif" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:165 +msgid "A_ll" +msgstr "T_ümü" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:169 +msgid "Add Additional Guides" +msgstr "Ek Klavuzlar Ekle" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:177 +msgid "L_eft border" +msgstr "S_ol sınır" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:181 +msgid "_Right border" +msgstr "S_ağ sınır" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:185 +msgid "_Upper border" +msgstr "_Üst sınır" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:189 +msgid "Lo_wer border" +msgstr "_Alt sınır" + +#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:197 +msgid "_Base URL:" +msgstr "_Ana Adres:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:74 +#: ../plug-ins/imagemap/imap_cmd_guides.c:140 +msgid "Create Guides" +msgstr "Kılavuz Oluştur" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:113 +#, c-format +msgid "Resulting Guide Bounds: %d,%d to %d,%d (%d areas)" +msgstr "Neticelendirme Klavuzu Sınırlamaları: %d,%d to %d,%d (%d alan)" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:144 +msgid "" +"Guides are pre-defined rectangles covering the image. You define them by " +"their width, height, and spacing from each other. This allows you to rapidly " +"create the most common image map type - image collection of \"thumbnails\", " +"suitable for navigation bars." +msgstr "" +"Rehberler resmi kaplayan ön tanımlı dikdörtgenlerdir. Onları genişliğine, " +"yüksekliğine ve birbirileri arasındaki mesafeye göre tanımlayabilirsiniz. Bu " +"sizin hızla en yakın resim eşleme biçimini, \"önizlemelerin\" resim " +"derlemesini oluşturmanıza olanak tanır, gezinti çubukları için uygundur." + +#: ../plug-ins/imagemap/imap_cmd_guides.c:170 +msgid "_Left start at:" +msgstr "_Sol başlangıç:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:180 +msgid "_Top start at:" +msgstr "_Üst başlangıç:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:185 +msgid "_Horz. spacing:" +msgstr "_Yatay aralık:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:191 +msgid "_No. across:" +msgstr "_Geçiş sayısı:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:197 +msgid "_Vert. spacing:" +msgstr "_Dikey aralık:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:203 +msgid "No. _down:" +msgstr "Düşey sayısı:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:212 +msgid "Base _URL:" +msgstr "Ana A_dres:" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:237 +msgid "Resulting Guide Bounds: 0,0 to 0,0 (0 areas)" +msgstr "Neticelendirme Klavuzu Sınırlamaları: 0,0 to 0,0 (0 alan)" + +#: ../plug-ins/imagemap/imap_cmd_guides.c:272 +msgid "Guides" +msgstr "Kılavuzlar" + +#: ../plug-ins/imagemap/imap_cmd_insert_point.c:62 +#: ../plug-ins/imagemap/imap_menu.c:178 +msgid "Insert Point" +msgstr "Nokta Ekle" + +#: ../plug-ins/imagemap/imap_cmd_move_down.c:53 +#: ../plug-ins/imagemap/imap_cmd_object_down.c:55 +#: ../plug-ins/imagemap/imap_menu.c:176 +msgid "Move Down" +msgstr "Aşağı Taşı" + +#: ../plug-ins/imagemap/imap_cmd_move_sash.c:68 +msgid "Move Sash" +msgstr "Kuşağı Taşı" + +#: ../plug-ins/imagemap/imap_cmd_move_selected.c:56 +msgid "Move Selected Objects" +msgstr "Seçilen NEsneyi Taşı" + +#: ../plug-ins/imagemap/imap_cmd_move_to_front.c:51 +msgid "Move To Front" +msgstr "Öne Taşı" + +#: ../plug-ins/imagemap/imap_cmd_move_up.c:53 +#: ../plug-ins/imagemap/imap_cmd_object_up.c:55 +#: ../plug-ins/imagemap/imap_menu.c:175 +msgid "Move Up" +msgstr "Yukarı Taşı" + +#: ../plug-ins/imagemap/imap_cmd_paste.c:51 +#: ../plug-ins/imagemap/imap_menu.c:161 +msgid "Paste" +msgstr "Yapıştır" + +#: ../plug-ins/imagemap/imap_cmd_select.c:53 +msgid "Select" +msgstr "Seç" + +#: ../plug-ins/imagemap/imap_cmd_select_next.c:51 +msgid "Select Next" +msgstr "Sonrakini Seç" + +#: ../plug-ins/imagemap/imap_cmd_select_prev.c:51 +msgid "Select Previous" +msgstr "Öncekini Seç" + +#: ../plug-ins/imagemap/imap_cmd_select_region.c:64 +msgid "Select Region" +msgstr "Bölge Seç" + +#: ../plug-ins/imagemap/imap_cmd_send_to_back.c:51 +msgid "Send To Back" +msgstr "Geri Gönder" + +#: ../plug-ins/imagemap/imap_cmd_unselect.c:53 +msgid "Unselect" +msgstr "Seçme" + +#: ../plug-ins/imagemap/imap_cmd_unselect_all.c:56 +msgid "Unselect All" +msgstr "Seçimi Temizle" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:196 +msgid "Link Type" +msgstr "Bağlantı Türü" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:205 +msgid "_Web Site" +msgstr "_Ağ Sayfası" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:211 +msgid "_Ftp Site" +msgstr "_Ftp Sitesi" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:217 +msgid "_Gopher" +msgstr "_Gopher" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:223 +msgid "Ot_her" +msgstr "D_iğer" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:229 +msgid "F_ile" +msgstr "_Dosya" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:235 +msgid "WAI_S" +msgstr "WAI_S" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:241 +msgid "Tel_net" +msgstr "Tel_net" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:247 +msgid "e-_mail" +msgstr "e-_posta" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:253 +msgid "_URL to activate when this area is clicked: (required)" +msgstr "Bu alana tıklandığında aktifleştirilecek _URL: (gerekli)" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:255 +msgid "Select HTML file" +msgstr "HTML dosyası seç" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:264 +msgid "Relati_ve link" +msgstr "Nis_pi bağlantı" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:270 +msgid "_Target frame name/ID: (optional - used for FRAMES only)" +msgstr "" +"_Hedef çerçeve adı/ID: (isteğe bağlı - sadece ÇERÇEVELER için kullanılır)" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:273 +msgid "ALT te_xt: (optional)" +msgstr "ALT me_tin: (isteğe bağlı)" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:276 +msgid "_Link" +msgstr "_Bağlantı" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:310 +msgid "Dimensions" +msgstr "Boyutlar" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:314 +msgid "Pre_view" +msgstr "Ön_izleme" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:352 +msgid "_JavaScript" +msgstr "_JavaScript" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:451 +msgid "Area Settings" +msgstr "Alan Ayarları" + +#: ../plug-ins/imagemap/imap_edit_area_info.c:493 +#, c-format +msgid "Area #%d Settings" +msgstr "Alan #%d Ayarları" + +#: ../plug-ins/imagemap/imap_file.c:48 ../plug-ins/imagemap/imap_menu.c:71 +msgid "Error opening file" +msgstr "Dosya açarken hata" + +#: ../plug-ins/imagemap/imap_file.c:68 +msgid "Load Image Map" +msgstr "Görüntü Eşlemini Yükle" + +#: ../plug-ins/imagemap/imap_file.c:123 +msgid "Save Image Map" +msgstr "Görüntü Eşlemini Kaydet" + +#: ../plug-ins/imagemap/imap_grid.c:197 +msgid "Grid Settings" +msgstr "Izgara Ayarları" + +#: ../plug-ins/imagemap/imap_grid.c:201 +msgid "_Snap-to grid enabled" +msgstr "Izgaraya hi_zalama etkinleştirildi" + +#: ../plug-ins/imagemap/imap_grid.c:207 +msgid "Grid Visibility and Type" +msgstr "Izgara Görünürlüğü ve Biçimi" + +#: ../plug-ins/imagemap/imap_grid.c:214 +msgid "_Hidden" +msgstr "_Gizli" + +#: ../plug-ins/imagemap/imap_grid.c:222 +msgid "_Lines" +msgstr "_Satırlar" + +#: ../plug-ins/imagemap/imap_grid.c:231 +msgid "C_rosses" +msgstr "Çap_razlar" + +#: ../plug-ins/imagemap/imap_grid.c:239 +msgid "Grid Granularity" +msgstr "Izgara ortalama öğe boyu" + +#: ../plug-ins/imagemap/imap_grid.c:246 +msgid "_Width" +msgstr "_Genişlik" + +#: ../plug-ins/imagemap/imap_grid.c:252 +msgid "_Height" +msgstr "_Yükseklik" + +#: ../plug-ins/imagemap/imap_grid.c:266 +msgid "Grid Offset" +msgstr "Izgara Konumu" + +#: ../plug-ins/imagemap/imap_grid.c:273 +msgid "pixels from l_eft" +msgstr "so_ldan benekler" + +#: ../plug-ins/imagemap/imap_grid.c:278 +msgid "pixels from _top" +msgstr "üs_tten benekler" + +#: ../plug-ins/imagemap/imap_grid.c:289 +msgid "_Preview" +msgstr "Ö_nizleme" + +#: ../plug-ins/imagemap/imap_main.c:122 +msgid "Create a clickable imagemap" +msgstr "Tıklanabilir resim eşlemi oluştur" + +#: ../plug-ins/imagemap/imap_main.c:127 +msgid "_Image Map..." +msgstr "_Görüntü Eşlemi..." + +#: ../plug-ins/imagemap/imap_main.c:517 +#: ../plug-ins/imagemap/imap_settings.c:171 +msgid "" +msgstr "" + +#: ../plug-ins/imagemap/imap_main.c:660 +msgid "Some data has been changed!" +msgstr "Bazı veriler değişti!" + +#: ../plug-ins/imagemap/imap_main.c:663 +msgid "Do you really want to discard your changes?" +msgstr "Yaptığınız değişikliklerden vazgeçmek istiyor musunuz?" + +#: ../plug-ins/imagemap/imap_main.c:873 +#, c-format +msgid "File \"%s\" saved." +msgstr "\"%s\" dosyası kaydedildi." + +#: ../plug-ins/imagemap/imap_main.c:877 +msgid "Couldn't save file:" +msgstr "Kaydedilemedi:" + +#: ../plug-ins/imagemap/imap_main.c:890 +msgid "Image size has changed." +msgstr "Şeklin boyutu değiştirildi." + +#: ../plug-ins/imagemap/imap_main.c:891 +msgid "Resize area's?" +msgstr "Alan yeniden boyutlandırılsın mı?" + +#: ../plug-ins/imagemap/imap_main.c:925 +msgid "Couldn't read file:" +msgstr "Dosya okunamadı:" + +#: ../plug-ins/imagemap/imap_main.c:972 +#, c-format +msgid "URL: %s" +msgstr "Adres: %s" + +#: ../plug-ins/imagemap/imap_menu.c:110 +#, c-format +msgid "_Undo %s" +msgstr "_Geri al %s" + +#: ../plug-ins/imagemap/imap_menu.c:123 +#, c-format +msgid "_Redo %s" +msgstr "_Yinele %s" + +#: ../plug-ins/imagemap/imap_menu.c:146 +msgid "_File" +msgstr "_Dosya" + +#: ../plug-ins/imagemap/imap_menu.c:147 +msgid "_Open..." +msgstr "_Aç..." + +#: ../plug-ins/imagemap/imap_menu.c:147 +msgid "Open" +msgstr "Aç" + +#: ../plug-ins/imagemap/imap_menu.c:149 +msgid "_Save..." +msgstr "_Kaydet..." + +#: ../plug-ins/imagemap/imap_menu.c:149 +msgid "Save" +msgstr "Kaydet" + +#: ../plug-ins/imagemap/imap_menu.c:151 +msgid "Save _As..." +msgstr "_Farklı Kaydet..." + +#: ../plug-ins/imagemap/imap_menu.c:156 +msgid "_Edit" +msgstr "_Düzenle" + +#: ../plug-ins/imagemap/imap_menu.c:157 +msgid "Undo" +msgstr "Geri al" + +#: ../plug-ins/imagemap/imap_menu.c:158 +msgid "Redo" +msgstr "İleri al" + +#: ../plug-ins/imagemap/imap_menu.c:164 +msgid "D_eselect All" +msgstr "Tüm Seçimi _Kaldır" + +#: ../plug-ins/imagemap/imap_menu.c:166 +msgid "Edit Area _Info..." +msgstr "Alan _Bilgisini Düzenle..." + +#: ../plug-ins/imagemap/imap_menu.c:167 +msgid "Edit selected area info" +msgstr "Seçilmiş alan bilgisini düzenle" + +#: ../plug-ins/imagemap/imap_menu.c:168 +msgid "Preferences" +msgstr "Tercihler" + +#: ../plug-ins/imagemap/imap_menu.c:170 +msgid "Move to Front" +msgstr "Öne al" + +#: ../plug-ins/imagemap/imap_menu.c:172 +msgid "Send to Back" +msgstr "Arkaya Gönder" + +#: ../plug-ins/imagemap/imap_menu.c:174 +msgid "Delete Area" +msgstr "Alanı sil" + +#: ../plug-ins/imagemap/imap_menu.c:181 +msgid "_View" +msgstr "_Görünüm" + +#: ../plug-ins/imagemap/imap_menu.c:182 +msgid "Source..." +msgstr "Kaynak..." + +#: ../plug-ins/imagemap/imap_menu.c:183 +msgid "Zoom in" +msgstr "Yakınlaş" + +#: ../plug-ins/imagemap/imap_menu.c:184 +msgid "Zoom out" +msgstr "Uzaklaş" + +#: ../plug-ins/imagemap/imap_menu.c:185 +msgid "_Zoom To" +msgstr "_Yaklaş" + +#: ../plug-ins/imagemap/imap_menu.c:187 +msgid "_Mapping" +msgstr "_Eşleme" + +#: ../plug-ins/imagemap/imap_menu.c:188 +msgid "Edit Map Info..." +msgstr "Eşlem Bilgisini Düzenle..." + +#: ../plug-ins/imagemap/imap_menu.c:189 +msgid "Edit Map Info" +msgstr "Eşlem Bilgisini Düzenle" + +#: ../plug-ins/imagemap/imap_menu.c:191 +msgid "_Tools" +msgstr "_Araçlar" + +#: ../plug-ins/imagemap/imap_menu.c:192 +msgid "Grid Settings..." +msgstr "Izgara Ayarları..." + +#: ../plug-ins/imagemap/imap_menu.c:194 +msgid "Use GIMP Guides..." +msgstr "GIMP kılavuzunu kullan" + +#: ../plug-ins/imagemap/imap_menu.c:196 +msgid "Create Guides..." +msgstr "Kılavuz oluştur" + +#: ../plug-ins/imagemap/imap_menu.c:199 +msgid "_Help" +msgstr "_Yardım" + +#: ../plug-ins/imagemap/imap_menu.c:200 +msgid "_Contents" +msgstr "_İçindekiler" + +#: ../plug-ins/imagemap/imap_menu.c:203 +msgid "_Zoom" +msgstr "_Yakınlaştır" + +#: ../plug-ins/imagemap/imap_menu.c:208 +msgid "Area List" +msgstr "Alan Listesi" + +#: ../plug-ins/imagemap/imap_menu.c:218 +msgid "Arrow" +msgstr "Ok" + +#: ../plug-ins/imagemap/imap_menu.c:219 +msgid "Select existing area" +msgstr "Mevcut alanı seç" + +#: ../plug-ins/imagemap/imap_menu.c:221 +msgid "Define Rectangle area" +msgstr "Dikdörtgen alanı tanımla" + +#: ../plug-ins/imagemap/imap_menu.c:223 +msgid "Define Circle/Oval area" +msgstr "Daire/oval alanı tanımla" + +#: ../plug-ins/imagemap/imap_menu.c:225 +msgid "Define Polygon area" +msgstr "Çokgen alanı tanımla" + +#: ../plug-ins/imagemap/imap_polygon.c:72 +msgid "_Polygon" +msgstr "_Çokgen" + +#: ../plug-ins/imagemap/imap_polygon.c:474 +msgid "x (pixels)" +msgstr "x (benek)" + +#: ../plug-ins/imagemap/imap_polygon.c:483 +msgid "y (pixels)" +msgstr "y (benek)" + +#: ../plug-ins/imagemap/imap_polygon.c:521 +msgid "_Insert" +msgstr "_Ekle" + +#: ../plug-ins/imagemap/imap_polygon.c:527 +msgid "A_ppend" +msgstr "So_na ekle" + +#: ../plug-ins/imagemap/imap_polygon.c:533 +msgid "_Remove" +msgstr "_Kaldır" + +#: ../plug-ins/imagemap/imap_preferences.c:236 +msgid "Couldn't save resource file:" +msgstr "Kaynak dosya kaydedilemez:" + +#: ../plug-ins/imagemap/imap_preferences.c:350 +msgid "General" +msgstr "Genel" + +#: ../plug-ins/imagemap/imap_preferences.c:354 +msgid "Default Map Type" +msgstr "Varsayılan Eşlem Türü" + +#: ../plug-ins/imagemap/imap_preferences.c:373 +msgid "_Prompt for area info" +msgstr "_Alan bilgisi için bilgi istemi" + +#: ../plug-ins/imagemap/imap_preferences.c:375 +msgid "_Require default URL" +msgstr "Öntanımlı URL gerekli" + +#: ../plug-ins/imagemap/imap_preferences.c:377 +msgid "Show area _handles" +msgstr "Alan _işleçlerini göster" + +#: ../plug-ins/imagemap/imap_preferences.c:379 +msgid "_Keep NCSA circles true" +msgstr "NCSA çemberlerini tam olarak _sakla" + +#: ../plug-ins/imagemap/imap_preferences.c:381 +msgid "Show area URL _tip" +msgstr "URL ö_nerisi alanını göster" + +#: ../plug-ins/imagemap/imap_preferences.c:384 +msgid "_Use double-sized grab handles" +msgstr "İki katı boyutlu tutacakları _kullan" + +#: ../plug-ins/imagemap/imap_preferences.c:391 +msgid "Menu" +msgstr "Menü" + +#: ../plug-ins/imagemap/imap_preferences.c:395 +msgid "Number of _undo levels (1 - 99):" +msgstr "Seviyeleri _geri alma sayısı (1-99)" + +#: ../plug-ins/imagemap/imap_preferences.c:400 +msgid "Number of M_RU entries (1 - 16):" +msgstr "M_RU girişleri sayısı (1 - 16):" + +#: ../plug-ins/imagemap/imap_preferences.c:409 +msgid "Select Color" +msgstr "Renk Seç" + +#: ../plug-ins/imagemap/imap_preferences.c:424 +msgid "Normal:" +msgstr "Normal:" + +#: ../plug-ins/imagemap/imap_preferences.c:428 +msgid "Selected:" +msgstr "Seçili:" + +#: ../plug-ins/imagemap/imap_preferences.c:437 +msgid "Co_ntiguous Region" +msgstr "Bi_tişik Bölge" + +#: ../plug-ins/imagemap/imap_preferences.c:443 +msgid "_Automatically convert" +msgstr "_Otomatik dönüştür" + +#: ../plug-ins/imagemap/imap_preferences.c:454 +msgid "General Preferences" +msgstr "Genel Yeğlenenler" + +#: ../plug-ins/imagemap/imap_rectangle.c:69 +msgid "_Rectangle" +msgstr "D_örtgen" + +#: ../plug-ins/imagemap/imap_rectangle.c:389 +msgid "Upper left _x:" +msgstr "Üst sol _x:" + +#: ../plug-ins/imagemap/imap_rectangle.c:396 +msgid "Upper left _y:" +msgstr "Üst sol _y:" + +#: ../plug-ins/imagemap/imap_selection.c:377 +msgid "#" +msgstr "#" + +#: ../plug-ins/imagemap/imap_selection.c:388 +msgid "URL" +msgstr "Adres" + +#: ../plug-ins/imagemap/imap_selection.c:406 +msgid "ALT Text" +msgstr "ALT Metni" + +#: ../plug-ins/imagemap/imap_selection.c:416 +msgid "Target" +msgstr "Hedef" + +#: ../plug-ins/imagemap/imap_settings.c:90 +msgid "Settings for this Mapfile" +msgstr "Bu Eşlem Dosyasının ayarları" + +#: ../plug-ins/imagemap/imap_settings.c:94 +msgid "Filename:" +msgstr "Dosya adı:" + +#: ../plug-ins/imagemap/imap_settings.c:97 +msgid "Image name:" +msgstr "Görüntü adı:" + +#: ../plug-ins/imagemap/imap_settings.c:98 +msgid "Select Image File" +msgstr "Görüntü Dosyası Seç" + +#: ../plug-ins/imagemap/imap_settings.c:102 +msgid "_Title:" +msgstr "_Başlık:" + +#: ../plug-ins/imagemap/imap_settings.c:104 +msgid "Aut_hor:" +msgstr "Ya_zar:" + +#: ../plug-ins/imagemap/imap_settings.c:106 +msgid "Default _URL:" +msgstr "Varsayılan _Adres:" + +#: ../plug-ins/imagemap/imap_settings.c:108 +msgid "_Description:" +msgstr "_Açıklama:" + +#: ../plug-ins/imagemap/imap_settings.c:130 +msgid "Map File Format" +msgstr "Eşlem Dosyası Biçimi" + +#: ../plug-ins/imagemap/imap_source.c:63 +msgid "View Source" +msgstr "Kaynağını Göster" + +#: ../plug-ins/lighting/lighting-apply.c:105 +#: ../plug-ins/lighting/lighting-ui.c:1019 +msgid "Lighting Effects" +msgstr "Işıklandırma Etkileri" + +#: ../plug-ins/lighting/lighting-main.c:192 +msgid "Apply various lighting effects to an image" +msgstr "Bir görüntüye çeşitli ışıklandırma etkileri uygula" + +#: ../plug-ins/lighting/lighting-main.c:197 +msgid "_Lighting Effects..." +msgstr "_Işıklandırma Etkileri..." + +#. General options +#: ../plug-ins/lighting/lighting-ui.c:295 +#: ../plug-ins/map-object/map-object-ui.c:472 +msgid "General Options" +msgstr "Genel Seçenekler" + +#: ../plug-ins/lighting/lighting-ui.c:303 +msgid "T_ransparent background" +msgstr "Sa_ydam artalan" + +#: ../plug-ins/lighting/lighting-ui.c:313 +msgid "Make destination image transparent where bump height is zero" +msgstr "Tümsek yüksekliğinin sıfır olduğu hedef resmi saydam yap" + +#: ../plug-ins/lighting/lighting-ui.c:316 +msgid "Cre_ate new image" +msgstr "Yeni görüntü _oluştur" + +#: ../plug-ins/lighting/lighting-ui.c:326 +#: ../plug-ins/map-object/map-object-ui.c:541 +msgid "Create a new image when applying filter" +msgstr "Süzgeç uygulanırken yeni bir görüntü oluştur" + +#: ../plug-ins/lighting/lighting-ui.c:328 +msgid "High _quality preview" +msgstr "Yüksek _kaliteli önizleme" + +#: ../plug-ins/lighting/lighting-ui.c:338 +msgid "Enable/disable high quality preview" +msgstr "Yüksek kaliteli önizlemeyi aktifleştir/pasifleştir" + +#: ../plug-ins/lighting/lighting-ui.c:345 +msgid "Distance:" +msgstr "Uzaklık:" + +#: ../plug-ins/lighting/lighting-ui.c:378 +#: ../plug-ins/map-object/map-object-ui.c:619 +msgid "Light Settings" +msgstr "Işık Ayarları" + +#: ../plug-ins/lighting/lighting-ui.c:391 +msgid "Light 1" +msgstr "Işık 1" + +#: ../plug-ins/lighting/lighting-ui.c:392 +msgid "Light 2" +msgstr "Işık 2" + +#: ../plug-ins/lighting/lighting-ui.c:393 +msgid "Light 3" +msgstr "Işık 3" + +#: ../plug-ins/lighting/lighting-ui.c:394 +msgid "Light 4" +msgstr "Işık 4" + +#: ../plug-ins/lighting/lighting-ui.c:395 +msgid "Light 5" +msgstr "Işık 5" + +#: ../plug-ins/lighting/lighting-ui.c:396 +msgid "Light 6" +msgstr "Işık 6" + +#: ../plug-ins/lighting/lighting-ui.c:410 +msgid "Color:" +msgstr "Renk:" + +#: ../plug-ins/lighting/lighting-ui.c:417 +msgid "Directional" +msgstr "Doğrusal" + +#: ../plug-ins/lighting/lighting-ui.c:418 +msgid "Point" +msgstr "Nokta" + +#: ../plug-ins/lighting/lighting-ui.c:432 +#: ../plug-ins/map-object/map-object-ui.c:642 +msgid "Type of light source to apply" +msgstr "Uygulanacak ışık kaynağının türü" + +#: ../plug-ins/lighting/lighting-ui.c:434 +#: ../plug-ins/map-object/map-object-ui.c:644 +msgid "Select lightsource color" +msgstr "Işıkkaynağı rengini seçin" + +#: ../plug-ins/lighting/lighting-ui.c:448 +#: ../plug-ins/map-object/map-object-ui.c:657 +msgid "Set light source color" +msgstr "Işık kaynağı rengini seçin" + +#: ../plug-ins/lighting/lighting-ui.c:456 +msgid "_Intensity:" +msgstr "_Yoğunluk:" + +#: ../plug-ins/lighting/lighting-ui.c:464 +msgid "Light intensity" +msgstr "Işık yoğunluğu" + +#: ../plug-ins/lighting/lighting-ui.c:467 +#: ../plug-ins/map-object/map-object-ui.c:659 +#: ../plug-ins/map-object/map-object-ui.c:986 +#: ../plug-ins/print/print-page-layout.c:343 +msgid "Position" +msgstr "Konum" + +#: ../plug-ins/lighting/lighting-ui.c:485 +#: ../plug-ins/map-object/map-object-ui.c:683 +msgid "Light source X position in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının X konumu" + +#: ../plug-ins/lighting/lighting-ui.c:500 +#: ../plug-ins/map-object/map-object-ui.c:697 +msgid "Light source Y position in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının Y konumu" + +#: ../plug-ins/lighting/lighting-ui.c:507 +msgid "_Z:" +msgstr "_Z:" + +#: ../plug-ins/lighting/lighting-ui.c:515 +#: ../plug-ins/map-object/map-object-ui.c:711 +msgid "Light source Z position in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının Z konumu" + +#: ../plug-ins/lighting/lighting-ui.c:535 +#: ../plug-ins/map-object/map-object-ui.c:737 +msgid "Light source X direction in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının X yönü" + +#: ../plug-ins/lighting/lighting-ui.c:549 +#: ../plug-ins/map-object/map-object-ui.c:750 +msgid "Light source Y direction in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının Y yönü" + +#: ../plug-ins/lighting/lighting-ui.c:555 +#: ../plug-ins/map-object/map-object-ui.c:703 +#: ../plug-ins/map-object/map-object-ui.c:755 +#: ../plug-ins/map-object/map-object-ui.c:1023 +#: ../plug-ins/map-object/map-object-ui.c:1068 +#: ../plug-ins/map-object/map-object-ui.c:1167 +msgid "Z:" +msgstr "Z:" + +#: ../plug-ins/lighting/lighting-ui.c:563 +#: ../plug-ins/map-object/map-object-ui.c:763 +msgid "Light source Z direction in XYZ space" +msgstr "XYZ alanındaki ışık kaynağının Z yönü" + +#: ../plug-ins/lighting/lighting-ui.c:566 +msgid "I_solate" +msgstr "Ya_lıtma" + +#: ../plug-ins/lighting/lighting-ui.c:575 +msgid "Lighting preset:" +msgstr "Işıklandırma önayarı:" + +#: ../plug-ins/lighting/lighting-ui.c:621 +msgid "Material Properties" +msgstr "Malzeme özellikleri" + +#: ../plug-ins/lighting/lighting-ui.c:639 +msgid "_Glowing:" +msgstr "_Parıltı:" + +#: ../plug-ins/lighting/lighting-ui.c:658 +#: ../plug-ins/map-object/map-object-ui.c:824 +msgid "Amount of original color to show where no direct light falls" +msgstr "Doğrudan ışığın düşmediği yeri gösteren özgün renk miktarı" + +#: ../plug-ins/lighting/lighting-ui.c:672 +msgid "_Bright:" +msgstr "_Parlak:" + +#: ../plug-ins/lighting/lighting-ui.c:691 +#: ../plug-ins/map-object/map-object-ui.c:853 +msgid "Intensity of original color when lit by a light source" +msgstr "Hafif bir kaynak tarafından aydınlatılan özgün rengin yoğunluğu" + +#: ../plug-ins/lighting/lighting-ui.c:705 +msgid "_Shiny:" +msgstr "_Parlak:" + +#: ../plug-ins/lighting/lighting-ui.c:724 +#: ../plug-ins/map-object/map-object-ui.c:925 +msgid "Controls how intense the highlights will be" +msgstr "Vurgulamanın ne kadar yoğun olacağını denetler" + +#: ../plug-ins/lighting/lighting-ui.c:737 +msgid "_Polished:" +msgstr "_Cilalı:" + +#: ../plug-ins/lighting/lighting-ui.c:756 +#: ../plug-ins/map-object/map-object-ui.c:954 +msgid "Higher values makes the highlights more focused" +msgstr "Yüksek değerler daha fazla odaklanmış vurgular yapar" + +#. Metallic +#: ../plug-ins/lighting/lighting-ui.c:766 +msgid "_Metallic" +msgstr "_Metalik" + +#: ../plug-ins/lighting/lighting-ui.c:803 +msgid "E_nable bump mapping" +msgstr "Derinlik etkisini e_tkinleştir" + +#: ../plug-ins/lighting/lighting-ui.c:817 +msgid "Enable/disable bump-mapping (image depth)" +msgstr "Derinlik etkisini (resim derinliği) etkinleştir/etkisizleştir" + +#: ../plug-ins/lighting/lighting-ui.c:839 +msgid "Bumpm_ap image:" +msgstr "Derinlik e-tkisi resmi:" + +#: ../plug-ins/lighting/lighting-ui.c:843 +msgid "Logarithmic" +msgstr "Logaritmik" + +#: ../plug-ins/lighting/lighting-ui.c:855 +msgid "Cu_rve:" +msgstr "Eğri:" + +#: ../plug-ins/lighting/lighting-ui.c:860 +msgid "Ma_ximum height:" +msgstr "Mak_simum yükseklik" + +#: ../plug-ins/lighting/lighting-ui.c:870 +msgid "Maximum height for bumps" +msgstr "Tümsekler için en fazla yükseklik" + +#: ../plug-ins/lighting/lighting-ui.c:894 +msgid "E_nable environment mapping" +msgstr "Çevre eşlemesini e_tkinleştir" + +#: ../plug-ins/lighting/lighting-ui.c:908 +msgid "Enable/disable environment-mapping (reflection)" +msgstr "Çevre eşlemesini etkinleştir/iptal et (yansıma)" + +#: ../plug-ins/lighting/lighting-ui.c:925 +msgid "En_vironment image:" +msgstr "Or_tam görüntüsü:" + +#: ../plug-ins/lighting/lighting-ui.c:928 +msgid "Environment image to use" +msgstr "Kullanılacak ortam görüntüsü" + +#: ../plug-ins/lighting/lighting-ui.c:950 +msgid "Op_tions" +msgstr "Seçenekle_r" + +#: ../plug-ins/lighting/lighting-ui.c:954 +#: ../plug-ins/map-object/map-object-ui.c:1291 +msgid "_Light" +msgstr "_Işık" + +#: ../plug-ins/lighting/lighting-ui.c:958 +#: ../plug-ins/map-object/map-object-ui.c:1295 +msgid "_Material" +msgstr "_Madde" + +#: ../plug-ins/lighting/lighting-ui.c:962 +msgid "_Bump Map" +msgstr "_Derinlik Etkisi" + +#: ../plug-ins/lighting/lighting-ui.c:966 +msgid "_Environment Map" +msgstr "_Ortam Eşlemi" + +#: ../plug-ins/lighting/lighting-ui.c:1082 +#: ../plug-ins/map-object/map-object-ui.c:1397 +msgid "Recompute preview image" +msgstr "Önizleme remini yeniden hesapla" + +#: ../plug-ins/lighting/lighting-ui.c:1084 +msgid "I_nteractive" +msgstr "_Etkileşimli" + +#: ../plug-ins/lighting/lighting-ui.c:1098 +msgid "Enable/disable real time preview of changes" +msgstr "Değişikliklerin gerçek zamanlı önizlemelerini etkinleştir/iptal et" + +#: ../plug-ins/lighting/lighting-ui.c:1137 +msgid "Save Lighting Preset" +msgstr "Öntanımlı Aydınlatmayı Kaydet" + +#: ../plug-ins/lighting/lighting-ui.c:1281 +msgid "Load Lighting Preset" +msgstr "Öntanımlı Aydınlatmayı Yükle" + +#: ../plug-ins/map-object/map-object-apply.c:276 +msgid "Map to plane" +msgstr "Düzlem oluşturuluyor" + +#: ../plug-ins/map-object/map-object-apply.c:279 +msgid "Map to sphere" +msgstr "Küre oluşturuluyor" + +#: ../plug-ins/map-object/map-object-apply.c:282 +msgid "Map to box" +msgstr "Kutu oluşturuluyor" + +#: ../plug-ins/map-object/map-object-apply.c:285 +msgid "Map to cylinder" +msgstr "Silindir oluşturuluyor" + +#: ../plug-ins/map-object/map-object-main.c:193 +msgid "Map the image to an object (plane, sphere, box or cylinder)" +msgstr "Resmi bir nesneye eşle (düzlem, küre, kutu veya silindir)" + +#: ../plug-ins/map-object/map-object-main.c:198 +msgid "Map _Object..." +msgstr "_Nesne Eşleme..." + +#: ../plug-ins/map-object/map-object-ui.c:248 +#: ../plug-ins/map-object/map-object-ui.c:1305 +msgid "_Box" +msgstr "_Kutu" + +#: ../plug-ins/map-object/map-object-ui.c:266 +#: ../plug-ins/map-object/map-object-ui.c:1311 +msgid "C_ylinder" +msgstr "_Silindir" + +#: ../plug-ins/map-object/map-object-ui.c:484 +msgid "Map to:" +msgstr "Nesne" + +#: ../plug-ins/map-object/map-object-ui.c:488 +msgid "Plane" +msgstr "Düzlem" + +#: ../plug-ins/map-object/map-object-ui.c:489 +msgid "Sphere" +msgstr "Küre" + +#: ../plug-ins/map-object/map-object-ui.c:490 +msgid "Box" +msgstr "Kutu" + +#: ../plug-ins/map-object/map-object-ui.c:501 +msgid "Type of object to map to" +msgstr "Eşlenecek nesne biçimi" + +#: ../plug-ins/map-object/map-object-ui.c:503 +msgid "Transparent background" +msgstr "Şeffaf artalan" + +#: ../plug-ins/map-object/map-object-ui.c:514 +msgid "Make image transparent outside object" +msgstr "Görüntüyü nesnenin dışında saydam yap" + +#: ../plug-ins/map-object/map-object-ui.c:516 +msgid "Tile source image" +msgstr "Kaynak görüntüyü döşe" + +#: ../plug-ins/map-object/map-object-ui.c:527 +msgid "Tile source image: useful for infinite planes" +msgstr "Kaynak görüntüyü döşe: sonsuz düzlemler için kullanışlı" + +#: ../plug-ins/map-object/map-object-ui.c:530 +msgid "Create new image" +msgstr "Yeni görüntü oluştur" + +#: ../plug-ins/map-object/map-object-ui.c:549 +msgid "Enable _antialiasing" +msgstr "_Yumuşatmayı etkinleştir" + +#: ../plug-ins/map-object/map-object-ui.c:560 +msgid "Enable/disable jagged edges removal (antialiasing)" +msgstr "Aktif/pasif pürüzlü kenarları kaldırma (antialiasing)" + +#: ../plug-ins/map-object/map-object-ui.c:576 +msgid "Antialiasing quality. Higher is better, but slower" +msgstr "Yumuşatma kalitesi. Yüksek daha iyidir ama daha yavaştır" + +#: ../plug-ins/map-object/map-object-ui.c:593 +msgid "Stop when pixel differences are smaller than this value" +msgstr "Benek farklılıkları bu değerden daha küçük olduğu zaman dur" + +#: ../plug-ins/map-object/map-object-ui.c:628 +msgid "Point light" +msgstr "Noktadan ışık" + +#: ../plug-ins/map-object/map-object-ui.c:629 +msgid "Directional light" +msgstr "Yönlü ışık" + +#: ../plug-ins/map-object/map-object-ui.c:630 +msgid "No light" +msgstr "Işık yok" + +#: ../plug-ins/map-object/map-object-ui.c:635 +msgid "Lightsource type:" +msgstr "Işık kaynağı türü:" + +#: ../plug-ins/map-object/map-object-ui.c:649 +msgid "Lightsource color:" +msgstr "Işık kaynağı rengi:" + +#: ../plug-ins/map-object/map-object-ui.c:714 +msgid "Direction Vector" +msgstr "Doğrultu Vektörü" + +#: ../plug-ins/map-object/map-object-ui.c:790 +msgid "Intensity Levels" +msgstr "Yoğunluk Seviyeleri" + +#: ../plug-ins/map-object/map-object-ui.c:809 +msgid "Ambient:" +msgstr "Çevre:" + +#: ../plug-ins/map-object/map-object-ui.c:838 +#: ../plug-ins/map-object/map-object-ui.c:881 +msgid "Diffuse:" +msgstr "Dağıt:" + +#: ../plug-ins/map-object/map-object-ui.c:862 +msgid "Reflectivity" +msgstr "Yansıma" + +#: ../plug-ins/map-object/map-object-ui.c:896 +msgid "Higher values makes the object reflect more light (appear lighter)" +msgstr "" +"Yüksek değerler nesnenin daha fazla ışık yansıtmasını sağlar (daha aydınlık " +"görünür)" + +#: ../plug-ins/map-object/map-object-ui.c:910 +msgid "Specular:" +msgstr "Yansıtıcı:" + +#: ../plug-ins/map-object/map-object-ui.c:939 +msgid "Highlight:" +msgstr "Vurgulama:" + +#: ../plug-ins/map-object/map-object-ui.c:1000 +msgid "Object X position in XYZ space" +msgstr "XYZ alanında nesnenin X konumu" + +#: ../plug-ins/map-object/map-object-ui.c:1013 +msgid "Object Y position in XYZ space" +msgstr "XYZ alanında nesnenin Y konumu" + +#: ../plug-ins/map-object/map-object-ui.c:1026 +msgid "Object Z position in XYZ space" +msgstr "XYZ alanında nesnenin Z konumu" + +#: ../plug-ins/map-object/map-object-ui.c:1049 +msgid "Rotation angle about X axis" +msgstr "X eksenindeki döndürme açısı" + +#: ../plug-ins/map-object/map-object-ui.c:1060 +msgid "Rotation angle about Y axis" +msgstr "Y eksenindeki döndürme açısı" + +#: ../plug-ins/map-object/map-object-ui.c:1071 +msgid "Rotation angle about Z axis" +msgstr "Z eksenindeki döndürme açısı" + +#: ../plug-ins/map-object/map-object-ui.c:1097 +msgid "Front:" +msgstr "Yazıyüzü:" + +#: ../plug-ins/map-object/map-object-ui.c:1097 +msgid "Back:" +msgstr "Geri:" + +#: ../plug-ins/map-object/map-object-ui.c:1105 +msgid "Map Images to Box Faces" +msgstr "Resimleri Kutunun Yüzeylerine Eşle" + +#: ../plug-ins/map-object/map-object-ui.c:1146 +msgid "X scale (size)" +msgstr "X ölçeği (boyut)" + +#: ../plug-ins/map-object/map-object-ui.c:1158 +msgid "Y scale (size)" +msgstr "Y ölçeği (boyut)" + +#: ../plug-ins/map-object/map-object-ui.c:1170 +msgid "Z scale (size)" +msgstr "Z ölçeği (boyut)" + +#: ../plug-ins/map-object/map-object-ui.c:1193 +#: ../plug-ins/print/print-page-layout.c:402 +msgid "_Top:" +msgstr "_Tepe:" + +#: ../plug-ins/map-object/map-object-ui.c:1193 +#: ../plug-ins/print/print-page-layout.c:421 +msgid "_Bottom:" +msgstr "_Alt:" + +#: ../plug-ins/map-object/map-object-ui.c:1198 +msgid "Images for the Cap Faces" +msgstr "Kapak Yüzeyleri için resimler" + +#: ../plug-ins/map-object/map-object-ui.c:1227 +#: ../plug-ins/print/print-page-layout.c:219 +msgid "Size" +msgstr "Boyut" + +#: ../plug-ins/map-object/map-object-ui.c:1238 +msgid "R_adius:" +msgstr "Y_arıçap:" + +#: ../plug-ins/map-object/map-object-ui.c:1242 +msgid "Cylinder radius" +msgstr "Silindir yarıçapı" + +#: ../plug-ins/map-object/map-object-ui.c:1256 +msgid "Cylinder length" +msgstr "Silindir uzunluğu" + +#: ../plug-ins/map-object/map-object-ui.c:1287 +msgid "O_ptions" +msgstr "_Seçenekler" + +#: ../plug-ins/map-object/map-object-ui.c:1299 +msgid "O_rientation" +msgstr "_Konum" + +#: ../plug-ins/map-object/map-object-ui.c:1335 +msgid "Map to Object" +msgstr "Nesne Eşleme" + +#: ../plug-ins/map-object/map-object-ui.c:1415 +msgid "Show preview _wireframe" +msgstr "Kılavuz _çizgileri göster" + +#: ../plug-ins/maze/maze-algorithms.c:279 +msgid "Constructing maze using Prim's Algorithm" +msgstr "Prim Algoritması kullanarak labirent oluşturmak" + +#: ../plug-ins/maze/maze-algorithms.c:488 +msgid "Constructing tileable maze using Prim's Algorithm" +msgstr "Prim's Algoritması kullanılarak döşenebilir labirent inşa ediliyor" + +#: ../plug-ins/maze/maze-dialog.c:172 +msgid "Maze" +msgstr "Labirent" + +#. The maze size frame +#: ../plug-ins/maze/maze-dialog.c:194 +msgid "Maze Size" +msgstr "Labirent Boyutu" + +#. entscale == Entry and Scale pair function found in pixelize.c +#: ../plug-ins/maze/maze-dialog.c:208 +msgid "Width (pixels):" +msgstr "Genişlik (benek):" + +#: ../plug-ins/maze/maze-dialog.c:220 ../plug-ins/maze/maze-dialog.c:236 +msgid "Pieces:" +msgstr "Parçalar:" + +#: ../plug-ins/maze/maze-dialog.c:225 +msgid "Height (pixels):" +msgstr "Yükseklik (benek):" + +#. The maze algorithm frame +#: ../plug-ins/maze/maze-dialog.c:244 +msgid "Algorithm" +msgstr "Algoritma" + +#: ../plug-ins/maze/maze-dialog.c:270 +msgid "Depth first" +msgstr "Derinlemesine" + +#: ../plug-ins/maze/maze-dialog.c:271 +msgid "Prim's algorithm" +msgstr "Prim Algoritması" + +#: ../plug-ins/maze/maze-dialog.c:390 +msgid "" +"Selection size is not even.\n" +"Tileable maze won't work perfectly." +msgstr "" +"Seçim büyüklüğü dengeli değil.\n" +"Döşenebilir labirent düzgün çalışmayacak." + +#: ../plug-ins/maze/maze.c:123 +msgid "Draw a labyrinth" +msgstr "Bir labirent çiz" + +#: ../plug-ins/maze/maze.c:130 +msgid "_Maze..." +msgstr "_Labirent..." + +#: ../plug-ins/maze/maze.c:426 +msgid "Drawing maze" +msgstr "Labirent çizimi" + +#: ../plug-ins/metadata/xmp-parse.c:240 +#, c-format +msgid "Error: No XMP packet found" +msgstr "Hata: XMP paketi bulunamadı" + +#: ../plug-ins/metadata/xmp-parse.c:255 +#, c-format +msgid "Error on line %d char %d: %s" +msgstr "%d. satırda %d karakteri hatalı: %s" + +#: ../plug-ins/metadata/xmp-parse.c:277 +#, c-format +msgid "Expected text or optional element <%s>, found <%s> instead" +msgstr "Beklenen metin ya da seçimli öğe <%s>, <%s> yerine bulundu" + +#: ../plug-ins/metadata/xmp-parse.c:281 +#, c-format +msgid "Expected element <%s>, found <%s> instead" +msgstr "Beklenen eleman <%s>, <%s> yerine bulundu" + +#: ../plug-ins/metadata/xmp-parse.c:296 +#, c-format +msgid "Unknown element <%s>" +msgstr "Bilinmeyen öğe <%s>" + +#: ../plug-ins/metadata/xmp-parse.c:325 +#, c-format +msgid "Unknown attribute \"%s\"=\"%s\" in element <%s>" +msgstr "<%s> öğesinde \"%s\"=\"%s\" bilinmeyen özelliği" + +#: ../plug-ins/metadata/xmp-parse.c:655 +#, c-format +msgid "Required attribute rdf:about missing in <%s>" +msgstr "<%s> için rdf özelliği gerekiyor" + +#: ../plug-ins/metadata/xmp-parse.c:881 +#, c-format +msgid "Nested elements (<%s>) are not allowed in this context" +msgstr "İç içe öğelere (<%s>) bu durumda izin verilmiyor" + +#: ../plug-ins/metadata/xmp-parse.c:1010 +#, c-format +msgid "End of element <%s> not expected in this context" +msgstr "<%s> öğesinin sonu bu içerikte beklenmiyor" + +#: ../plug-ins/metadata/xmp-parse.c:1112 +#, c-format +msgid "The current element (<%s>) cannot contain text" +msgstr "Geçerli öğe (<%s>) metin içeremez" + +#: ../plug-ins/metadata/xmp-parse.c:1137 +msgid "XMP packets must start with " +msgstr "XMP paketleri ile başlamalıdır" + +#: ../plug-ins/metadata/xmp-parse.c:1151 +msgid "XMP packets must end with " +msgstr "XMP paketleri ile bitmelidir" + +#: ../plug-ins/metadata/xmp-parse.c:1164 +msgid "XMP cannot contain XML comments or processing instructions" +msgstr "XMP, XML yorumları veya işleme yönergeleri içeremez" + +#: ../plug-ins/pagecurl/pagecurl.c:216 +msgid "Curl up one of the image corners" +msgstr "Resmin köşelerinden birini kıvır" + +#: ../plug-ins/pagecurl/pagecurl.c:221 +msgid "_Pagecurl..." +msgstr "_Sayfa Kıvırma" + +#: ../plug-ins/pagecurl/pagecurl.c:440 +msgid "Pagecurl Effect" +msgstr "Sayfa Kıvırma Etkisi" + +#: ../plug-ins/pagecurl/pagecurl.c:462 +msgid "Curl Location" +msgstr "Kıvırma Yeri" + +#: ../plug-ins/pagecurl/pagecurl.c:481 +msgid "Lower right" +msgstr "Aşağı sağ" + +#: ../plug-ins/pagecurl/pagecurl.c:482 +msgid "Lower left" +msgstr "Aşağı sol" + +#: ../plug-ins/pagecurl/pagecurl.c:483 +msgid "Upper left" +msgstr "Yukarı sol" + +#: ../plug-ins/pagecurl/pagecurl.c:484 +msgid "Upper right" +msgstr "Yukarı sağ" + +#: ../plug-ins/pagecurl/pagecurl.c:524 +msgid "Curl Orientation" +msgstr "Kıvırma Yönlendirmesi" + +#: ../plug-ins/pagecurl/pagecurl.c:568 +msgid "_Shade under curl" +msgstr "_Kıvrımın altındaki gölge" + +#: ../plug-ins/pagecurl/pagecurl.c:581 +msgid "Current gradient (reversed)" +msgstr "Mevcut Artımlı Geçiş (ters çevrilmiş)" + +#: ../plug-ins/pagecurl/pagecurl.c:586 +msgid "Current gradient" +msgstr "Geçerli eğim" + +#: ../plug-ins/pagecurl/pagecurl.c:591 +msgid "Foreground / background colors" +msgstr "Önalan / artalan renkleri" + +#: ../plug-ins/pagecurl/pagecurl.c:611 +msgid "_Opacity:" +msgstr "_Opaklık:" + +#: ../plug-ins/pagecurl/pagecurl.c:734 +msgid "Curl Layer" +msgstr "Kıvrım Katmanı" + +#: ../plug-ins/pagecurl/pagecurl.c:1022 +msgid "Page Curl" +msgstr "Sayfa Kıvırma" + +#: ../plug-ins/print/print-page-layout.c:148 +msgid "Ignore Page _Margins" +msgstr "Sayfa _Kenarlarını Yoksay" + +#: ../plug-ins/print/print-page-layout.c:294 +msgid "_X resolution:" +msgstr "_X çözünürlüğü:" + +#: ../plug-ins/print/print-page-layout.c:298 +msgid "_Y resolution:" +msgstr "_Y çözünürlüğü:" + +#: ../plug-ins/print/print-page-layout.c:369 +msgid "_Left:" +msgstr "_Sol:" + +#: ../plug-ins/print/print-page-layout.c:388 +msgid "_Right:" +msgstr "_Sağ:" + +#: ../plug-ins/print/print-page-layout.c:442 +msgid "C_enter:" +msgstr "_Merkez:" + +#: ../plug-ins/print/print-page-layout.c:450 +msgid "Horizontally" +msgstr "Yatay olarak" + +#: ../plug-ins/print/print-page-layout.c:451 +msgid "Vertically" +msgstr "Dikeysel" + +#: ../plug-ins/print/print-page-layout.c:452 +msgid "Both" +msgstr "Her ikisi" + +#: ../plug-ins/print/print.c:102 +msgid "Print the image" +msgstr "Görüntüyü yazdır" + +#: ../plug-ins/print/print.c:107 +msgid "_Print..." +msgstr "_Yazdır..." + +#: ../plug-ins/print/print.c:118 +msgid "Adjust page size and orientation for printing" +msgstr "Yazdırma işlemi için sayfa boyutu ve oryantasyonu ayarla" + +#: ../plug-ins/print/print.c:124 +msgid "Page Set_up" +msgstr "Sayfa _Ayarı" + +#: ../plug-ins/print/print.c:265 +msgid "Image Settings" +msgstr "Görüntü Ayarları" + +#: ../plug-ins/print/print.c:348 +msgid "An error occurred while trying to print:" +msgstr "Yazdırmaya çalışırken bir hata oluştu" + +#: ../plug-ins/print/print.c:375 +msgid "Printing" +msgstr "Yazdırma" + +#. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); +#: ../plug-ins/selection-to-path/pxl-outline.c:82 +msgid "Selection to Path" +msgstr "Yoldan Seçime" + +#: ../plug-ins/selection-to-path/selection-to-path.c:185 +msgid "No selection to convert" +msgstr "Çevrilecek bir seçim yok" + +#: ../plug-ins/selection-to-path/selection-to-path.c:302 +msgid "Selection to Path Advanced Settings" +msgstr "Gelişmiş Yol Ayarları Seçimi" + +#: ../plug-ins/twain/twain.c:87 +msgid "Capture an image from a TWAIN datasource" +msgstr "Bir TWAIN veri kaynağından bir görüntü alınıyor" + +#: ../plug-ins/twain/twain.c:352 +msgid "_Scanner/Camera..." +msgstr "_Tarayıcı/Kamera..." + +#. Initialize our progress dialog +#: ../plug-ins/twain/twain.c:486 +msgid "Transferring data from scanner/camera" +msgstr "Tarayıcıdan/kameradan veri aktarılıyor" + +#: ../plug-ins/win-snap/winsnap.c:865 +msgid "Grab" +msgstr "Yakala" + +#: ../plug-ins/win-snap/winsnap.c:881 +msgid "Grab a single window" +msgstr "Tek bir pencere tut" + +#: ../plug-ins/win-snap/winsnap.c:895 +msgid "Grab the whole screen" +msgstr "Tüm ekranı tut" + +#: ../plug-ins/win-snap/winsnap.c:911 +msgid "after" +msgstr "sonra" + +#: ../plug-ins/win-snap/winsnap.c:923 +msgid "Seconds delay" +msgstr "Saniye gecikmesi" + +#: ../plug-ins/win-snap/winsnap.c:930 +msgid "Include decorations" +msgstr "Süslemeleri içer" + +#: ../plug-ins/win-snap/winsnap.c:989 +msgid "Capture a window or desktop image" +msgstr "Bir pencere veya masaüstü resmi yakala" + +#: ../plug-ins/win-snap/winsnap.c:994 +msgid "_Screen Shot..." +msgstr "_Ekran Görüntüsü..." + +#: ../plug-ins/win-snap/winsnap.c:1142 +msgid "No data captured" +msgstr "Hiç veri yakalanmadı" diff --git a/multimedia/graphics/gimp/gimp/files/po-script-fu_gimp20-script-fu-tr.po b/multimedia/graphics/gimp/gimp/files/po-script-fu_gimp20-script-fu-tr.po new file mode 100644 index 0000000000..47476319ed --- /dev/null +++ b/multimedia/graphics/gimp/gimp/files/po-script-fu_gimp20-script-fu-tr.po @@ -0,0 +1,2775 @@ +# Copyright (C) 2001 Free Software Foundation, Inc. +# Ömer Fadıl USTA , 2002. +# Fatih Demir , 2001. +# Alper Ersoy , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: GIMP 1.3.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-08 20:00+0000\n" +"PO-Revision-Date: 2011-01-22 13:45+0000\n" +"Last-Translator: Ömer Fadıl USTA \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-08-09 06:12+0000\n" +"X-Generator: Launchpad (build 13628)\n" + +#: ../plug-ins/script-fu/script-fu-console.c:131 +#: ../plug-ins/script-fu/script-fu-console.c:198 +msgid "Script-Fu Console" +msgstr "Script-Fu Konsolu" + +#: ../plug-ins/script-fu/script-fu-console.c:194 +msgid "Welcome to TinyScheme" +msgstr "Minik şemaya hoşgeldiniz" + +#: ../plug-ins/script-fu/script-fu-console.c:200 +msgid "Interactive Scheme Development" +msgstr "Etkileşimli Şema Geliştirici" + +#: ../plug-ins/script-fu/script-fu-console.c:236 +msgid "_Browse..." +msgstr "_Gözat..." + +#: ../plug-ins/script-fu/script-fu-console.c:294 +msgid "Save Script-Fu Console Output" +msgstr "Script-Fu Uçbirimi Çıktısını Kaydet" + +#: ../plug-ins/script-fu/script-fu-console.c:341 +#, c-format +msgid "Could not open '%s' for writing: %s" +msgstr "Yazma için '%s' açılamadı: %s" + +#: ../plug-ins/script-fu/script-fu-console.c:370 +msgid "Script-Fu Procedure Browser" +msgstr "Script-Fu Yordamı Gezgini" + +#: ../plug-ins/script-fu/script-fu-eval.c:63 +msgid "Script-Fu evaluation mode only allows non-interactive invocation" +msgstr "Script-Fu değerlendirme kipi sadece etkileşimsiz çağrıma izin verir" + +#: ../plug-ins/script-fu/script-fu-interface.c:196 +msgid "Script-Fu cannot process two scripts at the same time." +msgstr "Script-Fu iki betiği aynı anda çalıştıramaz." + +#: ../plug-ins/script-fu/script-fu-interface.c:198 +#, c-format +msgid "You are already running the \"%s\" script." +msgstr "\"%s\" betiğini zaten çalıştırıyorsunuz." + +#: ../plug-ins/script-fu/script-fu-interface.c:224 +#, c-format +msgid "Script-Fu: %s" +msgstr "Script-Fu: %s" + +#. we add a colon after the label; +#. * some languages want an extra space here +#. +#: ../plug-ins/script-fu/script-fu-interface.c:288 +#, c-format +msgid "%s:" +msgstr "%s:" + +#: ../plug-ins/script-fu/script-fu-interface.c:336 +msgid "Script-Fu Color Selection" +msgstr "Script-Fu Renk Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:445 +msgid "Script-Fu File Selection" +msgstr "Script-Fu Dosya Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:448 +msgid "Script-Fu Folder Selection" +msgstr "Script-Fu Dizin Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:461 +msgid "Script-Fu Font Selection" +msgstr "Script-Fu Yazıtipi Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:469 +msgid "Script-Fu Palette Selection" +msgstr "Script-Fu Palet Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:478 +msgid "Script-Fu Pattern Selection" +msgstr "Script-Fu Desen Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:487 +msgid "Script-Fu Gradient Selection" +msgstr "Script-Fu Gradyan Secimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:496 +msgid "Script-Fu Brush Selection" +msgstr "Script-Fu Fırça Seçimi" + +#: ../plug-ins/script-fu/script-fu-interface.c:824 +#, c-format +msgid "Error while executing %s:" +msgstr "%s yürütülürken hata:" + +#: ../plug-ins/script-fu/script-fu-scripts.c:150 +msgid "Too few arguments to 'script-fu-register' call" +msgstr "'script-fu-register' çağrısında çok fazla bağımsız değişken" + +#: ../plug-ins/script-fu/script-fu-scripts.c:609 +#, c-format +msgid "Error while loading %s:" +msgstr "%s yüklenirken hata:" + +#: ../plug-ins/script-fu/script-fu-server.c:713 +msgid "Script-Fu Server Options" +msgstr "Script-Fu Sunucu Ayarları" + +#: ../plug-ins/script-fu/script-fu-server.c:718 +msgid "_Start Server" +msgstr "_Sunucuyu Başlat" + +#: ../plug-ins/script-fu/script-fu-server.c:746 +msgid "Server port:" +msgstr "Sunucu kapısı:" + +#: ../plug-ins/script-fu/script-fu-server.c:752 +msgid "Server logfile:" +msgstr "Sunucu günlük dosyası:" + +#: ../plug-ins/script-fu/script-fu.c:111 +msgid "Interactive console for Script-Fu development" +msgstr "Script-Fu geliştirmesi için etkileşimli uçbirim" + +#: ../plug-ins/script-fu/script-fu.c:117 +msgid "_Console" +msgstr "_Uçbirim" + +#: ../plug-ins/script-fu/script-fu.c:141 +msgid "Server for remote Script-Fu operation" +msgstr "Uzak Script-Fu işlemi için sunucu" + +#: ../plug-ins/script-fu/script-fu.c:146 +msgid "_Start Server..." +msgstr "Sunucuyu _Başlat..." + +#: ../plug-ins/script-fu/script-fu.c:302 +msgid "_GIMP Online" +msgstr "Çevrimiçi _GIMP" + +#: ../plug-ins/script-fu/script-fu.c:303 +msgid "_User Manual" +msgstr "_Kullanıcı Kılavuzu" + +#: ../plug-ins/script-fu/script-fu.c:306 +msgid "_Script-Fu" +msgstr "_Script-Fu" + +#: ../plug-ins/script-fu/script-fu.c:308 +msgid "_Test" +msgstr "_Dene" + +#: ../plug-ins/script-fu/script-fu.c:311 +msgid "_Buttons" +msgstr "_Düğmeler" + +#: ../plug-ins/script-fu/script-fu.c:313 +msgid "_Logos" +msgstr "_Logolar" + +#: ../plug-ins/script-fu/script-fu.c:315 +msgid "_Patterns" +msgstr "_Desenler" + +#: ../plug-ins/script-fu/script-fu.c:318 +msgid "_Web Page Themes" +msgstr "_Ağ Sayfası Temaları" + +#: ../plug-ins/script-fu/script-fu.c:320 +msgid "_Alien Glow" +msgstr "_Alien Glow" + +#: ../plug-ins/script-fu/script-fu.c:322 +msgid "_Beveled Pattern" +msgstr "_Eğimli Desen" + +#: ../plug-ins/script-fu/script-fu.c:324 +msgid "_Classic.Gimp.Org" +msgstr "_Classic.Gimp.Org" + +#: ../plug-ins/script-fu/script-fu.c:327 +msgid "Alpha to _Logo" +msgstr "_Logodan Görünüre" + +#: ../plug-ins/script-fu/script-fu.c:330 +msgid "Re-read all available Script-Fu scripts" +msgstr "Kullanılabilir tüm Script-Fu betiklerini yeniden oku" + +#: ../plug-ins/script-fu/script-fu.c:335 +msgid "_Refresh Scripts" +msgstr "Betikleri _Yenile" + +#: ../plug-ins/script-fu/script-fu.c:358 +msgid "" +"You can not use \"Refresh Scripts\" while a Script-Fu dialog box is open. " +"Please close all Script-Fu windows and try again." +msgstr "" +"Bir Script-Fu kutusu açıkken \"Betikleri Yenile\"yi kullanamazsınız. Lütfen " +"bütün Script-Fu pencerelerini kapatın ve yeniden deneyin." + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:1 +msgid "3D _Outline..." +msgstr "3B _Çerçeve..." + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 +msgid "Bumpmap (alpha layer) blur radius" +msgstr "Derinlik etkisi (görünür katman) bulanıklık yarıçapı" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 +msgid "Create a logo with outlined text and a drop shadow" +msgstr "Taslağı çizilmiş yazı ile bir logo ve gölge alanı oluştur" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:6 +msgid "Default bumpmap settings" +msgstr "Mevcut tümsek eşlem ayarları" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:5 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:3 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:3 +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:2 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:11 +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/chalk.scm.h:5 +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:8 +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:5 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:6 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:7 +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:2 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:7 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:3 +#: ../plug-ins/script-fu/scripts/slide.scm.h:2 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:5 +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:4 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/title-header.scm.h:2 +msgid "Font" +msgstr "Yazıtipi" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:6 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:4 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:4 +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:3 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:12 +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/chalk.scm.h:6 +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:9 +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:6 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:7 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:8 +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:3 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:8 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:4 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:6 +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:9 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:5 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/title-header.scm.h:3 +msgid "Font size (pixels)" +msgstr "Yazıyüzü boyutu (benek)" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:7 +msgid "Outline blur radius" +msgstr "Dış çizgi bulanıklık eğrisi" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:8 +msgid "" +"Outline the selected region (or alpha) with a pattern and add a drop shadow" +msgstr "" +"Seçilmiş bölge veya görünürün taslağını bir model ile çiz ve gölge alanı ekle" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:9 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:5 +#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:3 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:5 +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:5 +#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:3 +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:13 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:11 +msgid "Pattern" +msgstr "Desen" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:10 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:16 +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:6 +msgid "Shadow X offset" +msgstr "X göreli konum gölgesi" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:11 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:17 +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:7 +msgid "Shadow Y offset" +msgstr "Y göreli konum gölgesi" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:12 +msgid "Shadow blur radius" +msgstr "Bulanık yarıçap gölgesi" + +#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:13 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:10 +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:9 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:7 +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:6 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:17 +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/chalk.scm.h:7 +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:14 +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:9 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:11 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:13 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:18 +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:7 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:10 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:13 +#: ../plug-ins/script-fu/scripts/slide.scm.h:5 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:11 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:8 +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:11 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:8 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:14 +#: ../plug-ins/script-fu/scripts/title-header.scm.h:5 +msgid "Text" +msgstr "Metin" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 +msgid "3_D Truchet..." +msgstr "3_D Truchet..." + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:1 +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:1 +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:1 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:3 +#: ../plug-ins/script-fu/scripts/chalk.scm.h:1 +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:3 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:1 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:2 +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:1 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:1 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:1 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:1 +#: ../plug-ins/script-fu/scripts/truchet.scm.h:1 +msgid "Background color" +msgstr "Artalan rengi" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 +#: ../plug-ins/script-fu/scripts/truchet.scm.h:2 +msgid "Block size" +msgstr "Blok boyutu" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:4 +msgid "Create an image filled with a 3D Truchet pattern" +msgstr "3D Truchet şekli ile doldurulmuş bir resim oluştur" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:5 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:7 +msgid "End blend" +msgstr "Kaynaşımı sonlandır" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:6 +#: ../plug-ins/script-fu/scripts/truchet.scm.h:5 +msgid "Number of X tiles" +msgstr "X Kiremitlerinin sayısı" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:7 +#: ../plug-ins/script-fu/scripts/truchet.scm.h:6 +msgid "Number of Y tiles" +msgstr "Y kiremitlerinin sayısı" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:8 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:16 +msgid "Start blend" +msgstr "Kaynaşımı başlat" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:9 +msgid "Supersample" +msgstr "Üstörneklem" + +#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:10 +#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:4 +#: ../plug-ins/script-fu/scripts/truchet.scm.h:8 +msgid "Thickness" +msgstr "Kalınlık" + +#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:1 +msgid "Add B_evel..." +msgstr "E_ğim Ekle" + +#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 +msgid "Add a beveled border to an image" +msgstr "Bir görüntüye eğimli bir sınır ekle" + +#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:3 +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:12 +msgid "Keep bump layer" +msgstr "Tümsek katmanı koru" + +#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:5 +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:6 +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:8 +#: ../plug-ins/script-fu/scripts/slide.scm.h:6 +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:6 +msgid "Work on copy" +msgstr "Kopya üzerinde çalış" + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:1 +msgid "Add _Border..." +msgstr "_Sınır Ekle..." + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:2 +msgid "Add a border around an image" +msgstr "Bir görüntü etrafına bir sınır ekle" + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:3 +msgid "Border X size" +msgstr "Sınırın X büyüklüğü" + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:4 +msgid "Border Y size" +msgstr "Sınırın Y büyüklüğü" + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:5 +msgid "Border color" +msgstr "Sınır rengi" + +#: ../plug-ins/script-fu/scripts/addborder.scm.h:6 +msgid "Delta value on color" +msgstr "Renk üzerindeki değişim değeri" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 +msgid "Create an arrow graphic with an eerie glow for web pages" +msgstr "Web sayfaları için tuhaf bir ışık ile ok şekli oluştur" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 +msgid "Down" +msgstr "Aşağı" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:4 +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:5 +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:3 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:4 +#: ../plug-ins/script-fu/scripts/camo.scm.h:5 +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 +msgid "Flatten image" +msgstr "Görüntüyü düzleştir" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:5 +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:6 +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:4 +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:7 +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:6 +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:4 +msgid "Glow color" +msgstr "Işık rengi" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:6 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:3 +msgid "Left" +msgstr "Sol" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:7 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:4 +msgid "Orientation" +msgstr "Konum" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:8 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:6 +msgid "Right" +msgstr "Sağ" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:9 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:7 +#: ../plug-ins/script-fu/scripts/lava.scm.h:7 +msgid "Size" +msgstr "Boyut" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:10 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:8 +msgid "Up" +msgstr "Yukarı" + +#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:11 +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:9 +msgid "_Arrow..." +msgstr "_Ok..." + +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:2 +msgid "Bar height" +msgstr "Çubuk yüksekliği" + +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 +msgid "Bar length" +msgstr "Çubuk uzunluğu" + +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 +msgid "Create an Hrule graphic with an eerie glow for web pages" +msgstr "Web sayfaları için tuhaf bir ışık ile hrule şekli oluştur" + +#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 +#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 +msgid "_Hrule..." +msgstr "_Hrule..." + +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 +msgid "Create a bullet graphic with an eerie glow for web pages" +msgstr "Web sayfaları için tuhaf bir ışık ile koyu nokta şekli oluştur" + +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 +msgid "Radius" +msgstr "Yarıçap" + +#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 +#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 +msgid "_Bullet..." +msgstr "_Koyu nokta..." + +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:1 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:1 +msgid "B_utton..." +msgstr "D_üğme..." + +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 +msgid "Create a button graphic with an eerie glow for web pages" +msgstr "Web sayfaları için tuhaf bir ışık ile buton şekli oluştur" + +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 +msgid "Glow radius" +msgstr "Işık yarıçapı" + +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:9 +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:6 +msgid "Padding" +msgstr "Tampon" + +#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:10 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:8 +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:18 +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:8 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:11 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:14 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:9 +msgid "Text color" +msgstr "Metin rengi" + +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 +msgid "Add an eerie glow around the selected region (or alpha)" +msgstr "Seçilmiş bölgenin veya görünürün etrafına tuhaf bir ışık ekle" + +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 +msgid "Alien _Glow..." +msgstr "Tuhaf _Işık" + +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 +msgid "Create a logo with an alien glow around the text" +msgstr "Tuhaf ışık ile yazının etrafına bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 +msgid "Glow size (pixels * 4)" +msgstr "Işık hacmi (benek * 4)" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:1 +msgid "Add psychedelic outlines to the selected region (or alpha)" +msgstr "Seçilen bölge veya görünüre rengarenk dış çizgi ekle" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:2 +msgid "Alien _Neon..." +msgstr "Tuhaf _Neon..." + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 +msgid "Create a logo with psychedelic outlines around the text" +msgstr "Yazının etrafında rengarenk çerçeveli bir logo oluşturun" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 +msgid "Fade away" +msgstr "Karart" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 +msgid "Number of bands" +msgstr "Şeritlerin sayısı" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 +msgid "Width of bands" +msgstr "Bantların genişliği" + +#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 +msgid "Width of gaps" +msgstr "Aralıkların genişliği" + +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:1 +msgid "" +"Add a gradient effect, a drop shadow, and a background to the selected " +"region (or alpha)" +msgstr "" +"Eğimli bir etki, gölge ve artalanı seçili bölgeye (veya görünüre) ekleyin" + +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:3 +msgid "" +"Create a plain text logo with a gradient effect, a drop shadow, and a " +"background" +msgstr "Eğim etkili, gölge ve artalanlı bir düz yazı logosu oluşturun." + +#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:8 +msgid "_Basic I..." +msgstr "_Temel I..." + +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:1 +msgid "Add a shadow and a highlight to the selected region (or alpha)" +msgstr "Seçili bölge veya görünüre bir gölge veya vurgu ekleyin" + +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:2 +msgid "B_asic II..." +msgstr "T_emel II..." + +#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:4 +msgid "Create a simple logo with a shadow and a highlight" +msgstr "Bir gölgeli ve vurgulu basit bir logo oluşturun" + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:1 +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:1 +msgid "Bevel width" +msgstr "Eğimli genişlik" + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:2 +msgid "Create a simple, beveled button graphic for webpages" +msgstr "Web sayfaları için basit, kabarık bir buton oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:5 +msgid "Lower-right color" +msgstr "Alt-sağ renk" + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:7 +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:6 +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:11 +msgid "Pressed" +msgstr "Basılı" + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 +msgid "Simple _Beveled Button..." +msgstr "Yalın _Eğimli Düğme..." + +#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 +msgid "Upper-left color" +msgstr "Üst-sol renk" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:1 +msgid "Create a beveled pattern arrow for webpages" +msgstr "Web sayfaları için kabarık ok deseni oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:1 +msgid "Create a beveled pattern bullet for webpages" +msgstr "Web sayfaları için kabarık madde imi deseni oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 +msgid "Diameter" +msgstr "Çevre" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Saydam artalan" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 +msgid "Create a beveled pattern button for webpages" +msgstr "Web sayfaları için kabarık madde imi deseni oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:1 +msgid "Create a beveled pattern heading for webpages" +msgstr "Web sayfaları için kabarık başlık deseni oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 +msgid "H_eading..." +msgstr "B_aşlık" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:1 +msgid "Create a beveled pattern hrule for webpages" +msgstr "Web sayfaları için eğim desenli hrule oluştur" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:8 +#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:4 +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:7 +msgid "Height" +msgstr "Yükseklik" + +#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:4 +#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:5 +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:11 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:11 +msgid "Width" +msgstr "Genişlik" + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:1 +msgid "Blend Animation needs at least three source layers" +msgstr "Kaynaşık Canlandırma için en az üç katman gerekli" + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 +msgid "" +"Create intermediate layers to blend two or more layers over a background as " +"an animation" +msgstr "" +"İki ya da daha çok katmanı bir artalan üzerinde, canlandırma olarak " +"harmanlamak için ara katmanlar oluştur." + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:3 +msgid "Intermediate frames" +msgstr "Ara çerçeveler" + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:4 +msgid "Looped" +msgstr "Dönüşlü" + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 +msgid "Max. blur radius" +msgstr "En yüksek bulanıklık yarıçapı" + +#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:6 +msgid "_Blend..." +msgstr "_Kaynaşım..." + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:1 +msgid "" +"Add blended backgrounds, highlights, and shadows to the selected region (or " +"alpha)" +msgstr "" +"Seçilmiş bölgeye (ya da görünüre) kaynaşmış artalanlar, vurgular, ve " +"gölgeler ekle" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:3 +msgid "Blen_ded..." +msgstr "Kaynaş_tırıldı..." + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 +msgid "Blend mode" +msgstr "Kaynaşım kipi" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 +msgid "Create a logo with blended backgrounds, highlights, and shadows" +msgstr "Kaynaşmış artalanlar, vurgular, ve gölgelerle bir logo yap" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:6 +msgid "Custom Gradient" +msgstr "Seçimli Gradyan" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:8 +msgid "FG-BG-HSV" +msgstr "OP-AP-RDD" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:9 +msgid "FG-BG-RGB" +msgstr "ÖP-AP-KYM" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:10 +msgid "FG-Transparent" +msgstr "ÖP-Şeffaf" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:13 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:7 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/land.scm.h:3 +#: ../plug-ins/script-fu/scripts/lava.scm.h:2 +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:4 +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:9 +msgid "Gradient" +msgstr "Gradyan" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:14 +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:8 +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:9 +#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:3 +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:5 +#: ../plug-ins/script-fu/scripts/title-header.scm.h:4 +msgid "Gradient reverse" +msgstr "Tersten renk geçişi" + +#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:15 +msgid "Offset (pixels)" +msgstr "Ofset (piksel)" + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:1 +msgid "Add 'cow spots' to the selected region (or alpha)" +msgstr "Seçilmiş bölgeye (ya da görünüre) 'sığır benekleri' ekle" + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:2 +msgid "Background Color" +msgstr "Arkaplan Rengi" + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:4 +msgid "Bo_vination..." +msgstr "Be_nekleme..." + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 +msgid "Create a logo with text in the style of 'cow spots'" +msgstr "'Sığır benekleri' biçeminde üstünde yazı olan bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 +msgid "Spots density X" +msgstr "X'te Noktaların Yoğunluğu" + +#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:9 +msgid "Spots density Y" +msgstr "Y'de Noktaların Yoğunluğu" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:1 +msgid "Add glowing" +msgstr "Korlama ekle" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 +msgid "After glow" +msgstr "Kordan sonra" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 +msgid "B_urn-In..." +msgstr "_İçine Yaz" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 +msgid "Corona width" +msgstr "Doruk genişliği" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 +msgid "" +"Create intermediate layers to produce an animated 'burn-in' transition " +"between two layers" +msgstr "" +"İki katman arasında 'burn-in' geçişi oluşturmak için ara katman oluştur" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 +msgid "Fadeout" +msgstr "Solma" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:7 +msgid "Fadeout width" +msgstr "Kararma Genişliği" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:9 +msgid "Prepare for GIF" +msgstr "GIF İçin Hazırla" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:10 +msgid "Speed (pixels/frame)" +msgstr "Hız (piksel/kare)" + +#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:11 +msgid "" +"The Burn-In script needs two layers in total. A foreground layer with " +"transparency and a background layer." +msgstr "" +"Burn-In betiği transparan bir ön katman ve arka katman olmak üzere iki " +"katmana ihtiyaç duyar." + +#: ../plug-ins/script-fu/scripts/camo.scm.h:1 +msgid "Color 1" +msgstr "1. Renk" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:2 +msgid "Color 2" +msgstr "2. Renk" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:3 +msgid "Color 3" +msgstr "3. Renk" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:4 +msgid "Create an image filled with a camouflage pattern" +msgstr "Alalama örgüsüyle doldurulmuş bir görüntü oluştur" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:6 +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:6 +msgid "Granularity" +msgstr "Parçacıklılık" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:7 +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:7 +msgid "Image size" +msgstr "Görüntü boyutu" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:8 +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:3 +msgid "Smooth" +msgstr "Yumuşat" + +#: ../plug-ins/script-fu/scripts/camo.scm.h:9 +msgid "_Camouflage..." +msgstr "_Alalama" + +#: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 +msgid "Carve white areas" +msgstr "Ak alanları oy" + +#: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 +msgid "Image to carve" +msgstr "Oyulacak imge" + +#: ../plug-ins/script-fu/scripts/carve-it.scm.h:3 +msgid "Stencil C_arve..." +msgstr "Kalıp O_yma" + +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:1 +msgid "Background Image" +msgstr "Arkaplan Resmi" + +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:2 +msgid "Carve raised text" +msgstr "Kabarık yazıyı oy" + +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:3 +msgid "Carved..." +msgstr "Oyuldu..." + +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 +msgid "" +"Create a logo with text raised above or carved in to the specified " +"background image" +msgstr "Kabarık ya da belli bir imgenin içine oyulmuş yazılı bir logo yap" + +#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 +msgid "Padding around text" +msgstr "Yazının etrafındaki boşluk" + +#: ../plug-ins/script-fu/scripts/chalk.scm.h:2 +msgid "Chalk color" +msgstr "Kireç taşı rengi" + +#: ../plug-ins/script-fu/scripts/chalk.scm.h:3 +msgid "Create a chalk drawing effect for the selected region (or alpha)" +msgstr "Seçilen bölge (ya da görünür) için kireçtaşı çizim etkisi oluştur" + +#: ../plug-ins/script-fu/scripts/chalk.scm.h:4 +msgid "Create a logo resembling chalk scribbled on a blackboard" +msgstr "Tebeşir karalamasına benzeyen logo oluştur." + +#: ../plug-ins/script-fu/scripts/chalk.scm.h:8 +msgid "_Chalk..." +msgstr "_Kireç taşı" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:1 +msgid "Add a chipped woodcarving effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) bir ağaç oyma etkisi ekle" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:2 +msgid "Blur amount" +msgstr "Bulanıklık niceliği" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 +msgid "Chip Awa_y..." +msgstr "Yont..." + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 +msgid "Chip amount" +msgstr "Yontma niceliği" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 +msgid "Create a logo resembling a chipped wood carving" +msgstr "Oyulmuş ağaca benzeyen bir imlek oluştur" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:6 +msgid "Drop shadow" +msgstr "Gölge düşür" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:7 +msgid "Fill BG with pattern" +msgstr "Artalanı örgüyle doldur" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:10 +msgid "Invert" +msgstr "Tersine Çevir" + +#: ../plug-ins/script-fu/scripts/chip-away.scm.h:11 +msgid "Keep background" +msgstr "Artalanı değiştirme" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 +msgid "" +"Add a chrome effect to the selected region (or alpha) using a specified " +"(grayscale) stencil" +msgstr "" +"Belirtilen kalıbı (gri ölçekli) kullanarak seçili bölgeye (ya da görünüre) " +"gümüş etkisi uygula" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:1 +msgid "Chrome balance" +msgstr "Krom dengesi" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:2 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 +msgid "Chrome factor" +msgstr "Krom Katsayısı" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:4 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 +msgid "Chrome lightness" +msgstr "Krom parlaklığı" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:5 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 +msgid "Chrome saturation" +msgstr "Krom Doygunluğu" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:6 +msgid "Chrome white areas" +msgstr "Krom beyaz alanlar" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:6 +msgid "Environment map" +msgstr "Ortam haritası" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:8 +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 +msgid "Highlight balance" +msgstr "Vurgu dengesi" + +#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:9 +msgid "Stencil C_hrome..." +msgstr "Stencil C_hrome..." + +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:1 +msgid "Add a simple chrome effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) krom etkisi uygula" + +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:4 +msgid "C_hrome..." +msgstr "K_rom" + +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 +msgid "Create a simplistic, but cool, chromed logo" +msgstr "Basit ama hoş krom etkisi uygulanmış bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 +msgid "Offsets (pixels * 2)" +msgstr "Ofset (piksel * 2)" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:1 +msgid "Circuit seed" +msgstr "Devre tohumu" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:2 +msgid "" +"Fill the selected region (or alpha) with traces like those on a circuit board" +msgstr "" +"Seçili bölgeyi (ya da görünürü) daire üzerindeymiş gibi izlerle doldur" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:3 +#: ../plug-ins/script-fu/scripts/lava.scm.h:3 +#: ../plug-ins/script-fu/scripts/predator.scm.h:3 +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:11 +msgid "Keep selection" +msgstr "Seçileni tut" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:4 +msgid "No background (only for separate layer)" +msgstr "Artalan yok (yalnız ayrı katman için)" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:5 +msgid "Oilify mask size" +msgstr "Mask boyutunu yağlımsıla" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:6 +#: ../plug-ins/script-fu/scripts/lava.scm.h:6 +#: ../plug-ins/script-fu/scripts/predator.scm.h:6 +msgid "Separate layer" +msgstr "Ayrı katman" + +#: ../plug-ins/script-fu/scripts/circuit.scm.h:7 +msgid "_Circuit..." +msgstr "_Devre..." + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:1 +msgid "Add a cloth-like texture to the selected region (or alpha)" +msgstr "Seçilen bölgeye (ya da görünüre) bezimsi bir doku ekle" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:2 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:1 +msgid "Azimuth" +msgstr "Azimut" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:3 +msgid "Blur X" +msgstr "X Bulanıklığı" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:4 +msgid "Blur Y" +msgstr "Y Bulanıklığı" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:5 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:5 +msgid "Depth" +msgstr "Derinlik" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:6 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:6 +msgid "Elevation" +msgstr "Kaldırma" + +#: ../plug-ins/script-fu/scripts/clothify.scm.h:7 +msgid "_Clothify..." +msgstr "_Bezimsileştir..." + +#: ../plug-ins/script-fu/scripts/coffee.scm.h:1 +msgid "Add realistic looking coffee stains to the image" +msgstr "Görüntüye gerçek gibi görünen kahve lekesi ekle" + +#: ../plug-ins/script-fu/scripts/coffee.scm.h:2 +msgid "Darken only" +msgstr "Sadece koyulaşan" + +#: ../plug-ins/script-fu/scripts/coffee.scm.h:3 +msgid "Stains" +msgstr "Lekeler" + +#: ../plug-ins/script-fu/scripts/coffee.scm.h:4 +msgid "_Coffee Stain..." +msgstr "_Kahve Lekesi..." + +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:1 +msgid "" +"Add a comic-book effect to the selected region (or alpha) by outlining and " +"filling with a gradient" +msgstr "" +"Seçili bölgeye (ya da görünüre) renk geçişi ile çevreleyen ve dolduran bir " +"çizgi roman etkisi uygula" + +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:3 +msgid "Comic Boo_k..." +msgstr "Karikatür Kitab_ı..." + +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 +msgid "" +"Create a comic-book style logo by outlining and filling with a gradient" +msgstr "" +"Kıyılarını çizerek ve içini bayırgıyla doldurarak, çizgi roman betiği " +"biçeminde bir imlek oluştur" + +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 +msgid "Outline color" +msgstr "Kıyı çizgisi rengi" + +#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:10 +#: ../plug-ins/script-fu/scripts/glossy.scm.h:11 +msgid "Outline size" +msgstr "Kıyı çizgisi boyutu" + +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:1 +msgid "" +"Add a metallic effect to the selected region (or alpha) with reflections and " +"perspective shadows" +msgstr "" +"Yansımalarla ve gölgelerle seçili bölgeye (ya da görünüre) metalik etki ver" + +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:3 +msgid "Cool _Metal..." +msgstr "Soğuk _Metal..." + +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 +msgid "Create a metallic logo with reflections and perspective shadows" +msgstr "Yansımalarla ve gölgelerle metalik bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:5 +msgid "Effect size (pixels)" +msgstr "Etki boyutu (benek)" + +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:1 +msgid "Background image" +msgstr "Artalan görüntüsü" + +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:3 +msgid "" +"Create a logo with a crystal/gel effect displacing the image underneath" +msgstr "Resmin altından çıkartarak kristal/jel etkisi ile logo oluştur." + +#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:4 +msgid "Crystal..." +msgstr "Kristal..." + +#: ../plug-ins/script-fu/scripts/difference-clouds.scm.h:1 +msgid "Difference Clouds..." +msgstr "Farklı Bulutlar..." + +#: ../plug-ins/script-fu/scripts/difference-clouds.scm.h:2 +msgid "Solid noise applied with Difference layer mode" +msgstr "Değişik katman modu ile keskin ses uygulandı" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:1 +msgid "Distress the selection" +msgstr "Seçimi yıprat" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 +msgid "Granularity (1 is low)" +msgstr "Tanelilik (1 düşük)" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:4 +msgid "Smooth horizontally" +msgstr "Enine Yumuşalık" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:5 +msgid "Smooth vertically" +msgstr "Boyuna Yumuşalık" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:6 +msgid "Spread" +msgstr "Etrafa Saç" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:7 +msgid "Threshold (bigger 1<-->255 smaller)" +msgstr "Eşik (en büyük 1<-->255 en küçük)" + +#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 +msgid "_Distort..." +msgstr "_Bük..." + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 +msgid "Add a drop shadow to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) gölge ekle" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 +msgid "Allow resizing" +msgstr "Yeniden boyutlandırmaya izin ver" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:3 +#: ../plug-ins/script-fu/scripts/news-text.scm.h:2 +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:4 +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:3 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:3 +msgid "Blur radius" +msgstr "Bulanıklık yarıçapı" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:4 +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:5 +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:5 +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:5 +msgid "Color" +msgstr "Renk" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:5 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:11 +msgid "Offset X" +msgstr "X Ofset" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:6 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:12 +msgid "Offset Y" +msgstr "Y Ofset" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:7 +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 +msgid "Opacity" +msgstr "Saydamsızlık" + +#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 +msgid "_Drop Shadow..." +msgstr "Gölge _Düşür..." + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:1 +msgid "Columns" +msgstr "Sütunlar" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 +msgid "Erase" +msgstr "Sil" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:3 +msgid "Erase every other row or column" +msgstr "Diğer satır ve sütunları sil" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:4 +msgid "Erase/fill" +msgstr "Sil/doldur" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:5 +msgid "Even" +msgstr "Çift" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 +msgid "Even/odd" +msgstr "Tek/çift" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:7 +msgid "Fill with BG" +msgstr "Arkaplanla Doldur" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:8 +msgid "Odd" +msgstr "Tek" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:9 +msgid "Rows" +msgstr "Satırlar" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:10 +msgid "Rows/cols" +msgstr "Satırlar/Sütunlar" + +#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 +msgid "_Erase Every Other Row..." +msgstr "Öteki Bütün Satırları _Sil..." + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:1 +msgid "Create an image filled with a Land Pattern" +msgstr "Toprak Örgüsüyle doldurulmuş bir imge oluştur" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:2 +#: ../plug-ins/script-fu/scripts/land.scm.h:2 +msgid "Detail level" +msgstr "Ayrıntı düzeyi" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:3 +#: ../plug-ins/script-fu/scripts/land.scm.h:4 +msgid "Image height" +msgstr "Görüntü yüksekliği" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:4 +#: ../plug-ins/script-fu/scripts/land.scm.h:5 +msgid "Image width" +msgstr "Görüntü genişliği" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:5 +#: ../plug-ins/script-fu/scripts/land.scm.h:7 +msgid "Random seed" +msgstr "Rasgele tohum" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:6 +#: ../plug-ins/script-fu/scripts/land.scm.h:8 +msgid "Scale X" +msgstr "X Ölçeği" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:7 +#: ../plug-ins/script-fu/scripts/land.scm.h:9 +msgid "Scale Y" +msgstr "Y Ölçeği" + +#: ../plug-ins/script-fu/scripts/flatland.scm.h:8 +msgid "_Flatland..." +msgstr "_Düztoprak..." + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:1 +msgid "Active colors" +msgstr "Etkin renkler" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:2 +msgid "Black on white" +msgstr "Beyaz üzerine siyah" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:3 +msgid "" +"Create an image filled with previews of fonts matching a fontname filter" +msgstr "" +"Yazıyüzü adı süzgecine karşılık gelen yazıyüzlerinin, önizlemeleriyle " +"doldurulmuş bir imge oluştur" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:4 +msgid "Font _size (pixels)" +msgstr "Yazıyüzü _boyutu (benek)" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:5 +msgid "Render _Font Map..." +msgstr "_Yazıyüzü Haritası İşle..." + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:6 +msgid "Use font _name as text" +msgstr "Yazıyüzü _adını metin olarak kullan" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:7 +msgid "_Border (pixels)" +msgstr "_Sınır (benek)" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:8 +msgid "_Color scheme" +msgstr "_Renk şeması" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:9 +msgid "_Filter (regexp)" +msgstr "_Süzgeç (düzenli anlatım)" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:10 +msgid "_Labels" +msgstr "_Etiketler" + +#: ../plug-ins/script-fu/scripts/font-map.scm.h:11 +msgid "_Text" +msgstr "_Metin" + +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:1 +msgid "" +"Add a frost effect to the selected region (or alpha) with an added drop " +"shadow" +msgstr "Ekli gölgeyle seçili bölgeye (ya da görünüre) donma etkisi uygula" + +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:3 +msgid "Create frozen logo with an added drop shadow" +msgstr "Ekli kabartı gölgesiyle donma etkisi uygulanmış bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 +msgid "_Frosty..." +msgstr "_Donuk..." + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:1 +msgid "Add a jagged, fuzzy border to an image" +msgstr "Resme çıkıntılı, donuk çerçeve uygula" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 +msgid "Add shadow" +msgstr "Gölge ekle" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 +msgid "Blur border" +msgstr "Bulanık sınır çizgisi" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:1 +msgid "Border size" +msgstr "Sınır boyutu" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:7 +msgid "Granularity (1 is Low)" +msgstr "Parçacıklılık (1 Küçük Olmak Üzere)" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 +#, no-c-format +msgid "Shadow weight (%)" +msgstr "Gölge kalınlığı" + +#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 +msgid "_Fuzzy Border..." +msgstr "_Bulanık Sınır..." + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:1 +msgid "Autocrop" +msgstr "Otomatik Kırp" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 +msgid "Create an image of a large header using the gimp.org webpage theme" +msgstr "" +"gimp.org web sayfası desenini kullanarak, büyük bir üstbilgi imgesi oluşturun" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:3 +msgid "Create an image of a small header using the gimp.org webpage theme" +msgstr "" +"gimp.org web sayfası desenini kullanarak, küçük bir üstbilgi imgesi oluşturun" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:4 +msgid "Dark color" +msgstr "Koyu renk" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:7 +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:9 +msgid "Highlight color" +msgstr "Aydınlatma rengi" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:8 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:9 +msgid "Index image" +msgstr "Resim bilgisi" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:9 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:10 +msgid "Number of colors" +msgstr "Renk sayısı" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:10 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 +msgid "Remove background" +msgstr "Artalanı kaldır" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:11 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:14 +msgid "Select-by-color threshold" +msgstr "Renge göre seçim eşiği" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:12 +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:15 +msgid "Shadow color" +msgstr "Gölge rengi" + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 +msgid "_Big Header..." +msgstr "_Büyük Üstbilgi..." + +#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:16 +msgid "_Small Header..." +msgstr "_Küçük Üstbilgi..." + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:2 +msgid "" +"Create an image of a Tube Button Label Header using the gimp.org webpage " +"theme" +msgstr "" +"gimp.org web sayfa temasını kullanarak Tüp Düğme Etiket başlığı resmi " +"oluştur." + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:3 +msgid "" +"Create an image of a Tube Button Label using the gimp.org webpage theme" +msgstr "" +"gimp.org web sayfası temasını kullanarak Tüp Düğme Etiketi resmi oluştur" + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:4 +msgid "" +"Create an image of a second level Tube Button Label using the gimp.org " +"webpage theme" +msgstr "" +"gimp.org web sayfası teması kullanarak ikinci seviye Tüp Düğme etiketinin " +"resmini oluştur." + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 +msgid "" +"Create an image of a third level Tube Button Label using the gimp.org " +"webpage theme" +msgstr "" +"gimp.org web sayfası teması kullanarak üçüncü seviye Tüp Düğme etiketinin " +"resmini oluştur." + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 +msgid "T_ube Sub-Button Label..." +msgstr "T_üp Alt-Düğme Etiketi" + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:19 +msgid "Tub_e Sub-Sub-Button Label..." +msgstr "T_üp Alt-Alt-Düğme Etiketi" + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:20 +msgid "_General Tube Labels..." +msgstr "_Genel Tüp Etiketleri" + +#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:21 +msgid "_Tube Button Label..." +msgstr "_Tüp Düğme Etiketi ..." + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:1 +msgid "" +"Add gradients, patterns, shadows, and bump maps to the selected region (or " +"alpha)" +msgstr "" +"Seçilen bölgeye (ya da görünüre) renk geçişleri, desenler, gölgeler ve " +"derinlik etkisi ekle" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:3 +msgid "Blend gradient (outline)" +msgstr "Renk Geçişi Uygula(dış çizgi)" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:4 +msgid "Blend gradient (text)" +msgstr "Renk Geçişi Uygula(metin)" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:5 +msgid "Create a logo with gradients, patterns, shadows, and bump maps" +msgstr "" +"Renk geçişleri, desenler, gölgeler ve derinlik etkileri ile bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:9 +msgid "Glo_ssy..." +msgstr "Par_lak" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:10 +msgid "Outline gradient reverse" +msgstr "Dış çizginin renk geçişini tersine çevir" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:12 +msgid "Pattern (outline)" +msgstr "Desen(dış çizgi)" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:13 +msgid "Pattern (overlay)" +msgstr "Örüntü (bindirme)" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:14 +msgid "Pattern (text)" +msgstr "Desen(metin)" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:15 +msgid "Shadow" +msgstr "Gölge" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:19 +msgid "Text gradient reverse" +msgstr "Metinin renk geçişini tersine çevir" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:20 +msgid "Use pattern for outline instead of gradient" +msgstr "Dış çizgi için renk geçişi yerine desen kullan" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:21 +msgid "Use pattern for text instead of gradient" +msgstr "Metin için renk geçişi yerine desen kullan" + +#: ../plug-ins/script-fu/scripts/glossy.scm.h:22 +msgid "Use pattern overlay" +msgstr "Desen kaplaması kullan" + +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:1 +msgid "Add a glowing hot metal effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) kızgın bir metal etkisi ekleyin" + +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:3 +msgid "Create a logo that looks like glowing hot metal" +msgstr "Kızgın korlu ir gibi görünen bir imlek yap" + +#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 +msgid "Glo_wing Hot..." +msgstr "Kor Kızıl..." + +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:1 +msgid "Add a shiny look and bevel effect to the selected region (or alpha)" +msgstr "" +"Seçili bölgeye (ya da görünüre) parlak bir görünüm ve eğim etkisi ekle" + +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:3 +msgid "Bevel height (sharpness)" +msgstr "Eğim yüksekliği (keskinlik)" + +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:2 +msgid "Border size (pixels)" +msgstr "Sınır boyutu (benek)" + +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 +msgid "Create a logo with a shiny look and beveled edges" +msgstr "Parlak görünümlü ve eğik kıyılı bir logo yap" + +#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:9 +msgid "Gradient Beve_l..." +msgstr "Bayırgı_lı Renk Geçişi..." + +#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "Create an image filled with an example of the current gradient" +msgstr "Geçerli renk geçişi ile doldurulmuş bir resim oluştur" + +#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 +msgid "Custom _Gradient..." +msgstr "Seçimlik _Bayırgı..." + +#: ../plug-ins/script-fu/scripts/grid-system.scm.h:1 +#: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 +msgid "" +"Draw a grid as specified by the lists of X and Y locations using the current " +"brush" +msgstr "" +"Şu anki fırçayı kullanarak, X ve Y konumlarınca belirlenmiş bir ızgara çiz" + +#: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 +msgid "X divisions" +msgstr "X bölümleri" + +#: ../plug-ins/script-fu/scripts/grid-system.scm.h:3 +msgid "Y divisions" +msgstr "Y bölümleri" + +#: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 +msgid "_Grid..." +msgstr "_Izgara..." + +#: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 +msgid "New Guides from _Selection" +msgstr "_Seçimden yeni kılavuzlar" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 +msgid "" +"Add a guide at the position specified as a percentage of the image size" +msgstr "İmge boyutunun yüzdesi olarak belirlenen konuma bir kılavuz ekle" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:2 +msgid "Direction" +msgstr "Yön" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:3 +msgid "Horizontal" +msgstr "Yatay" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:4 +msgid "New Guide (by _Percent)..." +msgstr "Yeni Kılavuz (_Yüzde olarak)" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 +#, no-c-format +msgid "Position (in %)" +msgstr "Konum (% içinde)" + +#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:7 +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:6 +msgid "Vertical" +msgstr "Dikey" + +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:1 +msgid "Add a guide at the orientation and position specified (in pixels)" +msgstr "Belirlenen yön ve konuma (benek olarak) bir kılavuz ekle" + +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:4 +msgid "New _Guide..." +msgstr "Yeni _Kılavuz..." + +#: ../plug-ins/script-fu/scripts/guides-new.scm.h:5 +msgid "Position" +msgstr "Konum" + +#: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 +msgid "Remove all horizontal and vertical guides" +msgstr "Bütün yatay ve dikey kılavuzları kaldır" + +#: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:2 +msgid "_Remove all Guides" +msgstr "Bütün Kılavuzları _Kaldır" + +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:1 +msgid "Create a logo in a two-color, scribbled text style" +msgstr "İki renkli, çiziktirilmiş yazı biçeminde bir logo yap" + +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 +msgid "Frame color" +msgstr "Çerçeve rengi" + +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 +msgid "Frame size" +msgstr "Çerçeve boyutu" + +#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 +msgid "Imigre-_26..." +msgstr "Imigre-_26..." + +#: ../plug-ins/script-fu/scripts/land.scm.h:1 +msgid "Create an image filled with a topographic map pattern" +msgstr "Yerbetimsel eşlem örgüsüyle doldurulmuş bir imge oluştur" + +#: ../plug-ins/script-fu/scripts/land.scm.h:6 +msgid "Land height" +msgstr "Kara yüksekliği" + +#: ../plug-ins/script-fu/scripts/land.scm.h:10 +msgid "Sea depth" +msgstr "Deniz derinliği" + +#: ../plug-ins/script-fu/scripts/land.scm.h:11 +msgid "_Land..." +msgstr "_Kara..." + +#: ../plug-ins/script-fu/scripts/lava.scm.h:1 +msgid "Fill the current selection with lava" +msgstr "Seçilen alanı püskürtüyle doldur" + +#: ../plug-ins/script-fu/scripts/lava.scm.h:4 +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 +msgid "Roughness" +msgstr "Engebe Miktarı" + +#: ../plug-ins/script-fu/scripts/lava.scm.h:5 +msgid "Seed" +msgstr "Tohum" + +#: ../plug-ins/script-fu/scripts/lava.scm.h:8 +msgid "Use current gradient" +msgstr "Seçili renk geçişini kullan" + +#: ../plug-ins/script-fu/scripts/lava.scm.h:9 +msgid "_Lava..." +msgstr "_Püskürtü" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 +msgid "" +"Fill a layer with rays emanating outward from its center using the FG color" +msgstr "" +"Bir katmanı FG renkleri kullanarak merkezden dışa doğru yayılan ışıkla doldur" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 +msgid "Line _Nova..." +msgstr "_Nova çizgisi" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 +msgid "Number of lines" +msgstr "Çizgi sayısı" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:4 +msgid "Offset radius" +msgstr "Denge yarıçapı" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:5 +msgid "Randomness" +msgstr "Raslantısallık" + +#: ../plug-ins/script-fu/scripts/line-nova.scm.h:6 +msgid "Sharpness (degrees)" +msgstr "Keskinlik (derece)" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 +msgid "Create a rectangular brush" +msgstr "Dikdörtgen bir fırça oluştur" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 +msgid "Create a rectangular brush with feathered edges" +msgstr "Tüylü kıyılı, dikdörtgen bir fırça oluştur" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 +msgid "Create an elliptical brush" +msgstr "Söbe bir fırça oluştur" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:4 +msgid "Create an elliptical brush with feathered edges" +msgstr "Tüylü kıyılı, söbe bir fırça oluştur" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:5 +msgid "Elli_ptical, Feathered..." +msgstr "Sö_be, Tüylü..." + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 +msgid "Feathering" +msgstr "Yumuşak Geçiş" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:8 +msgid "Name" +msgstr "Ad" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 +msgid "Re_ctangular, Feathered..." +msgstr "Dik_dörtgen, Tüylü..." + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:5 +#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 +msgid "Spacing" +msgstr "Boşluk" + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:12 +msgid "_Elliptical..." +msgstr "_Söbe..." + +#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:13 +msgid "_Rectangular..." +msgstr "_Dikdörtgen..." + +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:2 +msgid "Convert the selected region (or alpha) into a neon-sign like object" +msgstr "Seçilen bölgeyi (ya da görünürü) neon benzeri bir nesneye çevir" + +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:3 +msgid "Create a logo in the style of a neon sign" +msgstr "Neon biçeminde bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 +msgid "Create shadow" +msgstr "Gölge oluştur" + +#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 +msgid "N_eon..." +msgstr "N_eon" + +#: ../plug-ins/script-fu/scripts/news-text.scm.h:3 +msgid "Cell size (pixels)" +msgstr "Hücre boyutu (benek)" + +#: ../plug-ins/script-fu/scripts/news-text.scm.h:4 +msgid "Create a logo in the style of newspaper printing" +msgstr "Gazete baskısı stilinde bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/news-text.scm.h:6 +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:4 +#, no-c-format +msgid "Density (%)" +msgstr "Yoğunluk (%)" + +#: ../plug-ins/script-fu/scripts/news-text.scm.h:9 +msgid "Newsprint Te_xt..." +msgstr "Gazete Ya_zısı" + +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:2 +msgid "Defocus" +msgstr "Odak Dışına Çıkar" + +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:3 +msgid "Make an image look like an old photo" +msgstr "Resmi eski fotoğraf görünümünde yap" + +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:4 +msgid "Mottle" +msgstr "Benekle" + +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:5 +msgid "Sepia" +msgstr "Renksiz" + +#: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 +msgid "_Old Photo..." +msgstr "_Eski Fotoğraf..." + +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:1 +#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:1 +msgid "Brush name" +msgstr "Fırça adı" + +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:2 +#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm.h:1 +#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "File name" +msgstr "Dosya adı" + +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:3 +msgid "New _Brush..." +msgstr "Yeni _Fırça" + +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:4 +msgid "Paste the clipboard contents into a new brush" +msgstr "Panodaki içeriği yeni fırçaya yapıştır" + +#: ../plug-ins/script-fu/scripts/paste-as-brush.scm.h:6 +#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm.h:5 +msgid "There is no image data in the clipboard to paste." +msgstr "Panoda yapıştırılacak görüntü verisi yok." + +#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm.h:2 +msgid "New _Pattern..." +msgstr "Yeni Desen" + +#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm.h:3 +msgid "Paste the clipboard contents into a new pattern" +msgstr "Pano içeriğini yeni bir desene yapıştır" + +#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm.h:4 +#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 +msgid "Pattern name" +msgstr "Desen adı" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 +msgid "Add a perspective shadow to the selected region (or alpha)" +msgstr "Seçilen bölgeye (ya da görünüre) görüngesel gölge ekle" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 +msgid "Angle" +msgstr "Açı" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 +msgid "Interpolation" +msgstr "Ara değeri bulma" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 +msgid "Relative distance of horizon" +msgstr "Görüşün bağıl uzaklığı" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 +msgid "Relative length of shadow" +msgstr "Gölgenin bağıl uzunluğu" + +#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:10 +msgid "_Perspective..." +msgstr "_Görünge..." + +#: ../plug-ins/script-fu/scripts/predator.scm.h:1 +msgid "Add a 'Predator' effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) 'Yırtıcı' etkisi uygula" + +#: ../plug-ins/script-fu/scripts/predator.scm.h:2 +msgid "Edge amount" +msgstr "Kenar miktarı" + +#: ../plug-ins/script-fu/scripts/predator.scm.h:4 +msgid "Pixel amount" +msgstr "Benek niceliği" + +#: ../plug-ins/script-fu/scripts/predator.scm.h:5 +msgid "Pixelize" +msgstr "Pikselleştir" + +#: ../plug-ins/script-fu/scripts/predator.scm.h:7 +msgid "_Predator..." +msgstr "_Yırtıcı..." + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:2 +msgid "Create images, each containing an oval button graphic" +msgstr "Herbiri bir oval düğme grafiği içeren resimler oluşturun" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 +msgid "Lower color" +msgstr "Alt renk" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:6 +msgid "Lower color (active)" +msgstr "Alt renk (etkin)" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:7 +msgid "Not pressed" +msgstr "Basılmadı" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:8 +msgid "Not pressed (active)" +msgstr "Basılmadı (etkin)" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:9 +msgid "Padding X" +msgstr "X'te Tampon" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:10 +msgid "Padding Y" +msgstr "Y'de Tampon" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:12 +msgid "Round ratio" +msgstr "Yuvarlak oranı" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:15 +msgid "Text color (active)" +msgstr "Yazı rengi (etkin)" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:16 +msgid "Upper color" +msgstr "Üst renk" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:17 +msgid "Upper color (active)" +msgstr "Daha yüksek renk (aktif)" + +#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 +msgid "_Round Button..." +msgstr "_Yuvarlak Düğme..." + +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:1 +msgid "Behavior" +msgstr "Davranış" + +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 +msgid "Create an image filled with an Earth-like map pattern" +msgstr "Yeryüzü benzeri bir eşlem örüntüsüyle dolu bir imge oluşturun" + +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:3 +msgid "Detail in Middle" +msgstr "Detay Ortada" + +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 +msgid "Render _Map..." +msgstr "_Eşlem Oluştur..." + +#: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 +msgid "Tile" +msgstr "Döşe" + +#: ../plug-ins/script-fu/scripts/reverse-layers.scm.h:1 +msgid "Reverse Layer Order" +msgstr "Katmanların Sırasını Tersine Çevir" + +#: ../plug-ins/script-fu/scripts/reverse-layers.scm.h:2 +msgid "Reverse the order of layers in the image" +msgstr "Resimdeki katmanların sırasını tersine çevir" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 +msgid "Black" +msgstr "Siyah" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:2 +msgid "" +"Create a multi-layer image by adding a ripple effect to the current image" +msgstr "" +"Geçerli resme dalgacık etkisi uygulayarak çok katmanlı yeni bir resim " +"oluştur." + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:3 +msgid "Edge behavior" +msgstr "Kıyı davranışı" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:4 +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:4 +msgid "Number of frames" +msgstr "Çerçeve sayısı" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:5 +msgid "Rippling strength" +msgstr "Dalgalanma gücü" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:6 +msgid "Smear" +msgstr "Yayma" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:7 +msgid "Wrap" +msgstr "Sarma" + +#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 +msgid "_Rippling..." +msgstr "_Dalgalanma..." + +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:1 +msgid "Add background" +msgstr "Artalan ekle" + +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 +msgid "Add drop-shadow" +msgstr "Kabartı gölgesi ekle" + +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:4 +msgid "Edge radius" +msgstr "Kenar yarıçapı" + +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:5 +msgid "" +"Round the corners of an image and optionally add a drop-shadow and background" +msgstr "" +"Bir imgenin köşelerini yuvarla, ve seçmeli olarak düşük gölge ve artalan ekle" + +#: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 +msgid "_Round Corners..." +msgstr "Köşeleri _Yuvarla..." + +#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm.h:1 +msgid "Change the colormap of an image to the colors in a specified palette." +msgstr "Resmin renk haritasını geçerli palet renklerine cevir." + +#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm.h:2 +msgid "Palette" +msgstr "Palet" + +#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm.h:3 +msgid "Se_t Colormap..." +msgstr "Renk Haritasını _Belirle..." + +#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 +msgid "Convert a selection to a brush" +msgstr "Seçimi fırçaya çevir" + +#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:5 +msgid "To _Brush..." +msgstr "_Fırçaya..." + +#: ../plug-ins/script-fu/scripts/select-to-image.scm.h:1 +msgid "Convert a selection to an image" +msgstr "Seçimi imgeye çevir" + +#: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 +msgid "To _Image" +msgstr "_Görüntüye" + +#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 +msgid "Convert a selection to a pattern" +msgstr "Seçimi örüntüye çevir" + +#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 +msgid "To _Pattern..." +msgstr "_Örüntüye" + +#: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 +msgid "Concave" +msgstr "İç bükey" + +#: ../plug-ins/script-fu/scripts/selection-round.scm.h:3 +#, no-c-format +msgid "Radius (%)" +msgstr "Yarıçap (%)" + +#: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 +msgid "Round the corners of the current selection" +msgstr "Şu anki seçimin köşelerini yuvarla" + +#: ../plug-ins/script-fu/scripts/selection-round.scm.h:5 +msgid "Rounded R_ectangle..." +msgstr "Yuvarlanmış D_ikdörtgen..." + +#: ../plug-ins/script-fu/scripts/slide.scm.h:1 +msgid "Add a slide-film like frame, sprocket holes, and labels to an image" +msgstr "Resme, çerçeve, dişli halkası ve etiketler gibi kaygan film ekle" + +#: ../plug-ins/script-fu/scripts/slide.scm.h:3 +msgid "Font color" +msgstr "Yazıyüzü rengi" + +#: ../plug-ins/script-fu/scripts/slide.scm.h:4 +msgid "Number" +msgstr "Sayı" + +#: ../plug-ins/script-fu/scripts/slide.scm.h:7 +msgid "_Slide..." +msgstr "_Kaydır..." + +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 +msgid "Create a State Of The Art chromed logo" +msgstr "Krom sanatı logosu oluştur." + +#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 +msgid "SOTA Chrome..." +msgstr "SOTA krom" + +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:2 +msgid "Create a logo with a speedy text effect" +msgstr "Hızlı metin etkisi ile bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/speed-text.scm.h:7 +msgid "Speed Text..." +msgstr "Hızlı Metin..." + +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 +msgid "" +"Create an animation by mapping the current image onto a spinning sphere" +msgstr "Şu anki resmi dönen bir küreye uyarlayarak, bir canlandırma oluştur" + +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 +msgid "Frames" +msgstr "Kare Sayısı" + +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 +msgid "Index to n colors (0 = remain RGB)" +msgstr "n Renklerine içerik ( 0 = RGB kalan)" + +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:5 +msgid "Turn from left to right" +msgstr "Soldan sağa dön" + +#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 +msgid "_Spinning Globe..." +msgstr "_Dönen Küre..." + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 +msgid "" +"Add Spirographs, Epitrochoids, and Lissajous Curves to the current layer" +msgstr "" +"Geçerli katmana Spirografiler, Epitrokoidler ve Lissajous Eğrileri ekle" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 +msgid "Airbrush" +msgstr "Sprey" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:3 +msgid "Brush" +msgstr "Fırça" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:4 +msgid "Circle" +msgstr "Çember" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:6 +msgid "Color method" +msgstr "Renk yöntemi" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:7 +msgid "Epitrochoid" +msgstr "Epitrokoit" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:8 +msgid "Frame" +msgstr "Çerçeve" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:10 +msgid "Gradient: Loop Sawtooth" +msgstr "Renk Geçişi: Testere Dişi Dönüşlü" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:11 +msgid "Gradient: Loop Triangle" +msgstr "Renk Geçişi: Üçgen Dönüşlü" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:12 +msgid "Hexagon" +msgstr "Altıgen" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:13 +msgid "Hole ratio" +msgstr "Boşluk oranı" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:14 +msgid "Inner teeth" +msgstr "İç dişler" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:15 +msgid "Lissajous" +msgstr "Lissajous" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:16 +msgid "Margin (pixels)" +msgstr "Kenar (benek)" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:17 +msgid "Outer teeth" +msgstr "Dış dişler" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:18 +msgid "Pencil" +msgstr "Kalem" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:19 +msgid "Pentagon" +msgstr "Beşgen" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:20 +msgid "Polygon: 10 sides" +msgstr "Çokgen: 10 köşeli" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:21 +msgid "Polygon: 7 sides" +msgstr "Çokgen: 7 köşeli" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:22 +msgid "Polygon: 8 sides" +msgstr "Çokgen: 8 köşeli" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:23 +msgid "Polygon: 9 sides" +msgstr "Çokgen: 9 köşeli" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:24 +msgid "Rendering Spyro" +msgstr "Spyro İşleme" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:25 +msgid "Shape" +msgstr "Şekil" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:26 +msgid "Solid Color" +msgstr "Düz Renk" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:27 +msgid "Spyrograph" +msgstr "Spirograf" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:28 +msgid "Square" +msgstr "Kare" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:29 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 +msgid "Start angle" +msgstr "Başlangıç açısı" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:30 +msgid "Tool" +msgstr "Araç" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:31 +msgid "Triangle" +msgstr "Üçgen" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:32 +msgid "Type" +msgstr "Tür" + +#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 +msgid "_Spyrogimp..." +msgstr "_Spyrogimp..." + +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:1 +msgid "Create a logo using a rock-like texture, a nova glow, and shadow" +msgstr "" +"Kaya gibi bir doku, yıldız parlaklığı ve gölgelendirme kullanarak bir logo " +"oluşturun" + +#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:5 +msgid "Sta_rscape..." +msgstr "Yıl_dızalanı..." + +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:4 +msgid "Create an image filled with a swirled tile effect" +msgstr "Karo girdap etkisi ile doldurulmuş bir görüntü oluştur" + +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 +msgid "Swirl-_Tile..." +msgstr "Karo-_Girdap..." + +#: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 +msgid "Whirl amount" +msgstr "Döndürme miktarı" + +#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 +msgid "Create an image filled with a swirly pattern" +msgstr "Girdaplı model ile doldurulmuş bir görüntü oluştur" + +#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 +msgid "Number of times to whirl" +msgstr "Döndürme sayısı" + +#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 +msgid "Quarter size" +msgstr "Çeyrek boyut" + +#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 +msgid "Whirl angle" +msgstr "Döndürme açısı" + +#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 +msgid "_Swirly..." +msgstr "_Girdap..." + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 +msgid "Add a Trace of Particles effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) Parçacık İzi etkisi ekle" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:3 +msgid "Base color" +msgstr "Temel renk" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 +msgid "Create a logo using a Trace Of Particles effect" +msgstr "Parçacık İzi etkisi kullanarak bir logo oluştur" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 +msgid "Edge only" +msgstr "Yalnız kıyı" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 +msgid "Edge width" +msgstr "Kıyı genişliği" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 +msgid "Hit rate" +msgstr "Vurma oranı" + +#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 +msgid "_Particle Trace..." +msgstr "_Parçacık İzi..." + +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:1 +msgid "Antialias" +msgstr "Örtüşmeönleyici" + +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 +msgid "" +"Create a logo by rendering the specified text along the perimeter of a circle" +msgstr "Bir çember çevresi boyunca belirlenen metini tarayarak logo oluştur" + +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 +msgid "Fill angle" +msgstr "Doldurma açısı" + +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 +msgid "Text C_ircle..." +msgstr "Metin Çe_mberi..." + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:3 +msgid "" +"Create a textured logo with highlights, shadows, and a mosaic background" +msgstr "Vurgular, gölgeler ve mozaik artalan ile bir dokulu logo oluşturun" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:4 +msgid "Ending blend" +msgstr "Kaynaşım sonlandırılıyor" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 +msgid "" +"Fill the selected region (or alpha) with a texture and add highlights, " +"shadows, and a mosaic background" +msgstr "" +"Seçili bölgeyi (ya da görünürü) bir doku ile doldur ve vurgular, gölgeler ve " +"mozaik artalan ekle" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:8 +msgid "Hexagons" +msgstr "Altıgenler" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 +msgid "Mosaic tile type" +msgstr "Mozaik döşeme türü" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:10 +msgid "Octagons" +msgstr "Sekizgenler" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:12 +msgid "Squares" +msgstr "Kareler" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 +msgid "Starting blend" +msgstr "Kaynaşım başlatılıyor" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 +msgid "Text pattern" +msgstr "Yazı deseni" + +#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 +msgid "_Textured..." +msgstr "_Dokulu..." + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 +msgid "Blur horizontally" +msgstr "Yatay bulandır" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:2 +msgid "Blur the edges of an image so the result tiles seamlessly" +msgstr "" +"Resmin kesitlerini bulanıklaştır, böylece sonuç kusursuz biçimde döşenir" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:3 +msgid "Blur type" +msgstr "Bulanıklık türü" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:4 +msgid "Blur vertically" +msgstr "Dikey bulandır" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:5 +msgid "IIR" +msgstr "IIR" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:6 +msgid "RLE" +msgstr "RLE" + +#: ../plug-ins/script-fu/scripts/tileblur.scm.h:8 +msgid "_Tileable Blur..." +msgstr "_Döşenebilir Bulanıklaştırma..." + +#: ../plug-ins/script-fu/scripts/title-header.scm.h:1 +msgid "Create a decorative web title header" +msgstr "Süslü bir web başlığı oluştur" + +#: ../plug-ins/script-fu/scripts/title-header.scm.h:6 +msgid "Web Title Header..." +msgstr "Web Başlığı..." + +#: ../plug-ins/script-fu/scripts/truchet.scm.h:3 +msgid "Create an image filled with a Truchet pattern" +msgstr "Truchet deseni ile doldurulmuş bir resim oluştur" + +#: ../plug-ins/script-fu/scripts/truchet.scm.h:4 +msgid "Foreground color" +msgstr "Önalan rengi" + +#: ../plug-ins/script-fu/scripts/truchet.scm.h:7 +msgid "T_ruchet..." +msgstr "T_ruchet..." + +#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 +msgid "Mask opacity" +msgstr "Maske matlığı" + +#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 +msgid "Mask size" +msgstr "Maske boyutu" + +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 +msgid "Amplitude" +msgstr "Boyut" + +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 +msgid "" +"Create a multi-layer image with an effect like a stone was thrown into the " +"current image" +msgstr "" +"Geçerli görüntüye taş fırlatılmasına benzer bir etki vererek çoklu katman " +"görüntüsü oluştur" + +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:3 +msgid "Invert direction" +msgstr "Yönü Tersine Çevir" + +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:5 +msgid "Wavelength" +msgstr "Dalgaboyu" + +#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 +msgid "_Waves..." +msgstr "_Dalgalar..." + +#: ../plug-ins/script-fu/scripts/weave.scm.h:1 +msgid "" +"Create a new layer filled with a weave effect to be used as an overlay or " +"bump map" +msgstr "Yeni bir katman oluşturarak resme hasır etkisi verir" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:2 +msgid "Ribbon spacing" +msgstr "Şerit aralığı" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:3 +msgid "Ribbon width" +msgstr "Şerit genişliği" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:4 +msgid "Shadow darkness" +msgstr "Gölge koyuluğu" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:5 +msgid "Shadow depth" +msgstr "Gölge derinliği" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:6 +msgid "Thread density" +msgstr "İşçik yoğunluğu" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:7 +msgid "Thread intensity" +msgstr "Parçacık yoğunluğu" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:8 +msgid "Thread length" +msgstr "İşçik uzunluğu" + +#: ../plug-ins/script-fu/scripts/weave.scm.h:9 +msgid "_Weave..." +msgstr "_Hasır..." + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 +msgid "Bookmark to the GIMP web site" +msgstr "GIMP web sitesinin yer imine ekleyin" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 +msgid "Bookmark to the user manual" +msgstr "Kullanıcı kılavuzunun yer imine ekleyin" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 +msgid "Create and Use _Selections" +msgstr "_Seçimleri Oluştur ve Kullan" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 +msgid "Create, Open and Save _Files" +msgstr "_Dosyaları Oluştur, Aç ve Kaydet" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:5 +msgid "Drawing _Simple Objects" +msgstr "_Yalın Nesne Çizimi" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:6 +msgid "How to Use _Dialogs" +msgstr "Nasıl Kullanılır _İletişim Kutuları" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:7 +msgid "Plug-in _Registry" +msgstr "Eklenti _Kayıt Defteri" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:8 +msgid "Using _Paths" +msgstr "_Yolları Kullanma" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:9 +msgid "_Basic Concepts" +msgstr "_Temel Kavramlar" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:10 +msgid "_Developer Web Site" +msgstr "_Geliştirici Web Sayfası" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:11 +msgid "_Main Web Site" +msgstr "_Ana Web Sayfası" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:12 +msgid "_Preparing your Images for the Web" +msgstr "Web için kendi İmgelerinizi _Hazırlama" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:13 +msgid "_User Manual Web Site" +msgstr "_Kullanıcı Kılavuzu Web Sayfası" + +#: ../plug-ins/script-fu/scripts/web-browser.scm.h:14 +msgid "_Working with Digital Camera Photos" +msgstr "Dijital Kamera Görüntüleri ile _çalışıyor" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:1 +msgid "Add a subtle translucent 3D effect to the selected region (or alpha)" +msgstr "Seçili bölgeye (ya da görünüre) 3 boyutlu cam etkisi ekle" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 +msgid "Drop shadow X offset" +msgstr "Gölgenin X konumu" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:3 +msgid "Drop shadow Y offset" +msgstr "Gölgenin Y konumu" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:4 +msgid "Drop shadow blur radius" +msgstr "Gölgenin bulanıklık yarıçapı" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:5 +msgid "Drop shadow color" +msgstr "Gölge rengi" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:6 +msgid "Drop shadow opacity" +msgstr "Gölge matlığı" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:7 +msgid "Highlight X offset" +msgstr "X konumunu aydınlat" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:8 +msgid "Highlight Y offset" +msgstr "Y konumunu aydınlat" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:10 +msgid "Highlight opacity" +msgstr "Aydınlatma şiddeti" + +#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 +msgid "_Xach-Effect..." +msgstr "_Cam Etkisi" diff --git a/multimedia/graphics/gimp/gimp/files/po_gimp20-tr.po b/multimedia/graphics/gimp/gimp/files/po_gimp20-tr.po new file mode 100644 index 0000000000..7764af110a --- /dev/null +++ b/multimedia/graphics/gimp/gimp/files/po_gimp20-tr.po @@ -0,0 +1,12875 @@ +# Turkish translation of GIMP. +# Copyright (C) 2001,2003, 2004 Free Software Foundation, Inc. +# Fatih Demir , 2001. +# Ömer Fadıl USTA , 2001. +# Alper Ersoy , 2001. +# Görkem Çetin , 2003, 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: gimp.gimp-2-0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-08 19:59+0000\n" +"PO-Revision-Date: 2011-01-22 14:58+0000\n" +"Last-Translator: Görkem Çetin \n" +"Language-Team: Türkçe \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" +"X-Launchpad-Export-Date: 2011-08-09 06:12+0000\n" +"X-Generator: Launchpad (build 13628)\n" + +#: ../app/about.h:24 +msgid "GIMP" +msgstr "GIMP" + +#: ../app/about.h:27 +msgid "GNU Image Manipulation Program" +msgstr "GNU Resim Düzenleme Programı" + +#: ../app/about.h:30 +msgid "" +"Copyright © 1995-2008\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team" +msgstr "" +"Telif Hakkı © 1995-2008\n" +"Spencer Kimball, Peter Mattis ve the GIMP Geliştirme Takımı" + +#: ../app/about.h:34 +msgid "" +"GIMP is free software; you can redistribute it and/or modify it under the " +"terms of the GNU General Public License as published by the Free Software " +"Foundation; either version 2 of the License, or (at your option) any later " +"version.\n" +"\n" +"GIMP is distributed in the hope that it will be useful, but WITHOUT ANY " +"WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS " +"FOR A PARTICULAR PURPOSE. See the GNU General Public License for more " +"details.\n" +"\n" +"You should have received a copy of the GNU General Public License along with " +"GIMP; if not, write to the Free Software Foundation, Inc., 59 Temple Place - " +"Suite 330, Boston, MA 02111-1307, USA." +msgstr "" +"GIMP özgür bir yazılımdır, Özgür Yazılım Vakfı'nın yayınladığı GNU Genel " +"Kamu Lisansı'nın 2. veya daha sonraki sürümlerindeki şartlar altında " +"dağıtılabilir ve/veya değiştirilebilir. \n" +"\n" +"GIMP faydalı olacağı umut edilerek dağıtılmaktadır, fakat HİÇBİR GARANTİSİ " +"YOKTUR; hatta ÜRÜN DEĞERİ ya da BİR AMACA UYGUNLUK gibi garantiler de " +"vermez. Lütfen daha fazla ayrıntı için GNU Genel Kamu Lisansı'nı inceleyin. " +"\n" +"\n" +"GIMP ile beraber GNU Genel Kamu Lisansını da almış olmalısınız; eğer " +"almadıysanız, Free Software Foundation, Inc., 59 Temple Place - Suite 330, " +"Boston, MA 02111-1307, USA adresine yazınız." + +#: ../app/app.c:214 +#, c-format +msgid "" +"Unable to open a test swap file.\n" +"\n" +"To avoid data loss, please check the location and permissions of the swap " +"directory defined in your Preferences (currently \"%s\")." +msgstr "" +"Bir deneme takas dosyası açılamadı.\n" +"\n" +"Veri kaybından kaçınmak için, takas dosyasının yerini ve izinlerini " +"Tercihler içinde kontrol edin (güncel olan \"%s\")." + +#: ../app/batch.c:75 +#, c-format +msgid "No batch interpreter specified, using the default '%s'.\n" +msgstr "Belirlenmiş toplu yorumlayıcı yok, öntanımlı '%s' kullanılıyor.\n" + +#: ../app/batch.c:93 ../app/batch.c:111 +#, c-format +msgid "The batch interpreter '%s' is not available. Batch mode disabled." +msgstr "Toplu yorumlayıcı '%s' kullanılır değil. Toplu kip etkin değil." + +#: ../app/main.c:144 ../tools/gimp-remote.c:60 +msgid "Show version information and exit" +msgstr "Sürüm bilgisini göster ve çık" + +#: ../app/main.c:149 +msgid "Show license information and exit" +msgstr "Lisans bilgisini göster ve çık" + +#: ../app/main.c:154 +msgid "Be more verbose" +msgstr "Daha çok bilgi ver" + +#: ../app/main.c:159 +msgid "Start a new GIMP instance" +msgstr "Yeni bir GIMP örneği başlat" + +#: ../app/main.c:164 +msgid "Open images as new" +msgstr "Görüntüleri yeni olarak aç" + +#: ../app/main.c:169 +msgid "Run without a user interface" +msgstr "Bir kullanıcı arabirimi olmadan çalıştır" + +#: ../app/main.c:174 +msgid "Do not load brushes, gradients, patterns, ..." +msgstr "Fırçaları, renk geçişlerini, desenleri, ... yükleme." + +#: ../app/main.c:179 +msgid "Do not load any fonts" +msgstr "Herhangi bir yazıyüzünü yükleme" + +#: ../app/main.c:184 +msgid "Do not show a startup window" +msgstr "Açılış penceresini gösterme." + +#: ../app/main.c:189 +msgid "Do not use shared memory between GIMP and plugins" +msgstr "GIMP ve eklentiler arasında paylaşımlı bellek kullanma" + +#: ../app/main.c:194 +msgid "Do not use special CPU acceleration functions" +msgstr "Özel işlemci hızlandırma işlevleri kullanma" + +#: ../app/main.c:199 +msgid "Use an alternate sessionrc file" +msgstr "Başka bir sessionrc dosyası kullan" + +#: ../app/main.c:204 +msgid "Use an alternate user gimprc file" +msgstr "Başka bir kullanıcının gimprc dosyasını kullan" + +#: ../app/main.c:209 +msgid "Use an alternate system gimprc file" +msgstr "Başka bir sistem gimprc dosyası kullan" + +#: ../app/main.c:214 +msgid "Batch command to run (can be used multiple times)" +msgstr "Çalıştırılacak toplu komut (birçok defa kullanılabilir)" + +#: ../app/main.c:219 +msgid "The procedure to process batch commands with" +msgstr "Çoklu komutlar sürecinin yordamı, şunlarla:" + +#: ../app/main.c:224 +msgid "Send messages to console instead of using a dialog" +msgstr "İletişim kutusu kullanmak yerine iletileri uçbirime gönder" + +#. don't translate the mode names (off|on|warn) +#: ../app/main.c:230 +msgid "PDB compatibility mode (off|on|warn)" +msgstr "PDB uyumluluk kipi (off|on|warn)" + +#. don't translate the mode names (never|query|always) +#: ../app/main.c:236 +msgid "Debug in case of a crash (never|query|always)" +msgstr "Çökme durumunda yanlış ayıkla (never|query|always)" + +#: ../app/main.c:241 +msgid "Enable non-fatal debugging signal handlers" +msgstr "Ölümcül olmayan yanlış ayıklama imi işleyicilerini etkinleştir" + +#: ../app/main.c:246 +msgid "Make all warnings fatal" +msgstr "Bütün uyarıları ölümcül yap" + +#: ../app/main.c:251 +msgid "Output a gimprc file with default settings" +msgstr "Çıktı, varsayılan ayarlarla birlikte gelen bir gimprc dosyasıdır." + +#: ../app/main.c:355 +msgid "[FILE|URI...]" +msgstr "[DOSYA|ADRES...]" + +#: ../app/main.c:373 +msgid "" +"GIMP could not initialize the graphical user interface.\n" +"Make sure a proper setup for your display environment exists." +msgstr "" +"GIMP, grafiksel kullanıcı arabirimini başlatamadı.\n" +"Görüntüleme ortamınız için uygun bir kurulumun var olduğundan emin olun." + +#: ../app/main.c:392 +msgid "Another GIMP instance is already running." +msgstr "Başka bir GIMP zaten çalışıyor." + +#: ../app/main.c:462 +msgid "GIMP output. Type any character to close this window." +msgstr "" +"GIMP çıktısı. Bu pencereyi kapatmak için herhangi bir karakter girin." + +#: ../app/main.c:463 +#, c-format +msgid "(Type any character to close this window)\n" +msgstr "(Bu pencereyi kapatmak için herhangi bir karakter girin)\n" + +#: ../app/main.c:480 +msgid "GIMP output. You can minimize this window, but don't close it." +msgstr "GIMP çıktısı. Bu pencereyi küçültebilirsiniz, fakat kapatmayın." + +#: ../app/sanity.c:365 +#, c-format +msgid "" +"The configured filename encoding cannot be converted to UTF-8: %s\n" +"\n" +"Please check the value of the environment variable G_FILENAME_ENCODING." +msgstr "" +"Yapılandırılmış dosya adı kodlaması UTF-8'e dönüştürülemedi: %s\n" +"\n" +"Lütfen ortam değişkeninin değerini denetleyin, G_FILENAME_ENCODING." + +#: ../app/sanity.c:384 +#, c-format +msgid "" +"The name of the directory holding the GIMP user configuration cannot be " +"converted to UTF-8: %s\n" +"\n" +"Your filesystem probably stores files in an encoding other than UTF-8 and " +"you didn't tell GLib about this. Please set the environment variable " +"G_FILENAME_ENCODING." +msgstr "" +"GIMP kullanıcı yapılandırmalarını içeren dizinin adı UTF-8 'e " +"dönüştürülememiş: %s Dosya sisteminiz muhtemelen UTF-8 den başka bir biçimde " +"dosyalar içeriyor ve Glib bundan habersiz. Lütfen G_FILENAME_ENCODING " +"çevresel değişkenini ayarlarınız." + +#. show versions of libraries used by GIMP +#: ../app/version.c:64 +#, c-format +msgid "using %s version %s (compiled against version %s)" +msgstr "%s kullanılıyor, sürüm %s (%s sürümüne karşı derlendi)" + +#: ../app/version.c:127 ../tools/gimp-remote.c:95 +#, c-format +msgid "%s version %s" +msgstr "%s sürüm %s" + +#: ../app/actions/actions.c:101 ../app/actions/dialogs-actions.c:123 +#: ../app/dialogs/dialogs.c:224 ../app/widgets/gimpbrusheditor.c:90 +msgid "Brush Editor" +msgstr "Fırça Düzenleyici" + +#. initialize the list of gimp brushes +#: ../app/actions/actions.c:104 ../app/core/gimp.c:838 +#: ../app/dialogs/dialogs.c:157 ../app/dialogs/preferences-dialog.c:2744 +msgid "Brushes" +msgstr "Fırçalar" + +#: ../app/actions/actions.c:107 ../app/dialogs/dialogs.c:169 +msgid "Buffers" +msgstr "Tamponlar" + +#: ../app/actions/actions.c:110 ../app/dialogs/dialogs.c:182 +msgid "Channels" +msgstr "Kanallar" + +#: ../app/actions/actions.c:113 ../app/dialogs/convert-dialog.c:174 +#: ../app/dialogs/dialogs.c:190 +msgid "Colormap" +msgstr "Renk haritası" + +#: ../app/actions/actions.c:116 +msgid "Configuration" +msgstr "Yapılandırma" + +#: ../app/actions/actions.c:119 +msgid "Context" +msgstr "Bağlam" + +#: ../app/actions/actions.c:122 ../app/dialogs/dialogs.c:150 +msgid "Pointer Information" +msgstr "İşaretçi Bilgisi" + +#: ../app/actions/actions.c:125 +msgid "Debug" +msgstr "Hata Ayıklama" + +#: ../app/actions/actions.c:128 +msgid "Dialogs" +msgstr "Pencereler" + +#: ../app/actions/actions.c:131 +msgid "Dock" +msgstr "Rıhtım" + +#: ../app/actions/actions.c:134 +msgid "Dockable" +msgstr "Gömülebilir" + +#. Document History +#: ../app/actions/actions.c:137 ../app/dialogs/dialogs.c:171 +#: ../app/dialogs/preferences-dialog.c:1595 +msgid "Document History" +msgstr "Belge Geçmişi" + +#: ../app/actions/actions.c:140 +msgid "Drawable" +msgstr "Çizilebilir" + +#: ../app/actions/actions.c:143 ../app/tools/tools-enums.c:300 +msgid "Edit" +msgstr "Düzenle" + +#: ../app/actions/actions.c:146 ../app/dialogs/dialogs.c:146 +msgid "Error Console" +msgstr "Hata Konsolu" + +#: ../app/actions/actions.c:149 +msgid "File" +msgstr "Dosya" + +#: ../app/actions/actions.c:152 ../app/dialogs/dialogs.c:165 +#: ../app/dialogs/preferences-dialog.c:2760 +msgid "Fonts" +msgstr "Yazıtipleri" + +#: ../app/actions/actions.c:155 ../app/actions/dialogs-actions.c:141 +#: ../app/dialogs/dialogs.c:228 ../app/widgets/gimpgradienteditor.c:276 +msgid "Gradient Editor" +msgstr "Gradyan Düzenleyici" + +#. initialize the list of gimp gradients +#: ../app/actions/actions.c:158 ../app/core/gimp.c:850 +#: ../app/dialogs/dialogs.c:161 ../app/dialogs/preferences-dialog.c:2756 +msgid "Gradients" +msgstr "Gradyanlar" + +#: ../app/actions/actions.c:161 +msgid "Help" +msgstr "Yardım" + +#: ../app/actions/actions.c:164 ../app/core/core-enums.c:212 +#: ../app/tools/tools-enums.c:242 +msgid "Image" +msgstr "Resim" + +#. list & grid views +#: ../app/actions/actions.c:167 ../app/dialogs/dialogs.c:155 +msgid "Images" +msgstr "Resimler" + +#: ../app/actions/actions.c:170 ../app/dialogs/dialogs.c:178 +#: ../app/dialogs/resize-dialog.c:286 +msgid "Layers" +msgstr "Katmanlar" + +#: ../app/actions/actions.c:173 ../app/actions/dialogs-actions.c:153 +#: ../app/dialogs/dialogs.c:232 ../app/widgets/gimppaletteeditor.c:155 +msgid "Palette Editor" +msgstr "Palet Düzenleyici" + +#. initialize the list of gimp palettes +#: ../app/actions/actions.c:176 ../app/core/gimp.c:846 +#: ../app/dialogs/dialogs.c:163 ../app/dialogs/preferences-dialog.c:2752 +msgid "Palettes" +msgstr "Paletler" + +#. initialize the list of gimp patterns +#: ../app/actions/actions.c:179 ../app/core/gimp.c:842 +#: ../app/dialogs/dialogs.c:159 ../app/dialogs/preferences-dialog.c:2748 +msgid "Patterns" +msgstr "Desenler" + +#: ../app/actions/actions.c:182 ../app/dialogs/preferences-dialog.c:2764 +msgid "Plug-Ins" +msgstr "Eklentiler" + +#: ../app/actions/actions.c:185 ../app/core/core-enums.c:860 +#: ../app/core/gimpchannel.c:362 +msgid "Quick Mask" +msgstr "Hızlı Maske" + +#: ../app/actions/actions.c:188 ../app/dialogs/dialogs.c:206 +msgid "Sample Points" +msgstr "Örnek Noktalar" + +#: ../app/actions/actions.c:191 +msgid "Select" +msgstr "Seç" + +#. initialize the template list +#: ../app/actions/actions.c:194 ../app/core/gimp.c:859 +#: ../app/dialogs/dialogs.c:173 +msgid "Templates" +msgstr "Şablonlar" + +#: ../app/actions/actions.c:197 +msgid "Text Editor" +msgstr "Metin Düzenleyici" + +#: ../app/actions/actions.c:200 ../app/dialogs/dialogs.c:138 +#: ../app/dialogs/preferences-dialog.c:1880 ../app/gui/gui.c:429 +msgid "Tool Options" +msgstr "Alet Seçenekleri" + +#: ../app/actions/actions.c:203 ../app/dialogs/dialogs.c:167 +msgid "Tools" +msgstr "Araçlar" + +#: ../app/actions/actions.c:206 ../app/dialogs/dialogs.c:186 +#: ../app/tools/gimpvectortool.c:160 +msgid "Paths" +msgstr "Yollar" + +#: ../app/actions/actions.c:209 +msgid "View" +msgstr "Görünüm" + +#: ../app/actions/actions.c:212 +msgid "Windows" +msgstr "Pencereler" + +#: ../app/actions/brush-editor-actions.c:43 +msgid "Brush Editor Menu" +msgstr "Fırça Düzenleyici Menüsü" + +#: ../app/actions/brush-editor-actions.c:50 +msgid "Edit Active Brush" +msgstr "Etkin Fırçayı Düzenle" + +#: ../app/actions/brushes-actions.c:43 +msgid "Brushes Menu" +msgstr "Fırçalar Menüsü" + +#: ../app/actions/brushes-actions.c:47 +msgid "_Open Brush as Image" +msgstr "Fırçayı Görüntü olarak _Aç" + +#: ../app/actions/brushes-actions.c:48 +msgid "Open brush as image" +msgstr "Fırçayı görüntü olarak aç" + +#: ../app/actions/brushes-actions.c:53 +msgid "_New Brush" +msgstr "Y_eni Fırça" + +#: ../app/actions/brushes-actions.c:54 +msgid "New brush" +msgstr "Yeni Fırça" + +#: ../app/actions/brushes-actions.c:59 +msgid "D_uplicate Brush" +msgstr "Fırçayı Ç_oğalt" + +#: ../app/actions/brushes-actions.c:60 +msgid "Duplicate brush" +msgstr "Fırçayı Ç_oğalt" + +#: ../app/actions/brushes-actions.c:65 +msgid "Copy Brush _Location" +msgstr "Fırça _Yerini Kopyala" + +#: ../app/actions/brushes-actions.c:66 +msgid "Copy brush file location to clipboard" +msgstr "Fırça dosyasının yerini panoya kopyala" + +#: ../app/actions/brushes-actions.c:71 +msgid "_Delete Brush" +msgstr "Fı_rçayı Sil" + +#: ../app/actions/brushes-actions.c:72 +msgid "Delete brush" +msgstr "Fırçayı sil" + +#: ../app/actions/brushes-actions.c:77 +msgid "_Refresh Brushes" +msgstr "_Fırçaları Tazele" + +#: ../app/actions/brushes-actions.c:78 +msgid "Refresh brushes" +msgstr "Fırçaları tazele" + +#: ../app/actions/brushes-actions.c:86 +msgid "_Edit Brush..." +msgstr "Fırçayı _Düzenle..." + +#: ../app/actions/brushes-actions.c:87 +msgid "Edit brush" +msgstr "/Fırçayı düzenle" + +#: ../app/actions/buffers-actions.c:42 +msgid "Buffers Menu" +msgstr "Tamponlar Menüsü" + +#: ../app/actions/buffers-actions.c:46 +msgid "_Paste Buffer" +msgstr "_Tamponu Yapıştır" + +#: ../app/actions/buffers-actions.c:47 +msgid "Paste the selected buffer" +msgstr "Seçili tamponu yapıştır" + +#: ../app/actions/buffers-actions.c:52 +msgid "Paste Buffer _Into" +msgstr "Arabelleği _İçine Yapıştır" + +#: ../app/actions/buffers-actions.c:53 +msgid "Paste the selected buffer into the selection" +msgstr "Seçili arabelleği seçimin içine yapıştır" + +#: ../app/actions/buffers-actions.c:58 +msgid "Paste Buffer as _New" +msgstr "Arabelleği _Yeni olarak Yapıştır" + +#: ../app/actions/buffers-actions.c:59 +msgid "Paste the selected buffer as new image" +msgstr "Seçili arabelleği yeni görüntü olarak yapıştır" + +#: ../app/actions/buffers-actions.c:64 +msgid "_Delete Buffer" +msgstr "Arabelleği _Sil" + +#: ../app/actions/buffers-actions.c:65 +msgid "Delete the selected buffer" +msgstr "Seçili arabelleği sil" + +#: ../app/actions/channels-actions.c:44 +msgid "Channels Menu" +msgstr "Kanallar Menüsü" + +#: ../app/actions/channels-actions.c:48 +msgid "_Edit Channel Attributes..." +msgstr "Kanal Öznitel_iklerini Düzenle..." + +#: ../app/actions/channels-actions.c:49 +msgid "Edit the channel's name, color and opacity" +msgstr "Kanal adını, rengini ve ışık geçirmezliğini düzenle" + +#: ../app/actions/channels-actions.c:54 +msgid "_New Channel..." +msgstr "Yeni Ka_nal..." + +#: ../app/actions/channels-actions.c:55 +msgid "Create a new channel" +msgstr "Yeni bir kanal oluştur" + +#: ../app/actions/channels-actions.c:60 +msgid "_New Channel" +msgstr "_Yeni Kanal" + +#: ../app/actions/channels-actions.c:61 +msgid "Create a new channel with last used values" +msgstr "Son kullanılan değerlerle yeni bir kanal oluştur" + +#: ../app/actions/channels-actions.c:66 +msgid "D_uplicate Channel" +msgstr "_Kanalı Çoğalt" + +#: ../app/actions/channels-actions.c:67 +msgid "Create a duplicate of this channel and add it to the image" +msgstr "Bu kanalın bir eşini oluştur ve görüntüye ekle" + +#: ../app/actions/channels-actions.c:72 +msgid "_Delete Channel" +msgstr "Kanalı _Sil" + +#: ../app/actions/channels-actions.c:73 +msgid "Delete this channel" +msgstr "Bu kanalı sil" + +#: ../app/actions/channels-actions.c:78 +msgid "_Raise Channel" +msgstr "Ka_nalı Yükselt" + +#: ../app/actions/channels-actions.c:79 +msgid "Raise this channel one step in the channel stack" +msgstr "Bu kanalı kanal yığınında bir adım yükselt" + +#: ../app/actions/channels-actions.c:84 +msgid "Raise Channel to _Top" +msgstr "K_analı En Tepeye Yükselt" + +#: ../app/actions/channels-actions.c:85 +msgid "Raise this channel to the top of the channel stack" +msgstr "Bu kanalı kanal yığınında en tepeye yükselt" + +#: ../app/actions/channels-actions.c:90 +msgid "_Lower Channel" +msgstr "Kan_alı Alçalt" + +#: ../app/actions/channels-actions.c:91 +msgid "Lower this channel one step in the channel stack" +msgstr "Bu kanalı kanal yığınında bir adım indir" + +#: ../app/actions/channels-actions.c:96 +msgid "Lower Channel to _Bottom" +msgstr "Kanalı _En Alta İndir" + +#: ../app/actions/channels-actions.c:97 +msgid "Lower this channel to the bottom of the channel stack" +msgstr "Bu kanalı kanal yığınının en altına indir" + +#: ../app/actions/channels-actions.c:105 +msgid "Channel to Sele_ction" +msgstr "Kanaldan Seçi_me" + +#: ../app/actions/channels-actions.c:106 +msgid "Replace the selection with this channel" +msgstr "Seçimi bu kanalın yerine koy" + +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:266 +#: ../app/actions/vectors-actions.c:173 +msgid "_Add to Selection" +msgstr "Seçime _Ekle" + +#: ../app/actions/channels-actions.c:112 +msgid "Add this channel to the current selection" +msgstr "Mevcut seçime bu kanalı ekle" + +#: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:272 +#: ../app/actions/layers-actions.c:299 ../app/actions/layers-actions.c:326 +#: ../app/actions/vectors-actions.c:179 +msgid "_Subtract from Selection" +msgstr "Seçimden Çık_ar" + +#: ../app/actions/channels-actions.c:118 +msgid "Subtract this channel from the current selection" +msgstr "Mevcut seçimden bu kanalı çıkar" + +#: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:278 +#: ../app/actions/layers-actions.c:305 ../app/actions/layers-actions.c:332 +#: ../app/actions/vectors-actions.c:185 +msgid "_Intersect with Selection" +msgstr "Seçimle Ke_siştir" + +#: ../app/actions/channels-actions.c:124 +msgid "Intersect this channel with the current selection" +msgstr "Mevcut seçimle bu kanalı kesiştir" + +#: ../app/actions/channels-commands.c:85 +#: ../app/actions/channels-commands.c:393 +msgid "Channel Attributes" +msgstr "Kanal Öznitelikleri" + +#: ../app/actions/channels-commands.c:88 +msgid "Edit Channel Attributes" +msgstr "Kanal Özniteliklerini Düzenle" + +#: ../app/actions/channels-commands.c:90 +msgid "Edit Channel Color" +msgstr "Kanal Rengini Düzenle" + +#: ../app/actions/channels-commands.c:91 +#: ../app/actions/channels-commands.c:123 +msgid "_Fill opacity:" +msgstr "Işık geçirmezliği _doldur:" + +#: ../app/actions/channels-commands.c:116 +#: ../app/actions/channels-commands.c:117 +#: ../app/actions/channels-commands.c:159 +#: ../app/actions/channels-commands.c:163 +#: ../app/widgets/gimpchanneltreeview.c:316 +msgid "New Channel" +msgstr "Yeni Kanal" + +#: ../app/actions/channels-commands.c:120 +msgid "New Channel Options" +msgstr "Yeni Kanal Seçenekleri" + +#: ../app/actions/channels-commands.c:122 +msgid "New Channel Color" +msgstr "Yeni Kanal Rengi" + +#: ../app/actions/channels-commands.c:243 +#: ../app/display/gimpdisplayshell-dnd.c:584 +#: ../app/widgets/gimpchanneltreeview.c:249 +#: ../app/widgets/gimplayertreeview.c:773 ../app/widgets/gimptoolbox-dnd.c:313 +#, c-format +msgid "%s Channel Copy" +msgstr "%s Kanal Kopyası" + +#: ../app/actions/channels-commands.c:307 ../app/core/gimpselection.c:549 +#: ../app/pdb/selection-cmds.c:454 ../app/pdb/selection-cmds.c:521 +msgid "Channel to Selection" +msgstr "Kanaldan Seçime" + +#: ../app/actions/colormap-actions.c:44 +msgid "Colormap Menu" +msgstr "Renk Haritası Menüsü" + +#: ../app/actions/colormap-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 +msgid "_Edit Color..." +msgstr "_Renk Düzenle..." + +#: ../app/actions/colormap-actions.c:49 +#: ../app/actions/palette-editor-actions.c:49 +msgid "Edit color" +msgstr "Rengi düzenle" + +#: ../app/actions/colormap-actions.c:57 +msgid "_Add Color from FG" +msgstr "_Önplandan Renk Ekle" + +#: ../app/actions/colormap-actions.c:58 +msgid "Add current foreground color" +msgstr "Mevcut önalan rengini ekle" + +#: ../app/actions/colormap-actions.c:63 +msgid "_Add Color from BG" +msgstr "_Arkaplandan Renk Ekle" + +#: ../app/actions/colormap-actions.c:64 +msgid "Add current background color" +msgstr "Mevcut artalan rengini ekle" + +#: ../app/actions/colormap-commands.c:73 +#, c-format +msgid "Edit colormap entry #%d" +msgstr "%d palet girdi rengini düzenle" + +#: ../app/actions/colormap-commands.c:80 +msgid "Edit Colormap Entry" +msgstr "Palet Girdi Rengini Düzenle" + +#: ../app/actions/config-actions.c:39 +msgid "Use _GEGL" +msgstr "_GEGL kullan" + +#: ../app/actions/config-actions.c:40 +msgid "If possible, use GEGL for image processing" +msgstr "Eğer mümkünse, görüntü işlemlerinde GEGL kullan" + +#: ../app/actions/context-actions.c:46 +msgid "_Context" +msgstr "İçeri_k" + +#: ../app/actions/context-actions.c:47 ../app/actions/image-actions.c:59 +msgid "_Colors" +msgstr "_Renkler" + +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:58 +msgid "_Opacity" +msgstr "_Saydamsızlık" + +#: ../app/actions/context-actions.c:49 +msgid "Paint _Mode" +msgstr "Boyama _Kipi" + +#: ../app/actions/context-actions.c:50 +msgid "_Tool" +msgstr "_Araç" + +#: ../app/actions/context-actions.c:51 +#: ../app/dialogs/preferences-dialog.c:1940 +msgid "_Brush" +msgstr "_Fırça" + +#: ../app/actions/context-actions.c:52 ../app/actions/plug-in-actions.c:99 +#: ../app/dialogs/preferences-dialog.c:1943 +msgid "_Pattern" +msgstr "_Desen" + +#: ../app/actions/context-actions.c:53 +msgid "_Palette" +msgstr "_Palet" + +#: ../app/actions/context-actions.c:54 +#: ../app/dialogs/palette-import-dialog.c:216 +#: ../app/dialogs/preferences-dialog.c:1946 +msgid "_Gradient" +msgstr "_Gradyan" + +#: ../app/actions/context-actions.c:55 +msgid "_Font" +msgstr "_Yazıtipi" + +#: ../app/actions/context-actions.c:57 +msgid "_Shape" +msgstr "Ş_ekil" + +#: ../app/actions/context-actions.c:58 +msgid "_Radius" +msgstr "_Yarıçap" + +#: ../app/actions/context-actions.c:59 +msgid "S_pikes" +msgstr "Ar_tışlar" + +#: ../app/actions/context-actions.c:60 +msgid "_Hardness" +msgstr "_Sertlik" + +#: ../app/actions/context-actions.c:61 +msgid "_Aspect" +msgstr "_Görüntü Oranı" + +#: ../app/actions/context-actions.c:62 +msgid "A_ngle" +msgstr "_Açı" + +#: ../app/actions/context-actions.c:65 +msgid "_Default Colors" +msgstr "Öntanımlı _Renkler" + +#: ../app/actions/context-actions.c:66 +msgid "Set foreground color to black, background color to white" +msgstr "Önalan rengini siyah, artalan rengini beyaz olarak ayarla" + +#: ../app/actions/context-actions.c:71 +msgid "S_wap Colors" +msgstr "Renkleri _Değiştir" + +#: ../app/actions/context-actions.c:72 +msgid "Exchange foreground and background colors" +msgstr "Önalan ile artalan renklerini karşılıklı değiştir" + +#: ../app/actions/cursor-info-actions.c:40 +msgid "Pointer Information Menu" +msgstr "İmleç Bilgi Menüsü" + +#: ../app/actions/cursor-info-actions.c:47 +#: ../app/actions/sample-points-actions.c:47 +#: ../app/widgets/gimpcursorview.c:192 +msgid "_Sample Merged" +msgstr "_Örnek Birleştirildi" + +#: ../app/actions/cursor-info-actions.c:48 +#: ../app/actions/sample-points-actions.c:48 +msgid "Sample Merged" +msgstr "Örnek Birleştirildi" + +#: ../app/actions/data-commands.c:107 ../app/actions/documents-commands.c:344 +#: ../app/actions/file-commands.c:184 ../app/dialogs/file-open-dialog.c:229 +#: ../app/dialogs/file-open-dialog.c:273 +#: ../app/dialogs/file-open-location-dialog.c:213 +#: ../app/dialogs/file-open-location-dialog.c:225 +#: ../app/display/gimpdisplayshell-dnd.c:537 +#: ../app/widgets/gimplayertreeview.c:730 ../app/widgets/gimptoolbox-dnd.c:158 +#: ../app/widgets/gimptoolbox.c:981 +#, c-format +msgid "" +"Opening '%s' failed:\n" +"\n" +"%s" +msgstr "" +"%s dosyasını açma işlemi başarısız oldu:\n" +"\n" +"%s" + +#: ../app/actions/data-commands.c:133 +#: ../app/core/gimpbrushgenerated-load.c:125 ../app/core/gimpimage.c:1419 +#: ../app/core/gimppalette-import.c:211 ../app/core/gimppalette-load.c:222 +#: ../app/core/gimppalette.c:333 ../app/dialogs/palette-import-dialog.c:774 +#: ../app/pdb/image-cmds.c:2198 ../app/widgets/gimpdnd-xds.c:92 +msgid "Untitled" +msgstr "İsimsiz" + +#: ../app/actions/data-commands.c:231 +msgid "Delete Object" +msgstr "Nesneyi Sil" + +#: ../app/actions/data-commands.c:254 +#, c-format +msgid "Delete '%s'?" +msgstr "Sil '%s'?" + +#: ../app/actions/data-commands.c:257 +#, c-format +msgid "" +"Are you sure you want to remove '%s' from the list and delete it on disk?" +msgstr "" +"'%s', listeden kaldırmak ve diskten silmek istediğinize emin misiniz?" + +#: ../app/actions/dialogs-actions.c:39 +msgid "Tool _Options" +msgstr "Araç _Seçenekleri" + +#: ../app/actions/dialogs-actions.c:40 +msgid "Open the tool options dialog" +msgstr "Araç seçenekleri kutusunu aç" + +#: ../app/actions/dialogs-actions.c:45 +msgid "_Device Status" +msgstr "_Aygıt Durumu" + +#: ../app/actions/dialogs-actions.c:46 +msgid "Open the device status dialog" +msgstr "Aygıt durumu kutusunu aç" + +#: ../app/actions/dialogs-actions.c:51 +msgid "_Layers" +msgstr "_Katmanlar" + +#: ../app/actions/dialogs-actions.c:52 +msgid "Open the layers dialog" +msgstr "Katmanlar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:57 +msgid "_Channels" +msgstr "_Kanallar" + +#: ../app/actions/dialogs-actions.c:58 +msgid "Open the channels dialog" +msgstr "Kanallar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:63 +msgid "_Paths" +msgstr "_Yollar" + +#: ../app/actions/dialogs-actions.c:64 +msgid "Open the paths dialog" +msgstr "Yollar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:69 +msgid "Color_map" +msgstr "_Renk haritası" + +#: ../app/actions/dialogs-actions.c:70 +msgid "Open the colormap dialog" +msgstr "Renk haritası kutusunu aç" + +#: ../app/actions/dialogs-actions.c:75 +msgid "Histogra_m" +msgstr "_Historgram" + +#: ../app/actions/dialogs-actions.c:76 +msgid "Open the histogram dialog" +msgstr "Histogram kutusunu aç" + +#: ../app/actions/dialogs-actions.c:81 +msgid "_Selection Editor" +msgstr "_Seçim Düzenleyici" + +#: ../app/actions/dialogs-actions.c:82 +msgid "Open the selection editor" +msgstr "Seçim düzenleyiciyi aç" + +#: ../app/actions/dialogs-actions.c:87 +msgid "Na_vigation" +msgstr "_Gezgin" + +#: ../app/actions/dialogs-actions.c:88 +msgid "Open the display navigation dialog" +msgstr "Dolaşma görüntüsü kutusunu aç" + +#: ../app/actions/dialogs-actions.c:93 +msgid "Undo _History" +msgstr "_Geri Alma Geçmişi" + +#: ../app/actions/dialogs-actions.c:94 +msgid "Open the undo history dialog" +msgstr "Geri alma geçmişi kutusunu aç" + +#: ../app/actions/dialogs-actions.c:99 ../app/dialogs/dialogs.c:150 +msgid "Pointer" +msgstr "İmleç" + +#: ../app/actions/dialogs-actions.c:100 +msgid "Open the pointer information dialog" +msgstr "İmleç bilgi kutusunu aç" + +#: ../app/actions/dialogs-actions.c:105 +msgid "_Sample Points" +msgstr "_Örnek Noktalar" + +#: ../app/actions/dialogs-actions.c:106 +msgid "Open the sample points dialog" +msgstr "Örnek noktalar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:111 +msgid "Colo_rs" +msgstr "Renk_ler" + +#: ../app/actions/dialogs-actions.c:112 +msgid "Open the FG/BG color dialog" +msgstr "Önalan/Artalan renk kutusunu aç" + +#: ../app/actions/dialogs-actions.c:117 +msgid "_Brushes" +msgstr "_Fırçalar" + +#: ../app/actions/dialogs-actions.c:118 +msgid "Open the brushes dialog" +msgstr "Fırçalar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:124 +msgid "Open the brush editor" +msgstr "Fırça düzenleyiciyi aç" + +#: ../app/actions/dialogs-actions.c:129 +msgid "P_atterns" +msgstr "_Desenler" + +#: ../app/actions/dialogs-actions.c:130 +msgid "Open the patterns dialog" +msgstr "Desenler kutusunu aç" + +#: ../app/actions/dialogs-actions.c:135 +msgid "_Gradients" +msgstr "_Gradyanlar" + +#: ../app/actions/dialogs-actions.c:136 +msgid "Open the gradients dialog" +msgstr "Renk geçişleri kutusunu aç" + +#: ../app/actions/dialogs-actions.c:142 +msgid "Open the gradient editor" +msgstr "Renk geçişi düzenleyicisini aç" + +#: ../app/actions/dialogs-actions.c:147 +msgid "Pal_ettes" +msgstr "_Paletler" + +#: ../app/actions/dialogs-actions.c:148 +msgid "Open the palettes dialog" +msgstr "Paletler kutusunu aç" + +#: ../app/actions/dialogs-actions.c:154 +msgid "Open the palette editor" +msgstr "Palet düzenleyicisini aç" + +#: ../app/actions/dialogs-actions.c:159 +msgid "_Fonts" +msgstr "_Yazıtipleri" + +#: ../app/actions/dialogs-actions.c:160 +msgid "Open the fonts dialog" +msgstr "Yazıyüzleri kutusunu aç" + +#: ../app/actions/dialogs-actions.c:165 +msgid "B_uffers" +msgstr "_Tamponlar" + +#: ../app/actions/dialogs-actions.c:166 +msgid "Open the named buffers dialog" +msgstr "Adlandırılan arabellekler kutusunu aç" + +#: ../app/actions/dialogs-actions.c:171 +msgid "_Images" +msgstr "_Resimler" + +#: ../app/actions/dialogs-actions.c:172 +msgid "Open the images dialog" +msgstr "Görüntüler kutusunu aç" + +#: ../app/actions/dialogs-actions.c:177 +msgid "Document Histor_y" +msgstr "_Belge Geçmişi" + +#: ../app/actions/dialogs-actions.c:178 +msgid "Open the document history dialog" +msgstr "Belge geçmişi kutusunu aç" + +#: ../app/actions/dialogs-actions.c:183 +msgid "_Templates" +msgstr "Ş_ablonlar" + +#: ../app/actions/dialogs-actions.c:184 +msgid "Open the image templates dialog" +msgstr "Görüntü şablonları kutusunu aç" + +#: ../app/actions/dialogs-actions.c:189 +msgid "T_ools" +msgstr "_Araçlar" + +#: ../app/actions/dialogs-actions.c:190 +msgid "Open the tools dialog" +msgstr "Araçlar kutusunu aç" + +#: ../app/actions/dialogs-actions.c:195 +msgid "Error Co_nsole" +msgstr "Hata _Konsolu" + +#: ../app/actions/dialogs-actions.c:196 +msgid "Open the error console" +msgstr "Hata uçbirimini aç" + +#: ../app/actions/dialogs-actions.c:206 +msgid "_Preferences" +msgstr "_Tercihler" + +#: ../app/actions/dialogs-actions.c:207 +msgid "Open the preferences dialog" +msgstr "Yeğlenenler kutusunu aç" + +#: ../app/actions/dialogs-actions.c:212 +msgid "_Keyboard Shortcuts" +msgstr "_Klavye Kısayolları" + +#: ../app/actions/dialogs-actions.c:213 +msgid "Open the keyboard shortcuts editor" +msgstr "Klavye kısayolları düzenleyiciyi aç" + +#: ../app/actions/dialogs-actions.c:218 +msgid "_Modules" +msgstr "_Birimler" + +#: ../app/actions/dialogs-actions.c:219 +msgid "Open the module manager dialog" +msgstr "Birim yöneticisi kutusunu aç" + +#: ../app/actions/dialogs-actions.c:224 +msgid "_Tip of the Day" +msgstr "_Günün İpucu" + +#: ../app/actions/dialogs-actions.c:225 +msgid "Show some helpful tips on using GIMP" +msgstr "GIMP kullanımı ile ilgili ipuçları göster" + +#: ../app/actions/dialogs-actions.c:230 +msgid "_About" +msgstr "_Hakkında" + +#: ../app/actions/dialogs-actions.c:231 ../app/dialogs/about-dialog.c:114 +#: ../app/gui/gui.c:479 +msgid "About GIMP" +msgstr "GIMP Hakkında" + +#: ../app/actions/dock-actions.c:43 +msgid "M_ove to Screen" +msgstr "_Ekrana Taşı" + +#: ../app/actions/dock-actions.c:47 +msgid "Close Dock" +msgstr "Rıhtımı Kapat" + +#: ../app/actions/dock-actions.c:52 ../app/actions/view-actions.c:123 +msgid "_Open Display..." +msgstr "Görüntülemeyi _Aç..." + +#: ../app/actions/dock-actions.c:53 ../app/actions/view-actions.c:124 +msgid "Connect to another display" +msgstr "Başka bir görüntülemeye bağlan" + +#: ../app/actions/dock-actions.c:61 +msgid "_Show Image Selection" +msgstr "Re_sim Seçimini Göster" + +#: ../app/actions/dock-actions.c:67 +msgid "Auto _Follow Active Image" +msgstr "Etkin _Resmi Otomatik Takip et" + +#: ../app/actions/dockable-actions.c:49 +msgid "Dialogs Menu" +msgstr "Pencereler Menüsü" + +#: ../app/actions/dockable-actions.c:53 +msgid "_Add Tab" +msgstr "_Sekme Ekle" + +#: ../app/actions/dockable-actions.c:54 +msgid "_Preview Size" +msgstr "Önceki _Boyut" + +#: ../app/actions/dockable-actions.c:55 +msgid "_Tab Style" +msgstr "Sekme _Stili" + +#: ../app/actions/dockable-actions.c:58 +msgid "_Close Tab" +msgstr "_Sekmeyi Kapat" + +#: ../app/actions/dockable-actions.c:63 +msgid "_Detach Tab" +msgstr "_Sekmeyi Ayır" + +#: ../app/actions/dockable-actions.c:81 +msgid "_Tiny" +msgstr "_Minik" + +#: ../app/actions/dockable-actions.c:82 +msgid "E_xtra Small" +msgstr "Ç_ok Küçük" + +#: ../app/actions/dockable-actions.c:83 +msgid "_Small" +msgstr "_Küçük" + +#: ../app/actions/dockable-actions.c:84 +msgid "_Medium" +msgstr "_Orta" + +#: ../app/actions/dockable-actions.c:85 +msgid "_Large" +msgstr "_Büyük" + +#: ../app/actions/dockable-actions.c:86 +msgid "Ex_tra Large" +msgstr "Ço_k Büyük" + +#: ../app/actions/dockable-actions.c:87 +msgid "_Huge" +msgstr "_Kocaman" + +#: ../app/actions/dockable-actions.c:88 +msgid "_Enormous" +msgstr "İ_nanılmaz" + +#: ../app/actions/dockable-actions.c:89 +msgid "_Gigantic" +msgstr "_Dev gibi" + +#: ../app/actions/dockable-actions.c:94 +msgid "_Icon" +msgstr "_Simge" + +#: ../app/actions/dockable-actions.c:95 +msgid "Current _Status" +msgstr "Geçerli _Durum" + +#: ../app/actions/dockable-actions.c:96 +msgid "_Text" +msgstr "_Metin" + +#: ../app/actions/dockable-actions.c:97 +msgid "I_con & Text" +msgstr "Simg_e ve Metin" + +#: ../app/actions/dockable-actions.c:98 +msgid "St_atus & Text" +msgstr "_Durum ve Metin" + +#: ../app/actions/dockable-actions.c:108 +msgid "Loc_k Tab to Dock" +msgstr "Sekmeyi Rıhtıma _Kilitle" + +#: ../app/actions/dockable-actions.c:109 +msgid "Protect this tab from being dragged with the mouse pointer" +msgstr "Bu sekmeyi fare imleci ile sürüklenmeye karşı koru" + +#: ../app/actions/dockable-actions.c:115 +msgid "Show _Button Bar" +msgstr "Düğme _Çubuğunu Göster" + +#: ../app/actions/dockable-actions.c:124 +msgid "View as _List" +msgstr "_Liste Olarak Göster" + +#: ../app/actions/dockable-actions.c:129 +msgid "View as _Grid" +msgstr "Kılavuz _Olarak Görüntüle" + +#: ../app/actions/documents-actions.c:42 +msgid "Documents Menu" +msgstr "Belgeler Menüsü" + +#: ../app/actions/documents-actions.c:46 +msgid "_Open Image" +msgstr "Resim _Aç" + +#: ../app/actions/documents-actions.c:47 +msgid "Open the selected entry" +msgstr "Seçili girdiyi aç" + +#: ../app/actions/documents-actions.c:52 +msgid "_Raise or Open Image" +msgstr "_Yükselt veya Görüntü Aç" + +#: ../app/actions/documents-actions.c:53 +msgid "Raise window if already open" +msgstr "Zaten açıksa pencereyi yükselt" + +#: ../app/actions/documents-actions.c:58 +msgid "File Open _Dialog" +msgstr "Dosya Açma _Kutusu" + +#: ../app/actions/documents-actions.c:59 +msgid "Open image dialog" +msgstr "Görüntü kutusunu aç" + +#: ../app/actions/documents-actions.c:64 +msgid "Copy Image _Location" +msgstr "Görüntü _Yerini Kopyala" + +#: ../app/actions/documents-actions.c:65 +msgid "Copy image location to clipboard" +msgstr "Görüntü yerini panoya kopyala" + +#: ../app/actions/documents-actions.c:70 +msgid "Remove _Entry" +msgstr "_Girdiyi Sil" + +#: ../app/actions/documents-actions.c:71 +msgid "Remove the selected entry" +msgstr "Seçili girdiyi sil" + +#: ../app/actions/documents-actions.c:76 +msgid "_Clear History" +msgstr "Geçmişi _Temizle" + +#: ../app/actions/documents-actions.c:77 +msgid "Clear the entire document history" +msgstr "Bütün belge geçmişini temizle" + +#: ../app/actions/documents-actions.c:82 +msgid "Recreate _Preview" +msgstr "Yeniden Önizleme _Oluştur" + +#: ../app/actions/documents-actions.c:83 +msgid "Recreate preview" +msgstr "Yeniden önizleme oluştur" + +#: ../app/actions/documents-actions.c:88 +msgid "Reload _all Previews" +msgstr "_Tüm Önizlemeleri Yeniden Yükle" + +#: ../app/actions/documents-actions.c:89 +msgid "Reload all previews" +msgstr "Tüm önizlemeleri yeniden yükle" + +#: ../app/actions/documents-actions.c:94 +msgid "Remove Dangling E_ntries" +msgstr "_Sallanan Girişleri Kaldır" + +#: ../app/actions/documents-actions.c:95 +msgid "Remove dangling entries" +msgstr "Sallanan girişleri kaldır" + +#: ../app/actions/documents-commands.c:198 +msgid "Clear Document History" +msgstr "Belge Geçmişini Temizle" + +#: ../app/actions/documents-commands.c:221 +msgid "Clear the Recent Documents list?" +msgstr "Son Belgeler listesi temizlensin mi?" + +#: ../app/actions/documents-commands.c:224 +msgid "" +"Clearing the document history will permanently remove all items from the " +"recent documents list in all applications." +msgstr "" +"Belge geçmişinin temizlenmesi, son belgeler listesindeki tüm uygulamaların " +"öğelerini tamamen kaldıracaktır." + +#: ../app/actions/drawable-actions.c:45 +msgid "_Equalize" +msgstr "_Eşitlendir" + +#: ../app/actions/drawable-actions.c:46 +msgid "Automatic contrast enhancement" +msgstr "Otomatik karşıtlık arttır" + +#: ../app/actions/drawable-actions.c:51 +msgid "In_vert" +msgstr "_Tersine Çevir" + +#: ../app/actions/drawable-actions.c:52 +msgid "Invert the colors" +msgstr "Renkleri tersine çevir" + +#: ../app/actions/drawable-actions.c:57 +msgid "_White Balance" +msgstr "_Beyaz Dengesi" + +#: ../app/actions/drawable-actions.c:58 +msgid "Automatic white balance correction" +msgstr "Beyaz dengesini otomatik düzelt" + +#: ../app/actions/drawable-actions.c:63 +msgid "_Offset..." +msgstr "_Ofset..." + +#: ../app/actions/drawable-actions.c:64 +msgid "Shift the pixels, optionally wrapping them at the borders" +msgstr "Benekleri öteleyin, isteğe bağlı olarak sınırlara kaydırın" + +#: ../app/actions/drawable-actions.c:72 ../app/actions/vectors-actions.c:153 +msgid "_Linked" +msgstr "_Bağlı" + +#: ../app/actions/drawable-actions.c:73 +msgid "Toggle the linked state" +msgstr "Bağlanmış durumu değiştir" + +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 +msgid "_Visible" +msgstr "_Görünür" + +#: ../app/actions/drawable-actions.c:80 +msgid "Toggle visibility" +msgstr "Görünürlüğü değiştir" + +#: ../app/actions/drawable-actions.c:89 ../app/actions/image-actions.c:159 +msgid "Flip _Horizontally" +msgstr "_Yatay Çevir" + +#: ../app/actions/drawable-actions.c:90 +msgid "Flip horizontally" +msgstr "Yatay çevir" + +#: ../app/actions/drawable-actions.c:95 ../app/actions/image-actions.c:165 +msgid "Flip _Vertically" +msgstr "D_ikey Çevir" + +#: ../app/actions/drawable-actions.c:96 +msgid "Flip vertically" +msgstr "Dikey çevir" + +#: ../app/actions/drawable-actions.c:104 ../app/actions/image-actions.c:174 +msgid "Rotate 90° _clockwise" +msgstr "_Saat yönünde 90° döndür" + +#: ../app/actions/drawable-actions.c:105 +msgid "Rotate 90 degrees to the right" +msgstr "90° sağa döndür" + +#: ../app/actions/drawable-actions.c:110 ../app/actions/image-actions.c:180 +msgid "Rotate _180°" +msgstr "_180° döndür" + +#: ../app/actions/drawable-actions.c:111 +msgid "Turn upside-down" +msgstr "Baş aşağı döndür" + +#: ../app/actions/drawable-actions.c:116 ../app/actions/image-actions.c:186 +msgid "Rotate 90° counter-clock_wise" +msgstr "Saat _yönünün tersine 90° döndür" + +#: ../app/actions/drawable-actions.c:117 +msgid "Rotate 90 degrees to the left" +msgstr "90° sola döndür" + +#: ../app/actions/drawable-commands.c:62 +msgid "Equalize does not operate on indexed layers." +msgstr "Eşitleme indisli katmanlara uygulanamaz." + +#: ../app/actions/drawable-commands.c:85 +msgid "Invert does not operate on indexed layers." +msgstr "Terse çevrim indisli katmanlara uygulanamaz." + +#: ../app/actions/drawable-commands.c:108 +msgid "White Balance operates only on RGB color layers." +msgstr "Beyaz Dengesi, sadece RGB renk katmanlarına uygulanır." + +#: ../app/actions/edit-actions.c:63 +msgid "_Edit" +msgstr "Dü_zenle" + +#: ../app/actions/edit-actions.c:64 +msgid "_Paste as" +msgstr "_olarak Yapıştır" + +#: ../app/actions/edit-actions.c:65 +msgid "_Buffer" +msgstr "_Tamponlar" + +#: ../app/actions/edit-actions.c:68 +msgid "Undo History Menu" +msgstr "Geçmiş Menüsünü Geri Al" + +#: ../app/actions/edit-actions.c:72 ../app/actions/edit-actions.c:313 +msgid "_Undo" +msgstr "_Geri al" + +#: ../app/actions/edit-actions.c:73 +msgid "Undo the last operation" +msgstr "Son işlemi geri al" + +#: ../app/actions/edit-actions.c:78 ../app/actions/edit-actions.c:314 +msgid "_Redo" +msgstr "_Yinele" + +#: ../app/actions/edit-actions.c:79 +msgid "Redo the last operation that was undone" +msgstr "Bitmemiş son işlemi tekrar yap" + +#: ../app/actions/edit-actions.c:84 +msgid "Strong Undo" +msgstr "Çok Geri Al" + +#: ../app/actions/edit-actions.c:85 +msgid "Undo the last operation, skipping visibility changes" +msgstr "Görünürlük değişikliklerini atlayarak, son işlemi geri al" + +#: ../app/actions/edit-actions.c:90 +msgid "Strong Redo" +msgstr "Çok Yinele" + +#: ../app/actions/edit-actions.c:91 +msgid "Redo the last operation that was undone, skipping visibility changes" +msgstr "Görünürlük değişikliklerini atlayarak, bitmemiş son işlemi yinele" + +#: ../app/actions/edit-actions.c:96 +msgid "_Clear Undo History" +msgstr "_Geri Alma Geçmişini Temizle" + +#: ../app/actions/edit-actions.c:97 +msgid "Remove all operations from the undo history" +msgstr "Geri alma geçmişineki bütün işlemleri kaldır" + +#: ../app/actions/edit-actions.c:102 ../app/actions/edit-actions.c:315 +msgid "_Fade..." +msgstr "_Soldur..." + +#: ../app/actions/edit-actions.c:103 +msgid "Modify paint mode and opacity of the last pixel manipulation" +msgstr "Son benek işlemesinin boyama kipini ve ışık geçirmezliğini değiştir" + +#: ../app/actions/edit-actions.c:108 +msgid "Cu_t" +msgstr "_Kes" + +#: ../app/actions/edit-actions.c:109 +msgid "Move the selected pixels to the clipboard" +msgstr "Seçilmiş benekleri panoya taşı" + +#: ../app/actions/edit-actions.c:114 +msgid "_Copy" +msgstr "_Kopyala" + +#: ../app/actions/edit-actions.c:115 +msgid "Copy the selected pixels to the clipboard" +msgstr "Seçilmiş benekleri panoya kopyala" + +#. GIMP_STOCK_COPY_VISIBLE, +#: ../app/actions/edit-actions.c:120 +msgid "Copy _Visible" +msgstr "_Görünür Kısmı Kopyala" + +#: ../app/actions/edit-actions.c:121 +msgid "Copy what is visible in the selected region" +msgstr "Seçili bölgede ne görünebilir ise kopyala" + +#: ../app/actions/edit-actions.c:126 +msgid "_Paste" +msgstr "_Yapıştır" + +#: ../app/actions/edit-actions.c:127 +msgid "Paste the content of the clipboard" +msgstr "Pano içeriğini yapıştır" + +#: ../app/actions/edit-actions.c:132 +msgid "Paste _Into" +msgstr "İçi_ne Yapıştır" + +#: ../app/actions/edit-actions.c:133 +msgid "Paste the content of the clipboard into the current selection" +msgstr "Pano içeriğini şimdiki seçimin içine yapıştır" + +#: ../app/actions/edit-actions.c:138 +msgid "From _Clipboard" +msgstr "_Panodan" + +#: ../app/actions/edit-actions.c:139 ../app/actions/edit-actions.c:145 +msgid "Create a new image from the content of the clipboard" +msgstr "Pano içeriğinden yeni bir görüntü oluştur" + +#: ../app/actions/edit-actions.c:144 +msgid "_New Image" +msgstr "_Yeni Görüntü" + +#: ../app/actions/edit-actions.c:150 +msgid "New _Layer" +msgstr "Yeni _Katman" + +#: ../app/actions/edit-actions.c:151 +msgid "Create a new layer from the content of the clipboard" +msgstr "Pano içeriğinden yeni bir katman oluştur" + +#: ../app/actions/edit-actions.c:156 +msgid "Cu_t Named..." +msgstr "İsimle _Kes..." + +#: ../app/actions/edit-actions.c:157 +msgid "Move the selected pixels to a named buffer" +msgstr "Seçilmiş benekleri adlandırılan bir arabelleğe taşı" + +#: ../app/actions/edit-actions.c:162 +msgid "_Copy Named..." +msgstr "İ_simle Kopyala..." + +#: ../app/actions/edit-actions.c:163 +msgid "Copy the selected pixels to a named buffer" +msgstr "Seçilmiş benekleri adlandırılan bir arabelleğe kopyala" + +#. GIMP_STOCK_COPY_VISIBLE, +#: ../app/actions/edit-actions.c:168 +msgid "Copy _Visible Named..." +msgstr "_Görünür Adlandırılanı Kopyala..." + +#: ../app/actions/edit-actions.c:169 +msgid "Copy the selected region to a named buffer" +msgstr "Seçilmiş bölgeyi adlandırılan bir arabelleğe kopyala" + +#: ../app/actions/edit-actions.c:174 +msgid "_Paste Named..." +msgstr "İsimle Ya_pıştır..." + +#: ../app/actions/edit-actions.c:175 +msgid "Paste the content of a named buffer" +msgstr "Adlandırılan bir arabelleğin içeriğini yapıştır" + +#: ../app/actions/edit-actions.c:180 +msgid "Cl_ear" +msgstr "_Temizle" + +#: ../app/actions/edit-actions.c:181 +msgid "Clear the selected pixels" +msgstr "Seçilmiş benekleri temizle" + +#: ../app/actions/edit-actions.c:189 +msgid "Fill with _FG Color" +msgstr "_ÖP rengiyle doldur" + +#: ../app/actions/edit-actions.c:190 +msgid "Fill the selection using the foreground color" +msgstr "Seçimi, önalan rengini kullanarak doldur" + +#: ../app/actions/edit-actions.c:195 +msgid "Fill with B_G Color" +msgstr "_AP rengiyle doldur" + +#: ../app/actions/edit-actions.c:196 +msgid "Fill the selection using the background color" +msgstr "Seçimi, artalan rengini kullanarak doldur" + +#: ../app/actions/edit-actions.c:201 +msgid "Fill with P_attern" +msgstr "_Desen ile Doldur" + +#: ../app/actions/edit-actions.c:202 +msgid "Fill the selection using the active pattern" +msgstr "Seçimi, etkin deseni kullanarak doldur" + +#: ../app/actions/edit-actions.c:279 +#, c-format +msgid "_Undo %s" +msgstr "_Geri al: %s" + +#: ../app/actions/edit-actions.c:286 +#, c-format +msgid "_Redo %s" +msgstr "_Yinele: %s" + +#: ../app/actions/edit-actions.c:301 +#, c-format +msgid "_Fade %s..." +msgstr "_Soldur %s..." + +#: ../app/actions/edit-commands.c:134 +msgid "Clear Undo History" +msgstr "Geri Alma Geçmişini Sil" + +#: ../app/actions/edit-commands.c:160 +msgid "Really clear image's undo history?" +msgstr "Görüntünün geri alma geçmişi gerçekten silinsin mi?" + +#: ../app/actions/edit-commands.c:172 +#, c-format +msgid "Clearing the undo history of this image will gain %s of memory." +msgstr "" +"Bu görüntünün geri alma geçmişini silmek bellekte %s yer kazandıracak." + +#: ../app/actions/edit-commands.c:201 +msgid "Cut pixels to the clipboard" +msgstr "Benekleri panoya kes" + +#: ../app/actions/edit-commands.c:228 ../app/actions/edit-commands.c:254 +msgid "Copied pixels to the clipboard" +msgstr "Panoya kopyalanmış benekler" + +#: ../app/actions/edit-commands.c:315 ../app/actions/edit-commands.c:349 +#: ../app/actions/edit-commands.c:525 +msgid "There is no image data in the clipboard to paste." +msgstr "Panoda yapıştırılacak görüntü verisi yok." + +#: ../app/actions/edit-commands.c:338 ../app/core/gimpbrushclipboard.c:181 +#: ../app/core/gimppatternclipboard.c:181 ../app/widgets/gimpclipboard.c:296 +msgid "Clipboard" +msgstr "Pano" + +#: ../app/actions/edit-commands.c:363 +msgid "Cut Named" +msgstr "İsimle Kes" + +#: ../app/actions/edit-commands.c:366 ../app/actions/edit-commands.c:407 +#: ../app/actions/edit-commands.c:427 +msgid "Enter a name for this buffer" +msgstr "Bu bellek için bir isim yazın" + +#: ../app/actions/edit-commands.c:404 +msgid "Copy Named" +msgstr "İsimle Kopyala" + +#: ../app/actions/edit-commands.c:424 +msgid "Copy Visible Named " +msgstr "Görünür Adlandırılanı Kopyala " + +#: ../app/actions/edit-commands.c:542 +msgid "There is no active layer or channel to cut from." +msgstr "Kesilecek etkin katman veya kanal yok." + +#: ../app/actions/edit-commands.c:547 ../app/actions/edit-commands.c:579 +#: ../app/actions/edit-commands.c:603 +msgid "(Unnamed Buffer)" +msgstr "(Isimli Tampon)" + +#: ../app/actions/edit-commands.c:574 +msgid "There is no active layer or channel to copy from." +msgstr "Kopyalanacak etkin katman veya kanal yok." + +#: ../app/actions/error-console-actions.c:40 +msgid "Error Console Menu" +msgstr "Hata Konsolu Menüsü" + +#: ../app/actions/error-console-actions.c:44 +msgid "_Clear" +msgstr "_Temizle" + +#: ../app/actions/error-console-actions.c:45 +msgid "Clear error console" +msgstr "Hata uçbirimini temizle" + +#: ../app/actions/error-console-actions.c:50 +msgid "Select _All" +msgstr "Tü_münü Seç" + +#: ../app/actions/error-console-actions.c:51 +msgid "Select all errors" +msgstr "Tüm hataları seç" + +#: ../app/actions/error-console-actions.c:59 +msgid "_Save Error Log to File..." +msgstr "Hata Günlüğünü Dosyaya _Kaydet..." + +#: ../app/actions/error-console-actions.c:60 +msgid "Save error log" +msgstr "Hata günlüğünü kaydet" + +#: ../app/actions/error-console-actions.c:65 +msgid "Save S_election to File..." +msgstr "Seçimi _Dosyaya Kaydet..." + +#: ../app/actions/error-console-actions.c:66 +msgid "Save selection" +msgstr "Seçimi kaydet" + +#: ../app/actions/error-console-commands.c:84 +msgid "Cannot save. Nothing is selected." +msgstr "Kaydedilemiyor, çünkü hiçbir şey seçili değil." + +#: ../app/actions/error-console-commands.c:95 +msgid "Save Error Log to File" +msgstr "Hata kaydını dosyaya kaydet..." + +#: ../app/actions/error-console-commands.c:156 +#, c-format +msgid "" +"Error writing file '%s':\n" +"%s" +msgstr "" +"%s dosyasına kaydedilemedi:\n" +"%s" + +#: ../app/actions/file-actions.c:66 +msgid "_File" +msgstr "_Dosya" + +#: ../app/actions/file-actions.c:67 +msgid "Create" +msgstr "Oluştur" + +#: ../app/actions/file-actions.c:68 +msgid "Open _Recent" +msgstr "Son _Kullanılanı Aç" + +#: ../app/actions/file-actions.c:71 +msgid "_Open..." +msgstr "_Aç..." + +#: ../app/actions/file-actions.c:72 +msgid "Open an image file" +msgstr "Bir görüntü dosyası aç" + +#: ../app/actions/file-actions.c:77 +msgid "Op_en as Layers..." +msgstr "Katman _olarak Aç..." + +#: ../app/actions/file-actions.c:78 +msgid "Open an image file as layers" +msgstr "Bir görüntü dosyasını katman olarak aç" + +#: ../app/actions/file-actions.c:83 +msgid "Open _Location..." +msgstr "Konum _Aç..." + +#: ../app/actions/file-actions.c:84 +msgid "Open an image file from a specified location" +msgstr "Belirlenmiş bir yerden bir görüntü dosyası aç" + +#: ../app/actions/file-actions.c:89 +msgid "Save as _Template..." +msgstr "Ş_ablon Olarak Kaydet..." + +#: ../app/actions/file-actions.c:90 +msgid "Create a new template from this image" +msgstr "Bu görüntüden yeni bir şablon oluştur" + +#: ../app/actions/file-actions.c:95 +msgid "Re_vert" +msgstr "_Geri al" + +#: ../app/actions/file-actions.c:96 +msgid "Reload the image file from disk" +msgstr "Görüntü dosyasını diskten yeniden yükle" + +#: ../app/actions/file-actions.c:101 +msgid "Close all" +msgstr "Hepsini kapat" + +#: ../app/actions/file-actions.c:102 +msgid "Close all opened images" +msgstr "Açılmış bütün görüntüleri kapat" + +#: ../app/actions/file-actions.c:107 +msgid "_Quit" +msgstr "Çı_k" + +#: ../app/actions/file-actions.c:108 +msgid "Quit the GNU Image Manipulation Program" +msgstr "GNU Görüntü İşleme Programı'ndan Çık" + +#: ../app/actions/file-actions.c:116 +msgid "_Save" +msgstr "_Kaydet" + +#: ../app/actions/file-actions.c:117 +msgid "Save this image" +msgstr "Bu görüntüyü kaydet" + +#: ../app/actions/file-actions.c:122 +msgid "Save _As..." +msgstr "_Farklı Kaydet..." + +#: ../app/actions/file-actions.c:123 +msgid "Save this image with a different name" +msgstr "Bu görüntüyü farklı bir adla kaydet" + +#: ../app/actions/file-actions.c:128 +msgid "Save a Cop_y..." +msgstr "Bir K_opyasını Kaydet..." + +#: ../app/actions/file-actions.c:129 +msgid "Save this image with a different name, but keep its current name" +msgstr "Bu görüntüyü farklı bir adla kaydet, ama şimdiki adını sakla" + +#: ../app/actions/file-actions.c:134 +msgid "Save and Close..." +msgstr "Kaydet ve Kapat..." + +#: ../app/actions/file-actions.c:135 +msgid "Save this image and close its window" +msgstr "Bu görüntüyü kaydet ve penceresini kapat" + +#: ../app/actions/file-commands.c:104 ../app/actions/file-commands.c:456 +#: ../app/dialogs/file-open-dialog.c:76 +msgid "Open Image" +msgstr "Resim Aç" + +#: ../app/actions/file-commands.c:125 +msgid "Open Image as Layers" +msgstr "Görüntüyü Katman olarak Aç" + +#: ../app/actions/file-commands.c:266 +msgid "Saving canceled" +msgstr "Kaydetmeden vazgeçildi" + +#: ../app/actions/file-commands.c:275 ../app/dialogs/file-save-dialog.c:513 +#: ../app/widgets/gimpdnd-xds.c:173 +#, c-format +msgid "" +"Saving '%s' failed:\n" +"\n" +"%s" +msgstr "" +"%s dosyasını kaydetme başarısız oldu.\n" +"\n" +"%s" + +#: ../app/actions/file-commands.c:300 +msgid "No changes need to be saved" +msgstr "Kaydedilmesi gereken değişiklik yok" + +#: ../app/actions/file-commands.c:307 ../app/dialogs/file-save-dialog.c:88 +msgid "Save Image" +msgstr "Resmi Kaydet" + +#: ../app/actions/file-commands.c:313 +msgid "Save a Copy of the Image" +msgstr "Görüntünün bir Kopyasını Kaydet" + +#: ../app/actions/file-commands.c:333 +msgid "Create New Template" +msgstr "Yeni Şablon Oluştur" + +#: ../app/actions/file-commands.c:337 +msgid "Enter a name for this template" +msgstr "Bu şablon için bir isim yazın" + +#: ../app/actions/file-commands.c:363 +msgid "Revert failed. No file name associated with this image." +msgstr "" +"Geri dönme başarısız. Bu görüntü ile ilişkilendirilmiş bir dosya adı yok." + +#: ../app/actions/file-commands.c:376 +msgid "Revert Image" +msgstr "Resmi Geri Al" + +#: ../app/actions/file-commands.c:402 +#, c-format +msgid "Revert '%s' to '%s'?" +msgstr "'%s'dan '%s'a geri dönsün mü?" + +#: ../app/actions/file-commands.c:408 +msgid "" +"By reverting the image to the state saved on disk, you will lose all " +"changes, including all undo information." +msgstr "" +"Görüntüyü diskte kaydedilmiş durumu geri döndürerek, tüm geri alma bilgisini " +"de içerecek şekilde bütün değişiklikleri kaybedeceksiniz," + +#: ../app/actions/file-commands.c:563 +msgid "(Unnamed Template)" +msgstr "(İsimsiz Şablon)" + +#: ../app/actions/file-commands.c:611 +#, c-format +msgid "" +"Reverting to '%s' failed:\n" +"\n" +"%s" +msgstr "" +"'%s' geri dönme başarısız:\n" +"\n" +"%s" + +#: ../app/actions/fonts-actions.c:44 +msgid "Fonts Menu" +msgstr "Yazıtipleri Menüsü" + +#: ../app/actions/fonts-actions.c:48 +msgid "_Rescan Font List" +msgstr "_Yazıtipi Listesini Yeniden Tara" + +#: ../app/actions/fonts-actions.c:49 +msgid "Rescan font list" +msgstr "Yazıtipi listesini yeniden tara" + +#: ../app/actions/gradient-editor-actions.c:46 +msgid "Gradient Editor Menu" +msgstr "Gradyan Düzenleyici Menüsü" + +#: ../app/actions/gradient-editor-actions.c:50 +msgid "Left Color Type" +msgstr "Sol Renk Tipi" + +#: ../app/actions/gradient-editor-actions.c:52 +msgid "_Load Left Color From" +msgstr "S_ol Rengi Yükle" + +#: ../app/actions/gradient-editor-actions.c:54 +msgid "_Save Left Color To" +msgstr "Sol Rengi K_aydet" + +#: ../app/actions/gradient-editor-actions.c:57 +msgid "Right Color Type" +msgstr "Sağ Renk Tipi" + +#: ../app/actions/gradient-editor-actions.c:59 +msgid "Load Right Color Fr_om" +msgstr "S_ağ Rengi Yükle" + +#: ../app/actions/gradient-editor-actions.c:61 +msgid "Sa_ve Right Color To" +msgstr "Sağ Rengi Ka_ydet" + +#: ../app/actions/gradient-editor-actions.c:67 +msgid "L_eft Endpoint's Color..." +msgstr "S_ol Bitim Noktasının Rengi..." + +#: ../app/actions/gradient-editor-actions.c:72 +msgid "R_ight Endpoint's Color..." +msgstr "S_ağ Bitim Noktasının Rengi..." + +#: ../app/actions/gradient-editor-actions.c:112 +msgid "Ble_nd Endpoints' Colors" +msgstr "Bitim Noktasının Rengini Ka_rıştır" + +#: ../app/actions/gradient-editor-actions.c:117 +msgid "Blend Endpoints' Opacit_y" +msgstr "Bitim Noktasının I_şık Geçirmezliğini Karıştır" + +#: ../app/actions/gradient-editor-actions.c:125 +msgid "Edit Active Gradient" +msgstr "Etkin Renk Geçişini Düzenle" + +#: ../app/actions/gradient-editor-actions.c:156 +msgid "_Left Neighbor's Right Endpoint" +msgstr "_Sol Bitişiğin Sağ Bitim Noktası" + +#: ../app/actions/gradient-editor-actions.c:161 +msgid "_Right Endpoint" +msgstr "S_ağ Bitim Noktası" + +#: ../app/actions/gradient-editor-actions.c:166 +#: ../app/actions/gradient-editor-actions.c:214 +msgid "_Foreground Color" +msgstr "Ö_nalan Rengi" + +#: ../app/actions/gradient-editor-actions.c:171 +#: ../app/actions/gradient-editor-actions.c:219 +#: ../app/actions/gradient-editor-actions.c:273 +#: ../app/actions/gradient-editor-actions.c:301 +msgid "_Background Color" +msgstr "_Artalan Rengi" + +#: ../app/actions/gradient-editor-actions.c:204 +msgid "_Right Neighbor's Left Endpoint" +msgstr "Sağ _Komşunun Sol Bitim Noktası" + +#: ../app/actions/gradient-editor-actions.c:209 +msgid "_Left Endpoint" +msgstr "_Sol Bitim Noktası" + +#: ../app/actions/gradient-editor-actions.c:258 +#: ../app/actions/gradient-editor-actions.c:286 +msgid "_Fixed" +msgstr "_Değişmez" + +#: ../app/actions/gradient-editor-actions.c:263 +#: ../app/actions/gradient-editor-actions.c:291 +msgid "F_oreground Color" +msgstr "Ö_nalan Rengi" + +#: ../app/actions/gradient-editor-actions.c:268 +#: ../app/actions/gradient-editor-actions.c:296 +msgid "Fo_reground Color (Transparent)" +msgstr "Ön_alan Rengi (Saydam)" + +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/gradient-editor-actions.c:306 +msgid "B_ackground Color (Transparent)" +msgstr "Ar_talan Rengi (Saydam)" + +#: ../app/actions/gradient-editor-actions.c:314 +msgid "_Linear" +msgstr "_Doğrusal" + +#: ../app/actions/gradient-editor-actions.c:319 +msgid "_Curved" +msgstr "Eğ_risel" + +#: ../app/actions/gradient-editor-actions.c:324 +msgid "_Sinusoidal" +msgstr "_Sinüzoidal" + +#: ../app/actions/gradient-editor-actions.c:329 +msgid "Spherical (i_ncreasing)" +msgstr "Küresel (a_rtarak)" + +#: ../app/actions/gradient-editor-actions.c:334 +msgid "Spherical (_decreasing)" +msgstr "Küresel (_azalarak)" + +#: ../app/actions/gradient-editor-actions.c:339 +#: ../app/actions/gradient-editor-actions.c:362 +msgid "(Varies)" +msgstr "(Değişen)" + +#: ../app/actions/gradient-editor-actions.c:347 +#: ../app/actions/image-actions.c:141 +msgid "_RGB" +msgstr "_RGB" + +#: ../app/actions/gradient-editor-actions.c:352 +msgid "HSV (_counter-clockwise hue)" +msgstr "HSV (_saat yönünün tersine renk özü)" + +#: ../app/actions/gradient-editor-actions.c:357 +msgid "HSV (clockwise _hue)" +msgstr "HSV (saat yönünde _renk özü)" + +#: ../app/actions/gradient-editor-actions.c:370 +#: ../app/actions/view-actions.c:273 +msgid "Zoom In" +msgstr "Yakınlaş" + +#: ../app/actions/gradient-editor-actions.c:371 +#: ../app/actions/palette-editor-actions.c:88 +#: ../app/actions/view-actions.c:262 ../app/actions/view-actions.c:274 +msgid "Zoom in" +msgstr "Yakınlaş" + +#: ../app/actions/gradient-editor-actions.c:376 +#: ../app/actions/view-actions.c:267 +msgid "Zoom Out" +msgstr "Uzaklaş" + +#: ../app/actions/gradient-editor-actions.c:377 +#: ../app/actions/palette-editor-actions.c:94 +#: ../app/actions/view-actions.c:256 ../app/actions/view-actions.c:268 +msgid "Zoom out" +msgstr "Uzaklaş" + +#: ../app/actions/gradient-editor-actions.c:382 +msgid "Zoom All" +msgstr "Hepsine Yakınlaş" + +#: ../app/actions/gradient-editor-actions.c:383 +#: ../app/actions/palette-editor-actions.c:100 +msgid "Zoom all" +msgstr "Hepsine yakınlaş" + +#: ../app/actions/gradient-editor-actions.c:773 +msgid "_Blending Function for Segment" +msgstr "Kesim için _Karıştırma İşlevi" + +#: ../app/actions/gradient-editor-actions.c:775 +msgid "Coloring _Type for Segment" +msgstr "Kesim için Renklendirme _Tipi" + +#: ../app/actions/gradient-editor-actions.c:778 +msgid "_Flip Segment" +msgstr "Kesimi _Çevir" + +#: ../app/actions/gradient-editor-actions.c:780 +msgid "_Replicate Segment..." +msgstr "Kesimi _Tekrarla..." + +#: ../app/actions/gradient-editor-actions.c:782 +msgid "Split Segment at _Midpoint" +msgstr "Kesimi Orta _Noktadan Ayır" + +#: ../app/actions/gradient-editor-actions.c:784 +msgid "Split Segment _Uniformly..." +msgstr "Kesimi _Birörnek olarak Ayır..." + +#: ../app/actions/gradient-editor-actions.c:786 +msgid "_Delete Segment" +msgstr "Kesimi _Sil" + +#: ../app/actions/gradient-editor-actions.c:788 +msgid "Re-_center Segment's Midpoint" +msgstr "Kesimin Orta Noktasını Yeniden O_rtala" + +#: ../app/actions/gradient-editor-actions.c:790 +msgid "Re-distribute _Handles in Segment" +msgstr "Kesim içindeki _Tanıtıcıları Yeniden Dağıt" + +#: ../app/actions/gradient-editor-actions.c:795 +msgid "_Blending Function for Selection" +msgstr "Seçim için _Karıştırma İşlevi" + +#: ../app/actions/gradient-editor-actions.c:797 +msgid "Coloring _Type for Selection" +msgstr "Seçim için Renklendirme _Tipi" + +#: ../app/actions/gradient-editor-actions.c:800 +msgid "_Flip Selection" +msgstr "Seçimi _Çevir" + +#: ../app/actions/gradient-editor-actions.c:802 +msgid "_Replicate Selection..." +msgstr "Seçimi _Tekrarla..." + +#: ../app/actions/gradient-editor-actions.c:804 +msgid "Split Segments at _Midpoints" +msgstr "Kesimleri O_rta Noktalarından Ayır" + +#: ../app/actions/gradient-editor-actions.c:806 +msgid "Split Segments _Uniformly..." +msgstr "Kesimleri _Birörnek olarak Ayır..." + +#: ../app/actions/gradient-editor-actions.c:808 +msgid "_Delete Selection" +msgstr "_Seçimi sil" + +#: ../app/actions/gradient-editor-actions.c:810 +msgid "Re-_center Midpoints in Selection" +msgstr "Seçimdeki Orta Noktaları Yeniden O_rtala" + +#: ../app/actions/gradient-editor-actions.c:812 +msgid "Re-distribute _Handles in Selection" +msgstr "Seçim içindeki _Tanıtıcıları Yeniden Dağıt" + +#: ../app/actions/gradient-editor-commands.c:86 +msgid "Left Endpoint Color" +msgstr "Sol Bitim Noktası Rengi" + +#: ../app/actions/gradient-editor-commands.c:88 +msgid "Gradient Segment's Left Endpoint Color" +msgstr "Renk Geçişi Kesimlerinin Sol Bitim Noktası Rengi" + +#: ../app/actions/gradient-editor-commands.c:237 +msgid "Right Endpoint Color" +msgstr "Sağ Bitim Noktasının Rengi" + +#: ../app/actions/gradient-editor-commands.c:239 +msgid "Gradient Segment's Right Endpoint Color" +msgstr "Renk Geçişi Kesimlerinin Sağ Bitim Noktası Rengi" + +#: ../app/actions/gradient-editor-commands.c:453 +msgid "Replicate Segment" +msgstr "Kesimi Tekrarla" + +#: ../app/actions/gradient-editor-commands.c:454 +msgid "Replicate Gradient Segment" +msgstr "Renk Geçişi Kesimini Tekrarla" + +#: ../app/actions/gradient-editor-commands.c:458 +msgid "Replicate Selection" +msgstr "Seçimi Tekrarla" + +#: ../app/actions/gradient-editor-commands.c:459 +msgid "Replicate Gradient Selection" +msgstr "Renk Geçişi Seçimini Tekrarla" + +#: ../app/actions/gradient-editor-commands.c:472 +msgid "Replicate" +msgstr "Çoğalt" + +#: ../app/actions/gradient-editor-commands.c:492 +msgid "" +"Select the number of times\n" +"to replicate the selected segment." +msgstr "" +"Seçilmiş kesimin kaç kere \n" +"tekrarlanacağını seçin." + +#: ../app/actions/gradient-editor-commands.c:495 +msgid "" +"Select the number of times\n" +"to replicate the selection." +msgstr "" +"Seçimin kaç kere \n" +"tekrarlanacağını seçin." + +#: ../app/actions/gradient-editor-commands.c:554 +msgid "Split Segment Uniformly" +msgstr "Kesimi Birörnek olarak Ayır" + +#: ../app/actions/gradient-editor-commands.c:555 +msgid "Split Gradient Segment Uniformly" +msgstr "Renk Geçişi Kesimini Birörnek olarak Ayır" + +#: ../app/actions/gradient-editor-commands.c:559 +msgid "Split Segments Uniformly" +msgstr "Kesimleri Birörnek olarak Ayır" + +#: ../app/actions/gradient-editor-commands.c:560 +msgid "Split Gradient Segments Uniformly" +msgstr "Renk Geçişi Kesimlerini Birörnek olarak Ayır" + +#: ../app/actions/gradient-editor-commands.c:573 +msgid "Split" +msgstr "Ayır" + +#: ../app/actions/gradient-editor-commands.c:594 +msgid "" +"Select the number of uniform parts\n" +"in which to split the selected segment." +msgstr "" +"Seçilmiş kesimlerin ayrılacağı \n" +"birörnek parça sayısını seçin." + +#: ../app/actions/gradient-editor-commands.c:597 +msgid "" +"Select the number of uniform parts\n" +"in which to split the segments in the selection." +msgstr "" +"Seçim içindeki kesimlerin ayrılacağı \n" +"birörnek parça sayısını seçin." + +#: ../app/actions/gradients-actions.c:44 +msgid "Gradients Menu" +msgstr "Gradyanlar Menüsü" + +#: ../app/actions/gradients-actions.c:48 +msgid "_New Gradient" +msgstr "_Yeni Gradyan" + +#: ../app/actions/gradients-actions.c:49 +msgid "New gradient" +msgstr "Yeni gradyan" + +#: ../app/actions/gradients-actions.c:54 +msgid "D_uplicate Gradient" +msgstr "_Gradyanı Çoğalt" + +#: ../app/actions/gradients-actions.c:55 +msgid "Duplicate gradient" +msgstr "Gradyanı Çoğalt" + +#: ../app/actions/gradients-actions.c:60 +msgid "Copy Gradient _Location" +msgstr "Renk Geçişi _Yerini Kopyala" + +#: ../app/actions/gradients-actions.c:61 +msgid "Copy gradient file location to clipboard" +msgstr "Renk geçişi dosyasının yerini panoya kopyala" + +#: ../app/actions/gradients-actions.c:66 +msgid "Save as _POV-Ray..." +msgstr "_POV-Ray olarak kaydet..." + +#: ../app/actions/gradients-actions.c:67 +msgid "Save gradient as POV-Ray" +msgstr "Gradyanı POV-Ray olarak kaydet" + +#: ../app/actions/gradients-actions.c:72 +msgid "_Delete Gradient" +msgstr "Renk Geçişini _Sil..." + +#: ../app/actions/gradients-actions.c:73 +msgid "Delete gradient" +msgstr "Gradyanı sil" + +#: ../app/actions/gradients-actions.c:78 +msgid "_Refresh Gradients" +msgstr "_Gradyanları Tazele" + +#: ../app/actions/gradients-actions.c:79 +msgid "Refresh gradients" +msgstr "Gradyanları tazele" + +#: ../app/actions/gradients-actions.c:87 +msgid "_Edit Gradient..." +msgstr "Gradyanı _Düzenle..." + +#: ../app/actions/gradients-actions.c:88 +msgid "Edit gradient" +msgstr "Gradyanı düzenle" + +#: ../app/actions/gradients-commands.c:66 +#, c-format +msgid "Save '%s' as POV-Ray" +msgstr "'%s' dosyasını POV-Ray olarak kaydet" + +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 +msgid "_Help" +msgstr "_Yardım" + +#: ../app/actions/help-actions.c:42 +msgid "Open the GIMP user manual" +msgstr "GIMP kullanıcı el kitabını aç" + +#: ../app/actions/help-actions.c:47 +msgid "_Context Help" +msgstr "_Bağlam Yardımı" + +#: ../app/actions/help-actions.c:48 +msgid "Show the help for a specific user interface item" +msgstr "Belli bir kullanıcı arabirimi öğesi için yardımı göster" + +#: ../app/actions/image-actions.c:47 ../app/actions/image-actions.c:51 +msgid "Image Menu" +msgstr "Resim Menüsü" + +#: ../app/actions/image-actions.c:54 +msgid "_Image" +msgstr "_Resim" + +#: ../app/actions/image-actions.c:55 +msgid "_Mode" +msgstr "_Kip" + +#: ../app/actions/image-actions.c:56 ../app/actions/layers-actions.c:56 +msgid "_Transform" +msgstr "_Dönüştür" + +#: ../app/actions/image-actions.c:57 +msgid "_Guides" +msgstr "_Kılavuzlar" + +#: ../app/actions/image-actions.c:60 +msgid "I_nfo" +msgstr "B_ilgi" + +#: ../app/actions/image-actions.c:61 ../app/tools/gimplevelstool.c:653 +#: ../app/tools/gimpthresholdtool.c:264 +msgid "_Auto" +msgstr "_Otomatik" + +#: ../app/actions/image-actions.c:62 ../app/actions/plug-in-actions.c:95 +msgid "_Map" +msgstr "_Harita" + +#: ../app/actions/image-actions.c:63 +msgid "C_omponents" +msgstr "Bil_eşenler" + +#: ../app/actions/image-actions.c:66 +msgid "_New..." +msgstr "_Yeni..." + +#: ../app/actions/image-actions.c:67 +msgid "Create a new image" +msgstr "Yeni bir görüntü oluştur" + +#: ../app/actions/image-actions.c:72 +msgid "Can_vas Size..." +msgstr "Tuval _Boyutu..." + +#: ../app/actions/image-actions.c:73 +msgid "Adjust the image dimensions" +msgstr "Görüntü boyutlarını ayarla" + +#: ../app/actions/image-actions.c:78 +msgid "F_it Canvas to Layers" +msgstr "Tuvali Katmalara U_ydur" + +#: ../app/actions/image-actions.c:79 +msgid "Resize the image to enclose all layers" +msgstr "Tüm katmanları kapsayacak şekilde görüntüyü yeniden boyutlandır" + +#: ../app/actions/image-actions.c:84 +msgid "F_it Canvas to Selection" +msgstr "Tuvali Seçime _Uydur" + +#: ../app/actions/image-actions.c:85 +msgid "Resize the image to the extents of the selection" +msgstr "Görüntüyü, seçimin ölçülerine göre yeniden boyutlandır" + +#: ../app/actions/image-actions.c:90 +msgid "_Print Size..." +msgstr "_Yazdırma Boyutu..." + +#: ../app/actions/image-actions.c:91 +msgid "Adjust the print resolution" +msgstr "Yazdırma çözünürlüğünü ayarla" + +#: ../app/actions/image-actions.c:96 +msgid "_Scale Image..." +msgstr "_Resmi Ölçekle..." + +#: ../app/actions/image-actions.c:97 +msgid "Change the size of the image content" +msgstr "Görüntü içeriğinin boyutunu değiştir" + +#: ../app/actions/image-actions.c:102 ../app/actions/layers-actions.c:188 +msgid "_Crop to Selection" +msgstr "Seçime göre _Kırp" + +#: ../app/actions/image-actions.c:103 +msgid "Crop the image to the extents of the selection" +msgstr "Seçimin ölçülerine göre görüntüyü kırp" + +#: ../app/actions/image-actions.c:108 +msgid "_Duplicate" +msgstr "Çoğal_t" + +#: ../app/actions/image-actions.c:109 +msgid "Create a duplicate of this image" +msgstr "Bu görüntünün bir eşini oluştur" + +#: ../app/actions/image-actions.c:114 +msgid "Merge Visible _Layers..." +msgstr "_Görünen Katmanları Birleştir..." + +#: ../app/actions/image-actions.c:115 ../app/actions/layers-actions.c:141 +msgid "Merge all visible layers into one layer" +msgstr "Görünen bütün katmanları bir katmana birleştir" + +#: ../app/actions/image-actions.c:120 ../app/actions/layers-actions.c:146 +msgid "_Flatten Image" +msgstr "_Resmi Düzleştir" + +#: ../app/actions/image-actions.c:121 ../app/actions/layers-actions.c:147 +msgid "Merge all layers into one and remove transparency" +msgstr "Görünen bütün katmanları bir olarak birleştir ve saydamlığı kaldır" + +#: ../app/actions/image-actions.c:126 +msgid "Configure G_rid..." +msgstr "Kılavuzları _Yapılandır..." + +#: ../app/actions/image-actions.c:127 +msgid "Configure the grid for this image" +msgstr "Bu görüntü için ızgarayı yapılandır" + +#: ../app/actions/image-actions.c:132 +msgid "Image Pr_operties" +msgstr "Görüntü Özellikleri" + +#: ../app/actions/image-actions.c:133 +msgid "Display information about this image" +msgstr "Bu görüntü hakkındaki bilgiyi göster" + +#: ../app/actions/image-actions.c:142 +msgid "Convert the image to the RGB colorspace" +msgstr "Görüntüyü RGB renk alanına dönüştür" + +#: ../app/actions/image-actions.c:146 +msgid "_Grayscale" +msgstr "_Gri Ölçekli" + +#: ../app/actions/image-actions.c:147 +msgid "Convert the image to grayscale" +msgstr "Görüntüyü gri ölçeğe dönüştür" + +#: ../app/actions/image-actions.c:151 +msgid "_Indexed..." +msgstr "İ_ndisli..." + +#: ../app/actions/image-actions.c:152 +msgid "Convert the image to indexed colors" +msgstr "Görüntüyü sıralanmış renklere dönüştür" + +#: ../app/actions/image-actions.c:160 +msgid "Flip image horizontally" +msgstr "Görüntüyü yatay olarak çevir" + +#: ../app/actions/image-actions.c:166 +msgid "Flip image vertically" +msgstr "Görüntüyü dikey olarak çevir" + +#: ../app/actions/image-actions.c:175 +msgid "Rotate the image 90 degrees to the right" +msgstr "Görüntüyü 90 derece sağa döndür" + +#: ../app/actions/image-actions.c:181 +msgid "Turn the image upside-down" +msgstr "Görüntüyü baş aşağı çevir" + +#: ../app/actions/image-actions.c:187 +msgid "Rotate the image 90 degrees to the left" +msgstr "Görüntüyü 90 derece sola döndür" + +#: ../app/actions/image-commands.c:235 +msgid "Set Image Canvas Size" +msgstr "Resim Tuval Boyutunu Belirle" + +#: ../app/actions/image-commands.c:261 ../app/actions/image-commands.c:282 +#: ../app/actions/image-commands.c:559 +msgid "Resizing" +msgstr "Yeniden boyutlandırma" + +#: ../app/actions/image-commands.c:306 +msgid "Set Image Print Resolution" +msgstr "Görüntünün Yazdırma Çözünürlüğünü Ayarla" + +#: ../app/actions/image-commands.c:362 +#: ../app/pdb/drawable-transform-cmds.c:148 +#: ../app/pdb/drawable-transform-cmds.c:223 +msgid "Flipping" +msgstr "Çevirme" + +#: ../app/actions/image-commands.c:383 +#: ../app/pdb/drawable-transform-cmds.c:525 +#: ../app/pdb/drawable-transform-cmds.c:604 ../app/pdb/image-cmds.c:533 +#: ../app/pdb/transform-tools-cmds.c:215 ../app/tools/gimprotatetool.c:122 +msgid "Rotating" +msgstr "Döndürme" + +#: ../app/actions/image-commands.c:408 ../app/actions/layers-commands.c:642 +msgid "Cannot crop because the current selection is empty." +msgstr "Kırpma yapılamaz çünkü seçili alan boş." + +#: ../app/actions/image-commands.c:606 +msgid "Change Print Size" +msgstr "Yazdırma Boyutunu Değiştir" + +#: ../app/actions/image-commands.c:647 ../app/core/gimpimage-scale.c:82 +msgid "Scale Image" +msgstr "Resmi Ölçekle" + +#. Scaling +#: ../app/actions/image-commands.c:658 ../app/actions/layers-commands.c:1104 +#: ../app/dialogs/preferences-dialog.c:1925 +#: ../app/pdb/drawable-transform-cmds.c:682 +#: ../app/pdb/drawable-transform-cmds.c:758 ../app/pdb/image-cmds.c:405 +#: ../app/pdb/image-cmds.c:441 ../app/pdb/layer-cmds.c:292 +#: ../app/pdb/layer-cmds.c:337 ../app/pdb/transform-tools-cmds.c:291 +#: ../app/tools/gimpscaletool.c:107 +msgid "Scaling" +msgstr "Ölçekleme" + +#: ../app/actions/images-actions.c:43 +msgid "Images Menu" +msgstr "Resimler Menüsü" + +#: ../app/actions/images-actions.c:47 +msgid "_Raise Views" +msgstr "_Görünümleri Yükselt" + +#: ../app/actions/images-actions.c:48 +msgid "Raise this image's displays" +msgstr "Görüntülerin gösterimlerini yükselt" + +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:75 +msgid "_New View" +msgstr "Yeni _Görünüm" + +#: ../app/actions/images-actions.c:54 +msgid "Create a new display for this image" +msgstr "Bu resim için yeni bir görünüm oluştur" + +#: ../app/actions/images-actions.c:59 +msgid "_Delete Image" +msgstr "_Resmi Sil" + +#: ../app/actions/images-actions.c:60 +msgid "Delete this image" +msgstr "Bu resmi sil" + +#: ../app/actions/layers-actions.c:48 +msgid "Layers Menu" +msgstr "Katmanlar Menüsü" + +#: ../app/actions/layers-actions.c:51 +msgid "_Layer" +msgstr "_Katman" + +#: ../app/actions/layers-actions.c:52 +msgid "Stac_k" +msgstr "Kü_me" + +#: ../app/actions/layers-actions.c:53 +msgid "Te_xt to Selection" +msgstr "Me_tinden Seçime" + +#: ../app/actions/layers-actions.c:54 +msgid "_Mask" +msgstr "_Maske" + +#: ../app/actions/layers-actions.c:55 +msgid "Tr_ansparency" +msgstr "Ş_effaflık" + +#: ../app/actions/layers-actions.c:57 +msgid "_Properties" +msgstr "Ö_zellikler" + +#: ../app/actions/layers-actions.c:59 +msgid "Layer _Mode" +msgstr "Katman Ki_pi" + +#: ../app/actions/layers-actions.c:62 +msgid "Te_xt Tool" +msgstr "Metin _Aracı" + +#: ../app/actions/layers-actions.c:63 +msgid "Activate the text tool on this text layer" +msgstr "Bu metin katmanı üzerinde metin aracını etkinleştir" + +#: ../app/actions/layers-actions.c:68 +msgid "_Edit Layer Attributes..." +msgstr "Katma_n Özniteliklerini Düzenle..." + +#: ../app/actions/layers-actions.c:69 +msgid "Edit the layer's name" +msgstr "Katman adını düzenle" + +#: ../app/actions/layers-actions.c:74 +msgid "_New Layer..." +msgstr "Y_eni Katman..." + +#: ../app/actions/layers-actions.c:75 +msgid "Create a new layer and add it to the image" +msgstr "Yeni bir katman oluştur ve bunu görüntüye ekle" + +#: ../app/actions/layers-actions.c:80 +msgid "_New Layer" +msgstr "_Yeni Katman" + +#: ../app/actions/layers-actions.c:81 +msgid "Create a new layer with last used values" +msgstr "Son kullanılan değerler ile yeni bir katman oluştur" + +#: ../app/actions/layers-actions.c:86 +msgid "New from _Visible" +msgstr "_Görünürden Yeni" + +#: ../app/actions/layers-actions.c:87 +msgid "Create a new layer from what is visible in this image" +msgstr "Bu görüntüdeki bütün görünür öğelerden yeni bir katman oluştur" + +#: ../app/actions/layers-actions.c:92 +msgid "D_uplicate Layer" +msgstr "Katmanı Ç_oğalt" + +#: ../app/actions/layers-actions.c:93 +msgid "Create a duplicate of the layer and add it to the image" +msgstr "Katmanın bir eşini oluştur ve bunu görüntüye ekle" + +#: ../app/actions/layers-actions.c:98 +msgid "_Delete Layer" +msgstr "Katma_nı Sil" + +#: ../app/actions/layers-actions.c:99 +msgid "Delete this layer" +msgstr "Bu katmanı sil" + +#: ../app/actions/layers-actions.c:104 +msgid "_Raise Layer" +msgstr "K_atmanı Yükselt" + +#: ../app/actions/layers-actions.c:105 +msgid "Raise this layer one step in the layer stack" +msgstr "Katman yığını içinde bu katmanı bir sıra yükselt" + +#: ../app/actions/layers-actions.c:110 +msgid "Layer to _Top" +msgstr "_Katmanı En Üste Çıkart" + +#: ../app/actions/layers-actions.c:111 +msgid "Move this layer to the top of the layer stack" +msgstr "Katman yığınında bu katmanı en üste taşı" + +#: ../app/actions/layers-actions.c:116 +msgid "_Lower Layer" +msgstr "K_atmanı Alçalt" + +#: ../app/actions/layers-actions.c:117 +msgid "Lower this layer one step in the layer stack" +msgstr "Katman yığını içinde bu katmanı bir sıra alçalt" + +#: ../app/actions/layers-actions.c:122 +msgid "Layer to _Bottom" +msgstr "Katmanı _En Alta İndir" + +#: ../app/actions/layers-actions.c:123 +msgid "Move this layer to the bottom of the layer stack" +msgstr "Katman yığınında bu katmanı en alta taşı" + +#: ../app/actions/layers-actions.c:128 +msgid "_Anchor Layer" +msgstr "Kat_manı Çıpala" + +#: ../app/actions/layers-actions.c:129 +msgid "Anchor the floating layer" +msgstr "Yüzen katmanı çıpala" + +#: ../app/actions/layers-actions.c:134 +msgid "Merge Do_wn" +msgstr "Aşağı _Birleştir" + +#: ../app/actions/layers-actions.c:135 +msgid "Merge this layer with the one below it" +msgstr "Bu katmanı bir altındaki katmanla birleştir" + +#: ../app/actions/layers-actions.c:140 +msgid "Merge _Visible Layers..." +msgstr "_Görünen Katmanları Birleştir..." + +#: ../app/actions/layers-actions.c:152 +msgid "_Discard Text Information" +msgstr "_Metin Bilgisini Sil" + +#: ../app/actions/layers-actions.c:153 +msgid "Turn this text layer into a normal layer" +msgstr "Bu metin katmanını normal bir katmana çevir" + +#: ../app/actions/layers-actions.c:158 +msgid "Text to _Path" +msgstr "Metinden _Yola" + +#: ../app/actions/layers-actions.c:159 +msgid "Create a path from this text layer" +msgstr "Bu metin katmanından bir yol oluştur" + +#: ../app/actions/layers-actions.c:164 +msgid "Text alon_g Path" +msgstr "Yol boyunca metin" + +#: ../app/actions/layers-actions.c:165 +msgid "Warp this layer's text along the current path" +msgstr "Bu katmanın yazısını mevcut yol boyunca eğ" + +#: ../app/actions/layers-actions.c:170 +msgid "Layer B_oundary Size..." +msgstr "Katman Sınır _Boyutları..." + +#: ../app/actions/layers-actions.c:171 +msgid "Adjust the layer dimensions" +msgstr "Katman boyutlarını ayarla" + +#: ../app/actions/layers-actions.c:176 +msgid "Layer to _Image Size" +msgstr "_Katmanı Resim Boyutuna" + +#: ../app/actions/layers-actions.c:177 +msgid "Resize the layer to the size of the image" +msgstr "Katmanı görüntünün boyutuna göre yeniden boyutlandır" + +#: ../app/actions/layers-actions.c:182 +msgid "_Scale Layer..." +msgstr "Katmanı Ölçe_klendir..." + +#: ../app/actions/layers-actions.c:183 +msgid "Change the size of the layer content" +msgstr "Katman içeriğinin büyüklüğünü değiştir" + +#: ../app/actions/layers-actions.c:189 +msgid "Crop the layer to the extents of the selection" +msgstr "Katmanı seçimin ölçülerine göre kırp" + +#: ../app/actions/layers-actions.c:194 +msgid "Add La_yer Mask..." +msgstr "Katman Maske_si Ekle..." + +#: ../app/actions/layers-actions.c:195 +msgid "Add a mask that allows non-destructive editing of transparency" +msgstr "Yıkıcı olmadan düzenlenebilen saydamlığa izin veren bir maske ekle" + +#: ../app/actions/layers-actions.c:200 +msgid "Add Alpha C_hannel" +msgstr "Alfa Kan_alı Ekle" + +#: ../app/actions/layers-actions.c:201 +msgid "Add transparency information to the layer" +msgstr "Katmana saydamlık bilgisi ekle" + +#: ../app/actions/layers-actions.c:206 +msgid "_Remove Alpha Channel" +msgstr "Görünür Kanalını _Kaldır" + +#: ../app/actions/layers-actions.c:207 +msgid "Remove transparency information from the layer" +msgstr "Katmandaki saydamlık bilgisini kaldır" + +#: ../app/actions/layers-actions.c:215 +msgid "Lock Alph_a Channel" +msgstr "Gö_rünür Kanalını Kilitle" + +#: ../app/actions/layers-actions.c:216 +msgid "Keep transparency information on this layer from being modified" +msgstr "Bu katman üzerindeki saydamlık bilgisini değiştirilmeden koru." + +#: ../app/actions/layers-actions.c:222 +msgid "_Edit Layer Mask" +msgstr "_Katman Maskesini Düzenle" + +#: ../app/actions/layers-actions.c:223 +msgid "Work on the layer mask" +msgstr "Katman maskesi üzerinde çalış" + +#: ../app/actions/layers-actions.c:229 +msgid "S_how Layer Mask" +msgstr "K_atman Maskesini Göster" + +#: ../app/actions/layers-actions.c:235 +msgid "_Disable Layer Mask" +msgstr "Katman _Maskesini Etkisiz Yap" + +#: ../app/actions/layers-actions.c:236 +msgid "Dismiss the effect of the layer mask" +msgstr "Katman maskesini etkisiz yap" + +#: ../app/actions/layers-actions.c:245 +msgid "Apply Layer _Mask" +msgstr "Katm_an Maskesini Uygula" + +#: ../app/actions/layers-actions.c:246 +msgid "Apply the effect of the layer mask and remove it" +msgstr "Katman maskesi etkisini uygula ve bunu kaldır" + +#: ../app/actions/layers-actions.c:251 +msgid "Delete Layer Mas_k" +msgstr "K_atman Maskesini Sil" + +#: ../app/actions/layers-actions.c:252 +msgid "Remove the layer mask and its effect" +msgstr "Katman maskesini ve bunun etkisini kaldır" + +#: ../app/actions/layers-actions.c:260 +msgid "_Mask to Selection" +msgstr "Maskeden _Seçime" + +#: ../app/actions/layers-actions.c:261 +msgid "Replace the selection with the layer mask" +msgstr "Seçim ile katman maskesini birbirlerinin yerine koy" + +#: ../app/actions/layers-actions.c:267 +msgid "Add the layer mask to the current selection" +msgstr "Şimdiki seçime katman maskesini ekle" + +#: ../app/actions/layers-actions.c:273 +msgid "Subtract the layer mask from the current selection" +msgstr "Şimdiki seçimden katman maskesini çıkar" + +#: ../app/actions/layers-actions.c:279 +msgid "Intersect the layer mask with the current selection" +msgstr "Katman maskesi ile şimdiki seçimi kesiştir" + +#: ../app/actions/layers-actions.c:287 +msgid "Al_pha to Selection" +msgstr "Alfa_dan Seçime" + +#: ../app/actions/layers-actions.c:288 +msgid "Replace the selection with the layer's alpha channel" +msgstr "Seçim ile katmanın görünür kanalını birbirlerinin yerine koy" + +#: ../app/actions/layers-actions.c:293 ../app/actions/layers-actions.c:320 +msgid "A_dd to Selection" +msgstr "Seçime _Ekle" + +#: ../app/actions/layers-actions.c:294 +msgid "Add the layer's alpha channel to the current selection" +msgstr "Şimdiki seçime katmanın görünür kanalını ekle" + +#: ../app/actions/layers-actions.c:300 +msgid "Subtract the layer's alpha channel from the current selection" +msgstr "Şimdiki seçimden katmanın görünür kanalını çıkar" + +#: ../app/actions/layers-actions.c:306 +msgid "Intersect the layer's alpha channel with the current selection" +msgstr "Şimdiki seçim ile katmanın görünür kanalını kesiştir" + +#: ../app/actions/layers-actions.c:314 +msgid "_Text to Selection" +msgstr "_Metinden Seçime" + +#: ../app/actions/layers-actions.c:315 +msgid "Replace the selection with the text layer's outline" +msgstr "Seçim ile metin katmanı çerçevesini biribirlerinin yerine koy" + +#: ../app/actions/layers-actions.c:321 +msgid "Add the text layer's outline to the current selection" +msgstr "Metin katmanı çerçevesini şimdiki seçime ekle" + +#: ../app/actions/layers-actions.c:327 +msgid "Subtract the text layer's outline from the current selection" +msgstr "Şimdiki seçimden metin katmanı çerçevesini çıkar" + +#: ../app/actions/layers-actions.c:333 +msgid "Intersect the text layer's outline with the current selection" +msgstr "Şimdiki seçim ile metin katmanı çerçevesini kesiştir" + +#: ../app/actions/layers-actions.c:341 +msgid "Select _Top Layer" +msgstr "En Üs_tteki Katmanı Seç" + +#: ../app/actions/layers-actions.c:342 +msgid "Select the topmost layer" +msgstr "En üstteki katmanı seç" + +#: ../app/actions/layers-actions.c:347 +msgid "Select _Bottom Layer" +msgstr "_En Alttaki Katmanı Seç" + +#: ../app/actions/layers-actions.c:348 +msgid "Select the bottommost layer" +msgstr "En alttaki katmanı seç" + +#: ../app/actions/layers-actions.c:353 +msgid "Select _Previous Layer" +msgstr "Önceki Katmanı _Seç" + +#: ../app/actions/layers-actions.c:354 +msgid "Select the layer above the current layer" +msgstr "Şimdiki katmanın üstündeki katmanı seç" + +#: ../app/actions/layers-actions.c:359 +msgid "Select _Next Layer" +msgstr "Sonraki _Katmanı Seç" + +#: ../app/actions/layers-actions.c:360 +msgid "Select the layer below the current layer" +msgstr "Şimdiki katmanın altındaki katmanı seç" + +#: ../app/actions/layers-actions.c:368 +msgid "Set Opacity" +msgstr "Opaklığı Tanımla" + +#: ../app/actions/layers-commands.c:204 +msgid "Layer Attributes" +msgstr "Katman Öznitelikleri" + +#: ../app/actions/layers-commands.c:207 +msgid "Edit Layer Attributes" +msgstr "Katman Özniteliklerini Düzenle" + +#: ../app/actions/layers-commands.c:250 ../app/actions/layers-commands.c:252 +#: ../app/actions/layers-commands.c:320 ../app/actions/layers-commands.c:324 +#: ../app/widgets/gimpdrawabletreeview.c:326 +#: ../app/widgets/gimplayertreeview.c:835 +msgid "New Layer" +msgstr "Yeni Katman" + +#: ../app/actions/layers-commands.c:255 +msgid "Create a New Layer" +msgstr "Yeni Katman Oluştur" + +#: ../app/actions/layers-commands.c:355 +msgid "Visible" +msgstr "Görünür" + +#: ../app/actions/layers-commands.c:574 +msgid "Set Layer Boundary Size" +msgstr "Katman Sınırlarını Belirle" + +#: ../app/actions/layers-commands.c:615 ../app/core/gimplayer.c:251 +msgid "Scale Layer" +msgstr "Katmanı Ölçekle" + +#: ../app/actions/layers-commands.c:652 +msgid "Crop Layer" +msgstr "Katmanı Kırp" + +#: ../app/actions/layers-commands.c:791 +msgid "Layer Mask to Selection" +msgstr "Katman Maskesinden Seçime" + +#: ../app/actions/layers-commands.c:1039 +msgid "Please select a channel first" +msgstr "Lütfen önce bir kanal seçin" + +#: ../app/actions/layers-commands.c:1047 ../app/core/gimplayer.c:1283 +#: ../app/dialogs/layer-add-mask-dialog.c:81 +msgid "Add Layer Mask" +msgstr "Katman Maskesi Ekle" + +#: ../app/actions/palette-editor-actions.c:44 +msgid "Palette Editor Menu" +msgstr "Palet Düzenleyici Menüsü" + +#: ../app/actions/palette-editor-actions.c:54 +msgid "_Delete Color" +msgstr "_Rengi Sil" + +#: ../app/actions/palette-editor-actions.c:55 +msgid "Delete color" +msgstr "Rengi Sil" + +#: ../app/actions/palette-editor-actions.c:63 +msgid "Edit Active Palette" +msgstr "Etkin Paleti Düzenle" + +#: ../app/actions/palette-editor-actions.c:72 +msgid "New Color from _FG" +msgstr "Ö_nplandan yeni renk" + +#: ../app/actions/palette-editor-actions.c:73 +msgid "New color from foreground color" +msgstr "Önalan renginden yeni renk" + +#: ../app/actions/palette-editor-actions.c:78 +msgid "New Color from _BG" +msgstr "Arkaplandan _yeni renk" + +#: ../app/actions/palette-editor-actions.c:79 +msgid "New color from background color" +msgstr "Artalan renginden yeni renk" + +#: ../app/actions/palette-editor-actions.c:87 +#: ../app/actions/view-actions.c:261 +msgid "Zoom _In" +msgstr "_Yakınlaş" + +#: ../app/actions/palette-editor-actions.c:93 +#: ../app/actions/view-actions.c:255 +msgid "Zoom _Out" +msgstr "_Uzaklaş" + +#: ../app/actions/palette-editor-actions.c:99 +msgid "Zoom _All" +msgstr "_Tamamını Göster" + +#: ../app/actions/palette-editor-commands.c:69 +msgid "Edit Palette Color" +msgstr "Palet Rengini Düzenle" + +#: ../app/actions/palette-editor-commands.c:71 +msgid "Edit Color Palette Entry" +msgstr "Palet Girdi Rengini Düzenle" + +#: ../app/actions/palettes-actions.c:44 +msgid "Palettes Menu" +msgstr "Paletler Menüsü" + +#: ../app/actions/palettes-actions.c:48 +msgid "_New Palette" +msgstr "_Yeni Palet" + +#: ../app/actions/palettes-actions.c:49 +msgid "New palette" +msgstr "Yeni palet" + +#: ../app/actions/palettes-actions.c:54 +msgid "_Import Palette..." +msgstr "_Palet Al..." + +#: ../app/actions/palettes-actions.c:55 +msgid "Import palette" +msgstr "Palet Al" + +#: ../app/actions/palettes-actions.c:60 +msgid "D_uplicate Palette" +msgstr "_Paleti Çoğalt" + +#: ../app/actions/palettes-actions.c:61 +msgid "Duplicate palette" +msgstr "Paleti çoğalt" + +#: ../app/actions/palettes-actions.c:66 +msgid "_Merge Palettes..." +msgstr "_Paletleri Birleştir..." + +#: ../app/actions/palettes-actions.c:67 +msgid "Merge palettes" +msgstr "Paletleri birleştir" + +#: ../app/actions/palettes-actions.c:72 +msgid "Copy Palette _Location" +msgstr "Palet _Yerini Kopyala" + +#: ../app/actions/palettes-actions.c:73 +msgid "Copy palette file location to clipboard" +msgstr "Palet dosyası yerini panoya kopyala" + +#: ../app/actions/palettes-actions.c:78 +msgid "_Delete Palette" +msgstr "P_aleti Sil" + +#: ../app/actions/palettes-actions.c:79 +msgid "Delete palette" +msgstr "Paleti sil" + +#: ../app/actions/palettes-actions.c:84 +msgid "_Refresh Palettes" +msgstr "P_aletleri Tazele" + +#: ../app/actions/palettes-actions.c:85 +msgid "Refresh palettes" +msgstr "Paletleri tazele" + +#: ../app/actions/palettes-actions.c:93 +msgid "_Edit Palette..." +msgstr "Paleti _Düzenle..." + +#: ../app/actions/palettes-actions.c:94 +msgid "Edit palette" +msgstr "Paleti düzenle" + +#: ../app/actions/palettes-commands.c:74 +msgid "Merge Palette" +msgstr "Paletleri Birleştir" + +#: ../app/actions/palettes-commands.c:78 +msgid "Enter a name for the merged palette" +msgstr "Birleştirilmiş palet için bir isim belirle" + +#: ../app/actions/patterns-actions.c:43 +msgid "Patterns Menu" +msgstr "Desenler Menüsü" + +#: ../app/actions/patterns-actions.c:47 +msgid "_Open Pattern as Image" +msgstr "Deseni Görüntü olarak _Aç" + +#: ../app/actions/patterns-actions.c:48 +msgid "Open pattern as image" +msgstr "Deseni resim olarak aç" + +#: ../app/actions/patterns-actions.c:53 +msgid "_New Pattern" +msgstr "_Yeni Desen" + +#: ../app/actions/patterns-actions.c:54 +msgid "New pattern" +msgstr "Yeni Desen" + +#: ../app/actions/patterns-actions.c:59 +msgid "D_uplicate Pattern" +msgstr "_Deseni Çoğalt" + +#: ../app/actions/patterns-actions.c:60 +msgid "Duplicate pattern" +msgstr "Deseni çoğalt" + +#: ../app/actions/patterns-actions.c:65 +msgid "Copy Pattern _Location" +msgstr "Desen _Yerini Kopyala" + +#: ../app/actions/patterns-actions.c:66 +msgid "Copy pattern file location to clipboard" +msgstr "Desen dosyası yerini panoya kopyala" + +#: ../app/actions/patterns-actions.c:71 +msgid "_Delete Pattern" +msgstr "D_eseni Sil" + +#: ../app/actions/patterns-actions.c:72 +msgid "Delete pattern" +msgstr "Deseni sil" + +#: ../app/actions/patterns-actions.c:77 +msgid "_Refresh Patterns" +msgstr "_Desenleri Tazele" + +#: ../app/actions/patterns-actions.c:78 +msgid "Refresh patterns" +msgstr "Desenleri tazele" + +#: ../app/actions/patterns-actions.c:86 +msgid "_Edit Pattern..." +msgstr "_Deseni Düzenle..." + +#: ../app/actions/patterns-actions.c:87 +msgid "Edit pattern" +msgstr "Deseni düzenle" + +#: ../app/actions/plug-in-actions.c:83 +msgid "Filte_rs" +msgstr "_Filtreler" + +#: ../app/actions/plug-in-actions.c:84 +msgid "Recently Used" +msgstr "Son Kullanılan" + +#: ../app/actions/plug-in-actions.c:85 +msgid "_Blur" +msgstr "B_ulanıklaştır" + +#: ../app/actions/plug-in-actions.c:86 +msgid "_Noise" +msgstr "_Gürültü" + +#: ../app/actions/plug-in-actions.c:87 +msgid "Edge-De_tect" +msgstr "Kenar Tanı_ma" + +#: ../app/actions/plug-in-actions.c:88 +msgid "En_hance" +msgstr "Ar_ttır" + +#: ../app/actions/plug-in-actions.c:89 +msgid "C_ombine" +msgstr "B_irleştir" + +#: ../app/actions/plug-in-actions.c:90 +msgid "_Generic" +msgstr "_Genel" + +#: ../app/actions/plug-in-actions.c:91 +msgid "_Light and Shadow" +msgstr "_Işık ve Gölge" + +#: ../app/actions/plug-in-actions.c:92 +msgid "_Distorts" +msgstr "_Bozulma" + +#: ../app/actions/plug-in-actions.c:93 +msgid "_Artistic" +msgstr "_Sanatsal" + +#: ../app/actions/plug-in-actions.c:94 +msgid "_Decor" +msgstr "_Süsleme" + +#: ../app/actions/plug-in-actions.c:96 +msgid "_Render" +msgstr "_Tarama" + +#: ../app/actions/plug-in-actions.c:97 +msgid "_Clouds" +msgstr "_Bulutlar" + +#: ../app/actions/plug-in-actions.c:98 +msgid "_Nature" +msgstr "_Doğa" + +#: ../app/actions/plug-in-actions.c:100 +msgid "_Web" +msgstr "_Web" + +#: ../app/actions/plug-in-actions.c:101 +msgid "An_imation" +msgstr "_Canlandırma" + +#: ../app/actions/plug-in-actions.c:104 +msgid "Reset all _Filters" +msgstr "_Tüm Filtreleri Sıfırla" + +#: ../app/actions/plug-in-actions.c:105 +msgid "Reset all plug-ins to their default settings" +msgstr "Tüm eklentileri öntanımlı ayarlarına sıfırla" + +#: ../app/actions/plug-in-actions.c:113 +msgid "Re_peat Last" +msgstr "_Sonuncuyu Tekrarla" + +#: ../app/actions/plug-in-actions.c:114 +msgid "Rerun the last used plug-in using the same settings" +msgstr "Son kullanılan eklentiyi kullanılmış aynı ayarlarla yeniden çalıştır" + +#: ../app/actions/plug-in-actions.c:119 +msgid "R_e-Show Last" +msgstr "S_onuncuyu Yeniden Göster" + +#: ../app/actions/plug-in-actions.c:120 +msgid "Show the last used plug-in dialog again" +msgstr "Son kullanılan eklentinin iletişim kutusunu yine göster" + +#: ../app/actions/plug-in-actions.c:503 +#, c-format +msgid "Re_peat \"%s\"" +msgstr "Y_inele \"%s\"" + +#: ../app/actions/plug-in-actions.c:504 +#, c-format +msgid "R_e-Show \"%s\"" +msgstr "Yeniden _Göster \"%s\"" + +#: ../app/actions/plug-in-actions.c:520 +msgid "Repeat Last" +msgstr "Sonuncuyu Tekrarla" + +#: ../app/actions/plug-in-actions.c:522 +msgid "Re-Show Last" +msgstr "Sonuncuyu Yeniden Göster" + +#: ../app/actions/plug-in-commands.c:262 +msgid "Reset all Filters" +msgstr "Tüm Filtreleri Sıfıla" + +#: ../app/actions/plug-in-commands.c:281 +msgid "Do you really want to reset all filters to default values?" +msgstr "Tüm filtreleri öntanımlı değerlerine geri almak istiyor musunuz?" + +#: ../app/actions/quick-mask-actions.c:42 +msgid "Quick Mask Menu" +msgstr "Hızlı Maske Menüsü" + +#: ../app/actions/quick-mask-actions.c:46 +msgid "_Configure Color and Opacity..." +msgstr "Rengi ve Işık Geçirmezliği _Yapılandır..." + +#: ../app/actions/quick-mask-actions.c:54 +msgid "Toggle _Quick Mask" +msgstr "_Hızlı Maskeyi Değiştir" + +#: ../app/actions/quick-mask-actions.c:54 +#: ../app/display/gimpdisplayshell.c:1169 +msgid "Toggle Quick Mask" +msgstr "Hızlı Maskeyi Değiştir" + +#: ../app/actions/quick-mask-actions.c:63 +msgid "Mask _Selected Areas" +msgstr "Seçilmiş Alanları Maskele" + +#: ../app/actions/quick-mask-actions.c:68 +msgid "Mask _Unselected Areas" +msgstr "Seçilme_miş Alanları Maskele" + +#: ../app/actions/quick-mask-commands.c:105 +msgid "Quick Mask Attributes" +msgstr "Öznitelikleri Hızlı Maskele" + +#: ../app/actions/quick-mask-commands.c:108 +msgid "Edit Quick Mask Attributes" +msgstr "Öznitelikleri Hızlı Maskelemeyi Düzenle" + +#: ../app/actions/quick-mask-commands.c:110 +msgid "Edit Quick Mask Color" +msgstr "Rengi Hızlı Maskelemeyi Düzenle" + +#: ../app/actions/quick-mask-commands.c:111 +msgid "_Mask opacity:" +msgstr "_Maske Işık Geçirmezliği:" + +#: ../app/actions/sample-points-actions.c:40 +msgid "Sample Point Menu" +msgstr "Örnek Nokta Menüsü" + +#: ../app/actions/select-actions.c:44 +msgid "Selection Editor Menu" +msgstr "Seçim Düzenleyici Menüsü" + +#: ../app/actions/select-actions.c:47 +msgid "_Select" +msgstr "_Seç" + +#: ../app/actions/select-actions.c:50 +msgid "select|_All" +msgstr "_Tümünü Seç" + +#: ../app/actions/select-actions.c:51 +msgid "Select everything" +msgstr "Her şeyi seç" + +#: ../app/actions/select-actions.c:56 +msgid "select|_None" +msgstr "Hiçbirini Seçme" + +#: ../app/actions/select-actions.c:57 +msgid "Dismiss the selection" +msgstr "Seçimi kaldır" + +#: ../app/actions/select-actions.c:62 +msgid "_Invert" +msgstr "_Tersine Çevir" + +#: ../app/actions/select-actions.c:63 +msgid "Invert the selection" +msgstr "Seçimi tersine çevir" + +#: ../app/actions/select-actions.c:68 +msgid "_Float" +msgstr "_Yüzdür" + +#: ../app/actions/select-actions.c:69 +msgid "Create a floating selection" +msgstr "Yüzen bir seçim oluştur" + +#: ../app/actions/select-actions.c:74 +msgid "Fea_ther..." +msgstr "Y_umuşat..." + +#: ../app/actions/select-actions.c:75 +msgid "Blur the selection border so that it fades out smoothly" +msgstr "Seçimin kenarını hafifçe kaybolacak şekilde bulanıklaştır." + +#: ../app/actions/select-actions.c:80 +msgid "_Sharpen" +msgstr "_Keskinleştir" + +#: ../app/actions/select-actions.c:81 +msgid "Remove fuzzyness from the selection" +msgstr "Seçimden donukluğu kaldır" + +#: ../app/actions/select-actions.c:86 +msgid "S_hrink..." +msgstr "K_üçült..." + +#: ../app/actions/select-actions.c:87 +msgid "Contract the selection" +msgstr "Seçimi daralt" + +#: ../app/actions/select-actions.c:92 +msgid "_Grow..." +msgstr "_Büyüt..." + +#: ../app/actions/select-actions.c:93 +msgid "Enlarge the selection" +msgstr "Seçimi genişlet" + +#: ../app/actions/select-actions.c:98 +msgid "Bo_rder..." +msgstr "_Sınır..." + +#: ../app/actions/select-actions.c:99 +msgid "Replace the selection by its border" +msgstr "Seçimi sınırları ile değiştir" + +#: ../app/actions/select-actions.c:104 +msgid "Save to _Channel" +msgstr "_Kanala Kaydet" + +#: ../app/actions/select-actions.c:105 +msgid "Save the selection to a channel" +msgstr "Seçimi bir kanala kaydet" + +#: ../app/actions/select-actions.c:110 +msgid "_Stroke Selection..." +msgstr "S_eçimi Darbele..." + +#: ../app/actions/select-actions.c:111 +msgid "Paint along the selection outline" +msgstr "Seçim çerçevesi boyunca boya" + +#: ../app/actions/select-actions.c:116 +msgid "_Stroke Selection" +msgstr "_Seçimi Darbele" + +#: ../app/actions/select-actions.c:117 +msgid "Stroke the selection with last used values" +msgstr "Son kullanılmış değerlerle seçimi darbele" + +#: ../app/actions/select-commands.c:153 ../app/core/gimpselection.c:167 +msgid "Feather Selection" +msgstr "Seçimi Yumuşat" + +#: ../app/actions/select-commands.c:157 +msgid "Feather selection by" +msgstr "Seçimi yumuşat:" + +#: ../app/actions/select-commands.c:191 ../app/core/gimpselection.c:174 +msgid "Shrink Selection" +msgstr "Seçimi Küçült" + +#: ../app/actions/select-commands.c:195 +msgid "Shrink selection by" +msgstr "Seçimi küçült" + +#: ../app/actions/select-commands.c:203 +msgid "_Shrink from image border" +msgstr "Görüntü sınırlarından _küçült" + +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:173 +msgid "Grow Selection" +msgstr "Seçimi Büyüt" + +#: ../app/actions/select-commands.c:232 +msgid "Grow selection by" +msgstr "Seçimi büyüt" + +#: ../app/actions/select-commands.c:255 ../app/core/gimpselection.c:172 +msgid "Border Selection" +msgstr "Sınırdan Seçim" + +#: ../app/actions/select-commands.c:259 +msgid "Border selection by" +msgstr "Kenarlık seçimi" + +#. Feather button +#: ../app/actions/select-commands.c:268 +msgid "_Feather border" +msgstr "_Sınırı yumuşat" + +#. Edge lock button +#: ../app/actions/select-commands.c:281 +msgid "_Lock selection to image edges" +msgstr "Seçimden görüntü kenarlarına _kilitle" + +#: ../app/actions/select-commands.c:330 ../app/actions/select-commands.c:362 +#: ../app/actions/vectors-commands.c:379 ../app/actions/vectors-commands.c:412 +#: ../app/dialogs/stroke-dialog.c:299 +msgid "There is no active layer or channel to stroke to." +msgstr "Etkin katman ya da darbelenecek kanal yok." + +#: ../app/actions/select-commands.c:336 ../app/core/gimpselection.c:151 +msgid "Stroke Selection" +msgstr "Seçimi Darbele" + +#: ../app/actions/templates-actions.c:42 +msgid "Templates Menu" +msgstr "Şablonlar Menüsü" + +#: ../app/actions/templates-actions.c:46 +msgid "_Create Image from Template" +msgstr "Şablondan Görüntü _Oluştur" + +#: ../app/actions/templates-actions.c:47 +msgid "Create a new image from the selected template" +msgstr "Seçilmiş şablondan yeni bir görüntü oluştur" + +#: ../app/actions/templates-actions.c:52 +msgid "_New Template..." +msgstr "_Yeni Şablon..." + +#: ../app/actions/templates-actions.c:53 +msgid "Create a new template" +msgstr "Yeni şablon oluştur" + +#: ../app/actions/templates-actions.c:58 +msgid "D_uplicate Template..." +msgstr "Şablonu Ç_oğalt..." + +#: ../app/actions/templates-actions.c:59 +msgid "Duplicate the selected template" +msgstr "Seçilmiş şablonu çoğalt" + +#: ../app/actions/templates-actions.c:64 +msgid "_Edit Template..." +msgstr "Şablonu _Düzenle..." + +#: ../app/actions/templates-actions.c:65 +msgid "Edit the selected template" +msgstr "Seçilmiş şablonu düzenle" + +#: ../app/actions/templates-actions.c:70 +msgid "_Delete Template" +msgstr "Şablonu _Düzenle" + +#: ../app/actions/templates-actions.c:71 +msgid "Delete the selected template" +msgstr "Seçilmiş şablonu sil" + +#: ../app/actions/templates-commands.c:113 +msgid "New Template" +msgstr "Yeni Şablon" + +#: ../app/actions/templates-commands.c:116 +msgid "Create a New Template" +msgstr "Yeni bir Şablon Oluştur" + +#: ../app/actions/templates-commands.c:175 +#: ../app/actions/templates-commands.c:178 +msgid "Edit Template" +msgstr "Şablonu Düzenle" + +#: ../app/actions/templates-commands.c:213 +msgid "Delete Template" +msgstr "Şablonu Sil" + +#: ../app/actions/templates-commands.c:239 +#, c-format +msgid "" +"Are you sure you want to delete template '%s' from the list and from disk?" +msgstr "" +"'%s' şablonunu listeden ve diskinizden silmek istediğinize emin misiniz?" + +#: ../app/actions/text-editor-actions.c:44 +msgid "Open" +msgstr "Aç" + +#: ../app/actions/text-editor-actions.c:45 +msgid "Load text from file" +msgstr "Metin dosyasından yükle" + +#: ../app/actions/text-editor-actions.c:50 ../app/core/gimp-edit.c:445 +msgid "Clear" +msgstr "Temizle" + +#: ../app/actions/text-editor-actions.c:51 +msgid "Clear all text" +msgstr "Tüm metni temizle" + +#: ../app/actions/text-editor-actions.c:59 +msgid "LTR" +msgstr "Sol > Sağ" + +#: ../app/actions/text-editor-actions.c:60 +msgid "From left to right" +msgstr "Soldan sağa" + +#: ../app/actions/text-editor-actions.c:65 +msgid "RTL" +msgstr "Sağ > Sol" + +#: ../app/actions/text-editor-actions.c:66 +msgid "From right to left" +msgstr "Sağdan sola" + +#: ../app/actions/text-editor-commands.c:63 +msgid "Open Text File (UTF-8)" +msgstr "Metin Dosyasını Aç (UTF-8)" + +#: ../app/actions/text-editor-commands.c:144 +#: ../app/config/gimpconfig-file.c:59 ../app/core/gimpbrush-load.c:140 +#: ../app/core/gimpbrush-load.c:420 ../app/core/gimpbrushgenerated-load.c:73 +#: ../app/core/gimpbrushpipe-load.c:81 ../app/core/gimpcurve-load.c:55 +#: ../app/core/gimpgradient-load.c:62 ../app/core/gimppalette-load.c:76 +#: ../app/core/gimppalette-load.c:270 ../app/core/gimppalette-load.c:314 +#: ../app/core/gimppalette-load.c:368 ../app/core/gimppalette-load.c:456 +#: ../app/core/gimppalette-load.c:599 ../app/core/gimppattern-load.c:76 +#: ../app/tools/gimpcurvestool.c:623 ../app/tools/gimplevelstool.c:743 +#: ../app/xcf/xcf.c:329 +#, c-format +msgid "Could not open '%s' for reading: %s" +msgstr "'%s' dosyası okumak için açılamadı: %s" + +#: ../app/actions/tool-options-actions.c:56 +msgid "Tool Options Menu" +msgstr "Araç Seçenekleri Menüsü" + +#: ../app/actions/tool-options-actions.c:60 +msgid "_Save Options To" +msgstr "S_eçeneklerin Kaydedileceği Yer:" + +#: ../app/actions/tool-options-actions.c:64 +msgid "_Restore Options From" +msgstr "Seçeneklerin Geri Yükleneceği Yer:" + +#: ../app/actions/tool-options-actions.c:68 +msgid "Re_name Saved Options" +msgstr "K_ayıtlı Seçenekleri Yeniden Adlandır" + +#: ../app/actions/tool-options-actions.c:72 +msgid "_Delete Saved Options" +msgstr "Kayıtlı _Seçenekleri Sil" + +#: ../app/actions/tool-options-actions.c:76 +msgid "_New Entry..." +msgstr "_Yeni Girdi..." + +#: ../app/actions/tool-options-actions.c:81 +msgid "R_eset Tool Options" +msgstr "Alet Seçeneklerini _Sıfırla" + +#: ../app/actions/tool-options-actions.c:82 +msgid "Reset to default values" +msgstr "Öntanımlı değerlerine geri al" + +#: ../app/actions/tool-options-actions.c:87 +msgid "Reset _all Tool Options" +msgstr "T_üm Araç Seçeneklerini Sıfırla" + +#: ../app/actions/tool-options-actions.c:88 +msgid "Reset all tool options" +msgstr "Tüm araç seçeneklerini sıfırla" + +#: ../app/actions/tool-options-commands.c:72 +msgid "Save Tool Options" +msgstr "Kaydetme Aracı Seçenekleri" + +#: ../app/actions/tool-options-commands.c:76 +msgid "Enter a name for the saved options" +msgstr "Kaydedilen seçenekler için bir yol adı girin" + +#: ../app/actions/tool-options-commands.c:77 +#: ../app/actions/tool-options-commands.c:247 +#: ../app/actions/tool-options-commands.c:264 +msgid "Saved Options" +msgstr "Kayıtlı Seçenekler" + +#: ../app/actions/tool-options-commands.c:140 +msgid "Rename Saved Tool Options" +msgstr "Kaydedilmiş Araç Seçeneklerini Yeniden Adlandır" + +#: ../app/actions/tool-options-commands.c:144 +msgid "Enter a new name for the saved options" +msgstr "Kaydedilmeş seçenekler için yeni bir ad girin" + +#: ../app/actions/tool-options-commands.c:187 +msgid "Reset Tool Options" +msgstr "Alet Seçeneklerini Sıfırla" + +#: ../app/actions/tool-options-commands.c:210 +msgid "Do you really want to reset all tool options to default values?" +msgstr "" +"Tüm alet seçeneklerini öntanımlı değerlerine geri almak istiyor musunuz?" + +#: ../app/actions/tools-actions.c:47 +msgid "Tools Menu" +msgstr "Araçlar Menüsü" + +#: ../app/actions/tools-actions.c:50 +msgid "_Tools" +msgstr "_Araçlar" + +#: ../app/actions/tools-actions.c:51 +msgid "_Selection Tools" +msgstr "Seçim Araçla_rı" + +#: ../app/actions/tools-actions.c:52 +msgid "_Paint Tools" +msgstr "_Boyama Araçları" + +#: ../app/actions/tools-actions.c:53 +msgid "_Transform Tools" +msgstr "_Dönüşüm Araçları" + +#: ../app/actions/tools-actions.c:54 +msgid "_Color Tools" +msgstr "R_enk Araçları" + +#: ../app/actions/tools-actions.c:57 +msgid "R_aise Tool" +msgstr "A_leti Yükselt" + +#: ../app/actions/tools-actions.c:58 +msgid "Raise tool" +msgstr "Aracı yükselt" + +#: ../app/actions/tools-actions.c:63 +msgid "Ra_ise to Top" +msgstr "En üste yükselt" + +#: ../app/actions/tools-actions.c:64 +msgid "Raise tool to top" +msgstr "Aracı en üste yükselt" + +#: ../app/actions/tools-actions.c:69 +msgid "L_ower Tool" +msgstr "Aracı Al_çalt" + +#: ../app/actions/tools-actions.c:70 +msgid "Lower tool" +msgstr "Aracı alçalt" + +#: ../app/actions/tools-actions.c:75 +msgid "Lo_wer to Bottom" +msgstr "Alta A_lçalt" + +#: ../app/actions/tools-actions.c:76 +msgid "Lower tool to bottom" +msgstr "Katmanı alta alçalt" + +#: ../app/actions/tools-actions.c:81 +msgid "_Reset Order & Visibility" +msgstr "Düzeni ve Görünürlüğü _Sıfırla" + +#: ../app/actions/tools-actions.c:82 +msgid "Reset tool order and visibility" +msgstr "Araç düzenini ve görünürlüğü sıfırla" + +#: ../app/actions/tools-actions.c:90 +msgid "_Show in Toolbox" +msgstr "_Araç kutusunda göster" + +#: ../app/actions/tools-actions.c:99 +msgid "_By Color" +msgstr "_Renge Göre" + +#: ../app/actions/tools-actions.c:100 +msgid "Select regions with similar colors" +msgstr "Bölgeleri benzer renklerle seç" + +#: ../app/actions/tools-actions.c:105 +msgid "_Arbitrary Rotation..." +msgstr "_Rastgele Dönüşüm..." + +#: ../app/actions/tools-actions.c:106 +msgid "Rotate by an arbitrary angle" +msgstr "İsteğe bağlı bir açı ile döndür" + +#: ../app/actions/vectors-actions.c:44 +msgid "Paths Menu" +msgstr "Yollar Menüsü" + +#: ../app/actions/vectors-actions.c:48 +msgid "Path _Tool" +msgstr "Yol _Aracı" + +#: ../app/actions/vectors-actions.c:53 +msgid "_Edit Path Attributes..." +msgstr "Yol Özniteliklerini _Düzenle..." + +#: ../app/actions/vectors-actions.c:54 +msgid "Edit path attributes" +msgstr "Yol özniteliklerini düzenle" + +#: ../app/actions/vectors-actions.c:59 +msgid "_New Path..." +msgstr "_Yeni Yol..." + +#: ../app/actions/vectors-actions.c:60 +msgid "New path..." +msgstr "Yeni yol..." + +#: ../app/actions/vectors-actions.c:65 +msgid "_New Path" +msgstr "_Yeni Yol" + +#: ../app/actions/vectors-actions.c:66 +msgid "New path with last values" +msgstr "Son değerlerle yeni yol" + +#: ../app/actions/vectors-actions.c:71 +msgid "D_uplicate Path" +msgstr "Yolu _Çoğalt" + +#: ../app/actions/vectors-actions.c:72 +msgid "Duplicate path" +msgstr "Yolu çoğalt" + +#: ../app/actions/vectors-actions.c:77 +msgid "_Delete Path" +msgstr "Yolu _Sil" + +#: ../app/actions/vectors-actions.c:78 ../app/core/core-enums.c:920 +msgid "Delete path" +msgstr "Yolu sil" + +#: ../app/actions/vectors-actions.c:83 +msgid "Merge _Visible Paths" +msgstr "_Görünür Yolları Birleştir" + +#: ../app/actions/vectors-actions.c:88 +msgid "_Raise Path" +msgstr "Yolu Y_ükselt" + +#: ../app/actions/vectors-actions.c:89 +msgid "Raise path" +msgstr "Yolu yükselt" + +#: ../app/actions/vectors-actions.c:94 +msgid "Raise Path to _Top" +msgstr "Yolu En _Üste Yükselt" + +#: ../app/actions/vectors-actions.c:95 +msgid "Raise path to top" +msgstr "Yolu en üste yükselt" + +#: ../app/actions/vectors-actions.c:100 +msgid "_Lower Path" +msgstr "Yolu _Alçalt" + +#: ../app/actions/vectors-actions.c:101 +msgid "Lower path" +msgstr "Yolu alçalt" + +#: ../app/actions/vectors-actions.c:106 +msgid "Lower Path to _Bottom" +msgstr "Yolu Al_ta Alçalt" + +#: ../app/actions/vectors-actions.c:107 +msgid "Lower path to bottom" +msgstr "Yolu alta alçalt" + +#: ../app/actions/vectors-actions.c:112 +msgid "Stro_ke Path..." +msgstr "Yolu Dar_bele..." + +#: ../app/actions/vectors-actions.c:113 +msgid "Paint along the path" +msgstr "Yol boyunca boya" + +#: ../app/actions/vectors-actions.c:118 +msgid "Stro_ke Path" +msgstr "Yolu Dar_bele" + +#: ../app/actions/vectors-actions.c:119 +msgid "Paint along the path with last values" +msgstr "Son değerlerle yol boyunca boya" + +#: ../app/actions/vectors-actions.c:124 +msgid "Co_py Path" +msgstr "Yolu Ko_pyala" + +#: ../app/actions/vectors-actions.c:129 +msgid "Paste Pat_h" +msgstr "Yo_lu Yapıştır" + +#: ../app/actions/vectors-actions.c:134 +msgid "E_xport Path..." +msgstr "Yolu D_ışa Aktar..." + +#: ../app/actions/vectors-actions.c:139 +msgid "I_mport Path..." +msgstr "Yolu İ_çe Aktar..." + +#: ../app/actions/vectors-actions.c:162 +msgid "Path to Sele_ction" +msgstr "Yoldan S_eçime" + +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1912 +msgid "Path to selection" +msgstr "Yoldan seçime" + +#: ../app/actions/vectors-actions.c:168 +msgid "Fr_om Path" +msgstr "Y_oldan" + +#: ../app/actions/vectors-actions.c:174 +msgid "Add" +msgstr "Ekle" + +#: ../app/actions/vectors-actions.c:180 ../app/base/base-enums.c:119 +msgid "Subtract" +msgstr "Çıkar" + +#: ../app/actions/vectors-actions.c:186 +msgid "Intersect" +msgstr "Kesiştir" + +#: ../app/actions/vectors-actions.c:194 +msgid "Selecti_on to Path" +msgstr "Seçi_mden Yola" + +#: ../app/actions/vectors-actions.c:195 ../app/actions/vectors-actions.c:201 +msgid "Selection to path" +msgstr "Seçimden yola" + +#: ../app/actions/vectors-actions.c:200 +msgid "To _Path" +msgstr "Yol_a" + +#: ../app/actions/vectors-actions.c:206 +msgid "Selection to Path (_Advanced)" +msgstr "Seçimden Yola (_Gelişmiş)" + +#: ../app/actions/vectors-actions.c:207 +msgid "Advanced options" +msgstr "Gelişmiş seçenekler" + +#: ../app/actions/vectors-commands.c:138 +msgid "Path Attributes" +msgstr "Yol Öznitelikleri" + +#: ../app/actions/vectors-commands.c:141 +msgid "Edit Path Attributes" +msgstr "Yol Özniteliklerini Düzenle" + +#: ../app/actions/vectors-commands.c:165 ../app/actions/vectors-commands.c:166 +#: ../app/actions/vectors-commands.c:188 +msgid "New Path" +msgstr "Yeni Yol" + +#: ../app/actions/vectors-commands.c:169 +msgid "New Path Options" +msgstr "Yeni Yol Seçenekleri" + +#: ../app/actions/vectors-commands.c:305 ../app/pdb/paths-cmds.c:640 +#: ../app/pdb/vectors-cmds.c:1253 +msgid "Path to Selection" +msgstr "Yoldan Seçime" + +#: ../app/actions/vectors-commands.c:385 ../app/tools/gimpvectoroptions.c:199 +#: ../app/tools/gimpvectortool.c:1945 ../app/vectors/gimpvectors.c:200 +msgid "Stroke Path" +msgstr "Yolu Darbele" + +#: ../app/actions/view-actions.c:67 +msgid "_View" +msgstr "_Görünüm" + +#: ../app/actions/view-actions.c:68 +msgid "_Zoom" +msgstr "_Odakla" + +#: ../app/actions/view-actions.c:69 +msgid "_Padding Color" +msgstr "_Doldurma Rengi" + +#: ../app/actions/view-actions.c:71 +msgid "Move to Screen" +msgstr "Ekrana Taşı" + +#: ../app/actions/view-actions.c:76 +msgid "Create another view on this image" +msgstr "Bu görüntü üzerinde yeni bir görünüm oluştur" + +#: ../app/actions/view-actions.c:81 +msgid "_Close" +msgstr "_Kapat" + +#: ../app/actions/view-actions.c:82 +msgid "Close this image window" +msgstr "Bu görüntü penceresini kapat" + +#: ../app/actions/view-actions.c:87 +msgid "_Fit Image in Window" +msgstr "Görüntüyü Pencereye _Uydur" + +#: ../app/actions/view-actions.c:88 +msgid "Adjust the zoom ratio so that the image becomes fully visible" +msgstr "" +"Yakınlaşma oranını ayarlayın, böylelikle görüntü tamamen görünür olacak" + +#: ../app/actions/view-actions.c:93 +msgid "Fi_ll Window" +msgstr "Pencereyi Dold_ur" + +#: ../app/actions/view-actions.c:94 +msgid "Adjust the zoom ratio so that the entire window is used" +msgstr "Yakınlaştırma oranını ayarla böylece bütün pencere kullanılmış olur" + +#: ../app/actions/view-actions.c:99 ../app/actions/view-actions.c:579 +msgid "Re_vert Zoom" +msgstr "Yakınlaşmayı _Geri Al" + +#: ../app/actions/view-actions.c:100 +msgid "Restore the previous zoom level" +msgstr "Önceki yakınlaşma düzeyini geri yükle" + +#: ../app/actions/view-actions.c:105 +msgid "Na_vigation Window" +msgstr "Dolaşma Penceresi" + +#: ../app/actions/view-actions.c:106 +msgid "Show an overview window for this image" +msgstr "Bu görüntü için bir gözden geçirme penceresi aç" + +#: ../app/actions/view-actions.c:111 +msgid "Display _Filters..." +msgstr "Süzgeçleri G_örüntüle..." + +#: ../app/actions/view-actions.c:112 +msgid "Configure filters applied to this view" +msgstr "Bu görünüme uygulanan süzgeçleri yapılandır" + +#: ../app/actions/view-actions.c:117 +msgid "Shrink _Wrap" +msgstr "Daralt ve _Bük" + +#: ../app/actions/view-actions.c:118 +msgid "Reduce the image window to the size of the image display" +msgstr "Görüntü penceresini görüntü gösterimi boyutuna küçült" + +#: ../app/actions/view-actions.c:132 +msgid "_Dot for Dot" +msgstr "_Bire Bir" + +#: ../app/actions/view-actions.c:133 +msgid "A pixel on the screen represents an image pixel" +msgstr "Ekran üzerindeki bir benek görüntünün bir beneğini belirtiyor" + +#: ../app/actions/view-actions.c:139 +msgid "Show _Selection" +msgstr "_Seçimi Göster" + +#: ../app/actions/view-actions.c:140 +msgid "Display the selection outline" +msgstr "Seçim çerçevesini görüntüle" + +#: ../app/actions/view-actions.c:146 +msgid "Show _Layer Boundary" +msgstr "_Katman Sınırını Göster" + +#: ../app/actions/view-actions.c:147 +msgid "Draw a border around the active layer" +msgstr "Etkin katman etrafında bir sınır çiz" + +#: ../app/actions/view-actions.c:153 +msgid "Show _Guides" +msgstr "Kıla_vuzları Göster" + +#: ../app/actions/view-actions.c:154 +msgid "Display the image's guides" +msgstr "Görüntünün kılavuzlarını göster" + +#: ../app/actions/view-actions.c:160 +msgid "S_how Grid" +msgstr "Izgarayı G_öster" + +#: ../app/actions/view-actions.c:161 +msgid "Display the image's grid" +msgstr "Görüntünün ızgarasını göster" + +#: ../app/actions/view-actions.c:167 +msgid "Show Sample Points" +msgstr "Örnek Noktaları Göster" + +#: ../app/actions/view-actions.c:168 +msgid "Display the image's color sample points" +msgstr "Görüntünün örnek renk noktalarını göster" + +#: ../app/actions/view-actions.c:174 +msgid "Sn_ap to Guides" +msgstr "_Rehbere Yapıştır" + +#: ../app/actions/view-actions.c:175 +msgid "Tool operations snap to guides" +msgstr "Araç işlemleri kılavuza yaslanır" + +#: ../app/actions/view-actions.c:181 +msgid "Sna_p to Grid" +msgstr "I_zgaraya Yapıştır" + +#: ../app/actions/view-actions.c:182 +msgid "Tool operations snap to the grid" +msgstr "Araç işlemleri kılavuz çizgisine yaslanır" + +#: ../app/actions/view-actions.c:188 +msgid "Snap to _Canvas Edges" +msgstr "_Alan Kenarı'na yaslan" + +#: ../app/actions/view-actions.c:189 +msgid "Tool operations snap to the canvas edges" +msgstr "Araç işlemleri alan kenarlarına yaslanır" + +#: ../app/actions/view-actions.c:195 +msgid "Snap t_o Active Path" +msgstr "Aktif _Yola Yapıştır" + +#: ../app/actions/view-actions.c:196 +msgid "Tool operations snap to the active path" +msgstr "Geçerli yolu taşı" + +#: ../app/actions/view-actions.c:202 +msgid "Show _Menubar" +msgstr "_Menü Çubuğunu Göster" + +#: ../app/actions/view-actions.c:203 +msgid "Show this window's menubar" +msgstr "Bu pencerenin menü çubuğunu göster" + +#: ../app/actions/view-actions.c:209 +msgid "Show R_ulers" +msgstr "C_etvelleri Göster" + +#: ../app/actions/view-actions.c:210 +msgid "Show this window's rulers" +msgstr "Bu pencerenin cetvellerini göster" + +#: ../app/actions/view-actions.c:216 +msgid "Show Scroll_bars" +msgstr "Ka_ydırma Çubuklarını Göster" + +#: ../app/actions/view-actions.c:217 +msgid "Show this window's scrollbars" +msgstr "Bu pencerenin kaydırma çubuklarını göster" + +#: ../app/actions/view-actions.c:223 +msgid "Show S_tatusbar" +msgstr "_Durum Çubuğunu Göster" + +#: ../app/actions/view-actions.c:224 +msgid "Show this window's statusbar" +msgstr "Bu pencerenin durum çubuğunu göster" + +#: ../app/actions/view-actions.c:230 +msgid "Fullscr_een" +msgstr "Tam _Ekran" + +#: ../app/actions/view-actions.c:231 +msgid "Toggle fullscreen view" +msgstr "Tam ekran görünüm geçişi" + +#: ../app/actions/view-actions.c:292 +msgid "1_6:1 (1600%)" +msgstr "1_6:1 (%%1600)" + +#: ../app/actions/view-actions.c:293 +msgid "Zoom 16:1" +msgstr "16:1 Yakınlaş" + +#: ../app/actions/view-actions.c:298 +msgid "_8:1 (800%)" +msgstr "_8:1 (%%800)" + +#: ../app/actions/view-actions.c:299 +msgid "Zoom 8:1" +msgstr "8:1 Yakınlaş" + +#: ../app/actions/view-actions.c:304 +msgid "_4:1 (400%)" +msgstr "_4:1 (%%400)" + +#: ../app/actions/view-actions.c:305 +msgid "Zoom 4:1" +msgstr "4:1 Yakınlaş" + +#: ../app/actions/view-actions.c:310 +msgid "_2:1 (200%)" +msgstr "_2:1 (%200)" + +#: ../app/actions/view-actions.c:311 +msgid "Zoom 2:1" +msgstr "2:1 Yakınlaş" + +#: ../app/actions/view-actions.c:316 +msgid "_1:1 (100%)" +msgstr "_1:1 (%%100)" + +#: ../app/actions/view-actions.c:317 +msgid "Zoom 1:1" +msgstr "1:1 Yakınlaş" + +#: ../app/actions/view-actions.c:322 +msgid "1:_2 (50%)" +msgstr "1:_2 (%%50)" + +#: ../app/actions/view-actions.c:323 +msgid "Zoom 1:2" +msgstr "1:2 Yakınlaş" + +#: ../app/actions/view-actions.c:328 +msgid "1:_4 (25%)" +msgstr "1:_4 (%%25)" + +#: ../app/actions/view-actions.c:329 +msgid "Zoom 1:4" +msgstr "1:4 Yakınlaş" + +#: ../app/actions/view-actions.c:334 +msgid "1:_8 (12.5%)" +msgstr "1:_8 (%%12.5)" + +#: ../app/actions/view-actions.c:335 +msgid "Zoom 1:8" +msgstr "1:8 Yakınlaş" + +#: ../app/actions/view-actions.c:340 +msgid "1:1_6 (6.25%)" +msgstr "1:1_6 (%%6.25)" + +#: ../app/actions/view-actions.c:341 +msgid "Zoom 1:16" +msgstr "1:16 Yakınlaş" + +#: ../app/actions/view-actions.c:346 +msgid "Othe_r..." +msgstr "_Diğer..." + +#: ../app/actions/view-actions.c:347 +msgid "Set a custom zoom factor" +msgstr "Özel bir yakınlaşma katsayısı ayarla" + +#: ../app/actions/view-actions.c:355 +msgid "From _Theme" +msgstr "_Temadan" + +#: ../app/actions/view-actions.c:356 +msgid "Use the current theme's background color" +msgstr "Şimdiki tema artalanının rengini kullan" + +#: ../app/actions/view-actions.c:361 +msgid "_Light Check Color" +msgstr "_Açık Denetim Rengi" + +#: ../app/actions/view-actions.c:362 +msgid "Use the light check color" +msgstr "Açık denetim rengini kullan" + +#: ../app/actions/view-actions.c:367 +msgid "_Dark Check Color" +msgstr "_Koyu Denetim Rengi" + +#: ../app/actions/view-actions.c:368 +msgid "Use the dark check color" +msgstr "Koyu denetim rengini kullan" + +#: ../app/actions/view-actions.c:373 +msgid "Select _Custom Color..." +msgstr "Öze_l Renk Seç..." + +#: ../app/actions/view-actions.c:374 +msgid "Use an arbitrary color" +msgstr "İsteğe bağlı bir renk kullan" + +#: ../app/actions/view-actions.c:379 +msgid "As in _Preferences" +msgstr "Ter_cihlerdeki Gibi" + +#: ../app/actions/view-actions.c:380 +msgid "Reset padding color to what's configured in preferences" +msgstr "Doldurma rengini yeğlenenlerdeki yapılandırılana göre yeniden ayarla" + +#: ../app/actions/view-actions.c:571 +#, c-format +msgid "Re_vert Zoom (%d%%)" +msgstr "Yakınlaşmayı Ge_ri Al (%d%%)" + +#: ../app/actions/view-actions.c:708 +#, c-format +msgid "Othe_r (%s)..." +msgstr "Diğe_r (%s)..." + +#: ../app/actions/view-actions.c:717 +#, c-format +msgid "_Zoom (%s)" +msgstr "_Yakınlaş (%s)" + +#: ../app/actions/view-commands.c:613 +msgid "Set Canvas Padding Color" +msgstr "Tuval Doldurma Rengini Ayarla" + +#: ../app/actions/view-commands.c:615 +msgid "Set Custom Canvas Padding Color" +msgstr "Özel Tuval Doldurma Rengini Ayarla" + +#: ../app/actions/window-actions.c:168 +#, c-format +msgid "Screen %s" +msgstr "Ekran %s" + +#: ../app/actions/window-actions.c:170 +#, c-format +msgid "Move this window to screen %s" +msgstr "Bu pencereyi ekrana taşı %s" + +#: ../app/actions/windows-actions.c:79 +msgid "_Windows" +msgstr "_Pencereler" + +#: ../app/actions/windows-actions.c:80 +msgid "_Recently Closed Docks" +msgstr "_Son Kapatılan Rıhtımlar" + +#: ../app/actions/windows-actions.c:81 +msgid "_Dockable Dialogs" +msgstr "_Rıhtımlanabilir Kutular" + +#: ../app/actions/windows-actions.c:84 +msgid "Tool_box" +msgstr "Araç _kutusu" + +#: ../app/actions/windows-actions.c:85 +msgid "Raise the toolbox" +msgstr "Araç kutusunu yükselt" + +#: ../app/base/base-enums.c:23 +msgid "Smooth" +msgstr "Yumuşak" + +#: ../app/base/base-enums.c:24 +msgid "Freehand" +msgstr "Serbest Çizim" + +#: ../app/base/base-enums.c:55 ../app/base/base-enums.c:125 +#: ../app/core/core-enums.c:1202 +msgid "Value" +msgstr "Değer" + +#: ../app/base/base-enums.c:56 ../app/core/core-enums.c:1197 +#: ../app/tools/gimpcolorbalancetool.c:296 +#: ../app/tools/gimphuesaturationtool.c:252 +msgid "Red" +msgstr "Kırmızı" + +#: ../app/base/base-enums.c:57 ../app/core/core-enums.c:1198 +#: ../app/tools/gimpcolorbalancetool.c:305 +#: ../app/tools/gimphuesaturationtool.c:254 +msgid "Green" +msgstr "Yeşil" + +#: ../app/base/base-enums.c:58 ../app/core/core-enums.c:1199 +#: ../app/tools/gimpcolorbalancetool.c:314 +#: ../app/tools/gimphuesaturationtool.c:256 +msgid "Blue" +msgstr "Mavi" + +#: ../app/base/base-enums.c:59 +msgid "Alpha" +msgstr "Alfa" + +#: ../app/base/base-enums.c:60 ../app/display/gimpdisplayshell-title.c:233 +#: ../app/widgets/widgets-enums.c:84 +msgid "RGB" +msgstr "RGB" + +#: ../app/base/base-enums.c:111 +msgid "Normal" +msgstr "Normal" + +#: ../app/base/base-enums.c:112 +msgid "Dissolve" +msgstr "Çözülme" + +#: ../app/base/base-enums.c:113 +msgid "Behind" +msgstr "Arkada" + +#: ../app/base/base-enums.c:114 +msgid "Multiply" +msgstr "Çoklandır" + +#: ../app/base/base-enums.c:115 +msgid "Screen" +msgstr "Ekran" + +#: ../app/base/base-enums.c:116 +msgid "Overlay" +msgstr "Üstekoyum" + +#: ../app/base/base-enums.c:117 +msgid "Difference" +msgstr "Fark" + +#: ../app/base/base-enums.c:118 +msgid "Addition" +msgstr "Toplam" + +#: ../app/base/base-enums.c:120 +msgid "Darken only" +msgstr "Sadece Koyulaşan" + +#: ../app/base/base-enums.c:121 +msgid "Lighten only" +msgstr "Sadece Açıklaşan" + +#: ../app/base/base-enums.c:122 ../app/core/core-enums.c:1200 +msgid "Hue" +msgstr "Renk" + +#: ../app/base/base-enums.c:123 ../app/core/core-enums.c:1201 +msgid "Saturation" +msgstr "Doygunluk" + +#: ../app/base/base-enums.c:124 ../app/tools/gimppaintoptions-gui.c:174 +msgid "Color" +msgstr "Renk" + +#: ../app/base/base-enums.c:126 +msgid "Divide" +msgstr "Böl" + +#: ../app/base/base-enums.c:127 +msgid "Dodge" +msgstr "Temizleme" + +#: ../app/base/base-enums.c:128 +msgid "Burn" +msgstr "Yakma" + +#: ../app/base/base-enums.c:129 +msgid "Hard light" +msgstr "Şiddetli Işık" + +#: ../app/base/base-enums.c:130 +msgid "Soft light" +msgstr "Kısık Işık" + +#: ../app/base/base-enums.c:131 +msgid "Grain extract" +msgstr "Tane çıkarma" + +#: ../app/base/base-enums.c:132 +msgid "Grain merge" +msgstr "Tane birleştirme" + +#: ../app/base/base-enums.c:133 +msgid "Color erase" +msgstr "Renk silme" + +#: ../app/base/base-enums.c:134 +msgid "Erase" +msgstr "Sil" + +#: ../app/base/base-enums.c:135 +msgid "Replace" +msgstr "Yerine Koy" + +#: ../app/base/base-enums.c:136 +msgid "Anti erase" +msgstr "Karşı silme" + +#: ../app/base/tile-swap.c:553 +msgid "" +"Unable to open swap file. GIMP has run out of memory and cannot use the swap " +"file. Some parts of your images may be corrupted. Try to save your work " +"using different filenames, restart GIMP and check the location of the swap " +"directory in your Preferences." +msgstr "" +"Takas dosyası açılamadı. GIMP bellek üzerinden çalışıyor ve takas dosyasını " +"kullanamaz. Görüntünün bazı bölümleri bozulmuş olabilir. Çalışmanızı farklı " +"dosya adları kullanarak kaydetmeyi deneyin, GIMP'i yeniden başlatın ve " +"Yeğlenenleriniz içinden takas dizininin yerini denetleyin." + +#: ../app/base/tile-swap.c:568 +#, c-format +msgid "Failed to resize swap file: %s" +msgstr "Takas dosyası yeniden boyutlandırılamadı: %s" + +#: ../app/config/gimpconfig-file.c:68 ../app/core/gimpbrushgenerated-save.c:63 +#: ../app/core/gimpcurve-save.c:53 ../app/core/gimpgradient-save.c:51 +#: ../app/core/gimpgradient-save.c:145 ../app/core/gimppalette-save.c:56 +#: ../app/gui/themes.c:239 ../app/tools/gimpcurvestool.c:676 +#: ../app/tools/gimplevelstool.c:796 ../app/vectors/gimpvectors-export.c:83 +#: ../app/xcf/xcf.c:422 +#, c-format +msgid "Could not open '%s' for writing: %s" +msgstr "'%s' dosyası yazma için açılamadı: %s" + +#: ../app/config/gimpconfig-file.c:79 ../app/config/gimpconfig-file.c:102 +#, c-format +msgid "Error writing '%s': %s" +msgstr "'%s' yazarken hata: %s" + +#: ../app/config/gimpconfig-file.c:90 +#, c-format +msgid "Error reading '%s': %s" +msgstr "'%s' okunurken hata: %s" + +#: ../app/config/gimpconfig-file.c:132 +#, c-format +msgid "" +"There was an error parsing your '%s' file. Default values will be used. A " +"backup of your configuration has been created at '%s'." +msgstr "" +"'%s' dosyası ayrıştırılırken bir hata oldu. Öntanımlı değerler kullanılacak. " +"Yapılandırmanızın yedeğinin oluşturulduğu yer '%s'." + +#. Not all strings defined here are used in the user interface +#. * (the preferences dialog mainly) and only those that are should +#. * be marked for translation. +#. +#: ../app/config/gimprc-blurbs.h:13 +msgid "" +"When enabled, an image will become the active image when its image window " +"receives the focus. This is useful for window managers using \"click to " +"focus\"." +msgstr "" +"Bu özelliği etkinleştirdiğinizde, tıkladığınız resim penceresi aktif pencere " +"haline gelecek. Bu özellik tıklayarak etkinleştirme yapan pencere " +"yöneticilerini kullananlar için yararlıdır." + +#: ../app/config/gimprc-blurbs.h:23 +msgid "" +"Sets the canvas padding color used if the padding mode is set to custom " +"color." +msgstr "" +"Eğer doldurma rengi özel renge ayarlıysa, tuval doldurma rengi kullanılmış " +"olarak ayarlanır." + +#: ../app/config/gimprc-blurbs.h:27 +msgid "Specifies how the area around the image should be drawn." +msgstr "Görüntü etrafındaki alanın nasıl çizileceğini belirler." + +#: ../app/config/gimprc-blurbs.h:33 +msgid "How to handle embedded color profiles when opening a file." +msgstr "Gömülü kullanım profillerinin bir dosya açarken nasıl ele alınacağı." + +#: ../app/config/gimprc-blurbs.h:36 +msgid "Ask for confirmation before closing an image without saving." +msgstr "" +"Bir görüntünün kaydedilmeden kapatılmasından önce doğrulama için sorar." + +#: ../app/config/gimprc-blurbs.h:39 +msgid "Sets the pixel format to use for mouse pointers." +msgstr "Fare imleçleri için kullanılacak benek biçimini ayarlar." + +#: ../app/config/gimprc-blurbs.h:42 +msgid "Sets the type of mouse pointers to use." +msgstr "Kullanılacak fare imleçlerinin türünü ayarlar." + +#: ../app/config/gimprc-blurbs.h:45 +msgid "" +"Context-dependent mouse pointers are helpful. They are enabled by default. " +"However, they require overhead that you may want to do without." +msgstr "" +"İçerik-bağımlı fare imleçleri yararlıdır. Öntanımlı olarak etkindirler. " +"Bununla birlikte, getirecekleri ek yük nedeniyle tercih etmeyebilirsiniz." + +#: ../app/config/gimprc-blurbs.h:53 +msgid "" +"When enabled, this will ensure that each pixel of an image gets mapped to a " +"pixel on the screen." +msgstr "" +"Etkin olduğunda, bir görüntüdeki her beneğin ekran üzerindeki bir benek ile " +"eşlenmesini sağlayacak." + +#: ../app/config/gimprc-blurbs.h:75 +msgid "" +"This is the distance in pixels where Guide and Grid snapping activates." +msgstr "Bu uzaklık klavuz ve ızgara yanaştırmasının etkinleştiği uzaklıktır." + +#: ../app/config/gimprc-blurbs.h:79 +msgid "" +"Tools such as fuzzy-select and bucket fill find regions based on a seed-fill " +"algorithm. The seed fill starts at the initially selected pixel and " +"progresses in all directions until the difference of pixel intensity from " +"the original is greater than a specified threshold. This value represents " +"the default threshold." +msgstr "" +"Bulanıklık seçimi ve kova doldurma gibi araçlar, bir parçacık doldurma " +"algoritmasındaki bölge tabanında bulunur. Parçacık doldurma, seçilen beneğin " +"başlangıcında ve özgünün belirli eşik değerinden daha büyük olan piksel " +"yoğunluğunun farkına kadar tüm işlemlerle başlar. Bu değer, öntanımlı eşik " +"seviyesini belirtir." + +#: ../app/config/gimprc-blurbs.h:92 +msgid "" +"The window type hint that is set on dock windows. This may affect the way " +"your window manager decorates and handles dock windows." +msgstr "" +"Pencere türü ipucu panel pencereleri üzerinden ayarlanır. Bu işlem, sizin " +"pencere yöneticisi süslemelerinizi ve panel pencereleri işlemlerinizi " +"etkileyebilir." + +#: ../app/config/gimprc-blurbs.h:123 +msgid "When enabled, the selected brush will be used for all tools." +msgstr "Etkin olduğunda, seçilmiş fırça bütün araçlar için kullanılacak." + +#: ../app/config/gimprc-blurbs.h:129 +msgid "When enabled, the selected gradient will be used for all tools." +msgstr "" +"Etkin olduğunda, seçilmiş renk geçişi bütün araçlar için kullanılacak." + +#: ../app/config/gimprc-blurbs.h:132 +msgid "When enabled, the selected pattern will be used for all tools." +msgstr "Etkin olduğunda, seçilmiş desen bütün araçlar için kullanılacak." + +#: ../app/config/gimprc-blurbs.h:146 +msgid "Sets the browser used by the help system." +msgstr "Tarayıcının yardım sistemi tarafından kullanılacağını ayarlar." + +#: ../app/config/gimprc-blurbs.h:154 +msgid "Sets the text to appear in image window status bars." +msgstr "" +"Görüntü penceresi durum çubukları içindeki metnin görüleceğini ayarlar." + +#: ../app/config/gimprc-blurbs.h:157 +msgid "Sets the text to appear in image window titles." +msgstr "Görüntü penceresi başlıkları içindeki metnin görüleceğini ayarlar." + +#: ../app/config/gimprc-blurbs.h:160 +msgid "" +"When enabled, this will ensure that the full image is visible after a file " +"is opened, otherwise it will be displayed with a scale of 1:1." +msgstr "" +"Etkin olduğunda, bir dosya açıldıktan sonra tüm görüntünün görünebilir " +"olmasını sağlar, aksi halde 1:1 ölçek ile görüntülenecek." + +#: ../app/config/gimprc-blurbs.h:164 +msgid "" +"Install a private colormap; might be useful on 8-bit (256 colors) displays." +msgstr "" +"Özel bir renk haritası yüklemek: 8-ikil (256 renk) görüntülemeler üzerinde " +"yararlı olabilir." + +#: ../app/config/gimprc-blurbs.h:167 +msgid "" +"Sets the level of interpolation used for scaling and other transformations." +msgstr "" +"Diğer dönüşümler ve ölçeklemeler için kullanılacak ara değerleme düzeyini " +"ayarlar." + +#: ../app/config/gimprc-blurbs.h:174 +msgid "How many recently opened image filenames to keep on the File menu." +msgstr "" +"Dosya menüsünde tutulacak son açılmış görüntü dosyası adlarının sayısıdır." + +#: ../app/config/gimprc-blurbs.h:177 +msgid "" +"Speed of marching ants in the selection outline. This value is in " +"milliseconds (less time indicates faster marching)." +msgstr "" +"Seçim çerçevesi içinde yürüyen karıncaların hızı. Bu değer milisaniye " +"cinsindendir (düşük zaman hızlı yürümeyi belirtir)." + +#: ../app/config/gimprc-blurbs.h:181 +msgid "" +"GIMP will warn the user if an attempt is made to create an image that would " +"take more memory than the size specified here." +msgstr "" +"Eğer bir teşebbüs burada belirlenmiş boyuttan daha çok bellek kaplayacak bir " +"görüntü oluşturmaya çalışırsa, GIMP kullanıcıyı uyaracak." + +#: ../app/config/gimprc-blurbs.h:185 +msgid "When enabled, GIMP will show mnemonics in menus." +msgstr "" +"Etkin olduğunda, GIMP menüler içinde anımsama yöntemlerini gösterecek." + +#: ../app/config/gimprc-blurbs.h:188 +msgid "" +"Generally only a concern for 8-bit displays, this sets the minimum number of " +"system colors allocated for GIMP." +msgstr "" +"Genellikle sadece 8-ikil görüntülemeler için bir ilişkisi vardır, bu GIMP " +"için sistemde tahsis edilmiş renklerin asgari sayısını ayarlar." + +#: ../app/config/gimprc-blurbs.h:198 +msgid "" +"Sets the monitor's horizontal resolution, in dots per inch. If set to 0, " +"forces the X server to be queried for both horizontal and vertical " +"resolution information." +msgstr "" +"Monitörün yatay çözünürlüğünü inç başına nokta cinsinden ayarlar. Eğer 0 " +"ayarlanırsa, X sunucusunun her iki yatay ve dikey çözünürlük bilgisini " +"sorgulanması için zorlayacak." + +#: ../app/config/gimprc-blurbs.h:203 +msgid "" +"Sets the monitor's vertical resolution, in dots per inch. If set to 0, " +"forces the X server to be queried for both horizontal and vertical " +"resolution information." +msgstr "" +"Monitörün dikey çözünürlüğünü inç başına nokta cinsinden ayarlar. Eğer 0 " +"ayarlanırsa, X sunucusunun her iki yatay ve dikey çözünürlük bilgisini " +"sorgulanması için zorlayacak." + +#: ../app/config/gimprc-blurbs.h:208 +msgid "" +"If enabled, the move tool sets the edited layer or path as active. This " +"used to be the default behaviour in older versions." +msgstr "" +"Seçili olduğunda, taşıma aracı katman ya da yolu etkin olacak şekilde " +"ayarlar. Bu eski sürümlerde öntanımlı davranış olarak kullanılır." + +#: ../app/config/gimprc-blurbs.h:212 +msgid "" +"Sets the size of the navigation preview available in the lower right corner " +"of the image window." +msgstr "" +"Dolaşma önizlemesi boyutunu görüntü penceresinin sağ alt köşesinde " +"kullanılabilir olarak ayarlar." + +#: ../app/config/gimprc-blurbs.h:216 +msgid "Sets how many processors GIMP should try to use simultaneously." +msgstr "" +"GIMP'in eş zamanlı olarak kaç tane işlemci kullanmayı deneyeceğini ayarlar." + +#: ../app/config/gimprc-blurbs.h:229 +msgid "" +"When enabled, the X server is queried for the mouse's current position on " +"each motion event, rather than relying on the position hint. This means " +"painting with large brushes should be more accurate, but it may be slower. " +"Perversely, on some X servers enabling this option results in faster " +"painting." +msgstr "" +"Etkin olduğunda, X sunucusu her hareketli olayda, konum ipucuna dayanmaktan " +"ziyade farenin mevcut konumu için sorgulanacak. Bunun anlamı, geniş " +"fırçalarla boyama daha eksiksiz olacak, ama yavaş olabilir. Aksilikle, bazı " +"X sunucuları üzerinde bu seçeneği etkinleştirmek daha hızlı boyama ile " +"sonuçlanır." + +#: ../app/config/gimprc-blurbs.h:245 +msgid "" +"Sets whether GIMP should create previews of layers and channels. Previews in " +"the layers and channels dialog are nice to have but they can slow things " +"down when working with large images." +msgstr "" +"GIMP'in katmanların ve kanalların önizlemelerini oluşturup oluşturmayacağı. " +"Katmanlar ve kanallar kutusu içindeki önizlemelerin olması güzel ama geniş " +"görüntüler ile çalışırken nesneleri yavaşlatabilir." + +#: ../app/config/gimprc-blurbs.h:250 +msgid "" +"Sets the preview size used for layers and channel previews in newly created " +"dialogs." +msgstr "" +"Katmanların ve kanalların önizleme boyutları için kullanılacak yeni " +"oluşturulmuş iletişim kutularının önizlemelerini ayarlar." + +#: ../app/config/gimprc-blurbs.h:254 +msgid "" +"When enabled, the image window will automatically resize itself whenever the " +"physical image size changes." +msgstr "" +"Etkin olduğunda, görüntü penceresi her ne zaman fiziksel görüntü boyutu " +"değişirse otomatik olarak kendini yeniden boyutlandıracaktır." + +#: ../app/config/gimprc-blurbs.h:258 +msgid "" +"When enabled, the image window will automatically resize itself when zooming " +"into and out of images." +msgstr "" +"Etkin olduğunda, görüntü penceresi görüntülere yaklaştırıldığında ve " +"uzaklaştırıldığında otomatik olarak kendini yeniden boyutlandıracaktır." + +#: ../app/config/gimprc-blurbs.h:262 +msgid "Let GIMP try to restore your last saved session on each startup." +msgstr "" +"Her başlangıçta kaydedilmiş son oturumunuzu geri yüklemesini denemek için " +"GIMP'e izin verin." + +#: ../app/config/gimprc-blurbs.h:265 +msgid "" +"Remember the current tool, pattern, color, and brush across GIMP sessions." +msgstr "" +"GIMP oturumları arasında mevcut aracı, deseni, rengi ve fırçayı hatırla." + +#: ../app/config/gimprc-blurbs.h:269 +msgid "" +"Keep a permanent record of all opened and saved files in the Recent " +"Documents list." +msgstr "" +"Son Belgeler listesinde tüm açılmış ve kaydedilmiş dosyaların kalıcı bir " +"kaydını tut." + +#: ../app/config/gimprc-blurbs.h:273 +msgid "Save the positions and sizes of the main dialogs when GIMP exits." +msgstr "" +"GIMP'ten çıkılırken, ana kutuların konumlarını ve boyutlarını kaydet." + +#: ../app/config/gimprc-blurbs.h:276 +msgid "Save the tool options when GIMP exits." +msgstr "GIMP'ten çıkılırken, araç seçeneklerini kaydet." + +#: ../app/config/gimprc-blurbs.h:282 +msgid "" +"When enabled, all paint tools will show a preview of the current brush's " +"outline." +msgstr "" +"Etkin olduğunda, tüm boyama araçları mevcut fırça çerçevesinin bir " +"önizlemesini gösterecek." + +#: ../app/config/gimprc-blurbs.h:286 +msgid "" +"When enabled, dialogs will show a help button that gives access to the " +"related help page. Without this button, the help page can still be reached " +"by pressing F1." +msgstr "" +"Etkin olduğunda, iletişim kutuları ilgili sayfanın yardımına girebilmek için " +"bir yardım butonu gösterecek. Bu buton olmadan, bu yardım sayfasına F1'e " +"basılarak erişilebilir." + +#: ../app/config/gimprc-blurbs.h:291 +msgid "" +"When enabled, the mouse pointer will be shown over the image while using a " +"paint tool." +msgstr "" +"Etkin olduğunda, bir boyama aracı kullanıldığında fare imleci görüntü " +"üzerinde gösterilecek." + +#: ../app/config/gimprc-blurbs.h:295 +msgid "" +"When enabled, the menubar is visible by default. This can also be toggled " +"with the \"View->Show Menubar\" command." +msgstr "" +"Etkin olduğunda, menü çubuğu öntanımlı olarak görünür olacak. Bu, \"Görünüm-" +">Menü Çubuğunu Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:299 +msgid "" +"When enabled, the rulers are visible by default. This can also be toggled " +"with the \"View->Show Rulers\" command." +msgstr "" +"Etkin olduğunda, cetveller öntanımlı olarak görünür olacak. Bu, \"Görünüm-" +">Cetvelleri Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:303 +msgid "" +"When enabled, the scrollbars are visible by default. This can also be " +"toggled with the \"View->Show Scrollbars\" command." +msgstr "" +"Etkin olduğunda, kaydırma çubukları öntanımlı olarak görünür olacak. Bu, " +"\"Görünüm->Kaydırma Çubuklarını Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:307 +msgid "" +"When enabled, the statusbar is visible by default. This can also be toggled " +"with the \"View->Show Statusbar\" command." +msgstr "" +"Etkin olduğunda, durum çubuğu öntanımlı olarak görünür olacak. Bu, \"Görünüm-" +">Durum Çubuğunu Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:311 +msgid "" +"When enabled, the selection is visible by default. This can also be toggled " +"with the \"View->Show Selection\" command." +msgstr "" +"Etkin olduğunda, seçim öntanımlı olarak görünür olacak. Bu, \"Görünüm-" +">Seçimi Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:315 +msgid "" +"When enabled, the layer boundary is visible by default. This can also be " +"toggled with the \"View->Show Layer Boundary\" command." +msgstr "" +"Etkin olduğunda, katman sınırı öntanımlı olarak görünür olacak. Bu, " +"\"Görünüm->Katman Sınırını Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:319 +msgid "" +"When enabled, the guides are visible by default. This can also be toggled " +"with the \"View->Show Guides\" command." +msgstr "" +"Etkin olduğunda, kılavuzlar öntanımlı olarak görünür olacak. Bu, \"Görünüm-" +">Kılavuzları Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:323 +msgid "" +"When enabled, the grid is visible by default. This can also be toggled with " +"the \"View->Show Grid\" command." +msgstr "" +"Eğer etkinleştirilirse kılavuz çizgileri görüntülenir. Bu işlem aynı zamanda " +"\"Görüntüle - Kılavuzu Göster\" komutuyla da yapılabilir." + +#: ../app/config/gimprc-blurbs.h:327 +msgid "" +"When enabled, the sample points are visible by default. This can also be " +"toggled with the \"View->Show Sample Points\" command." +msgstr "" +"Etkin olduğunda, örnek noktalar öntanımlı olarak görünür olacak. Bu, " +"\"Görünüm->Örnek Noktaları Göster\" komutuyla da değiştirilebilir." + +#: ../app/config/gimprc-blurbs.h:331 +msgid "Show a tooltip when the pointer hovers over an item." +msgstr "İmleç bir öğe üzerinde durduğunda, bir araç ipucu göster." + +#: ../app/config/gimprc-blurbs.h:334 +msgid "What to do when the space bar is pressed in the image window." +msgstr "" +"Bir görüntü penceresi içinde ara çubuğuna basıldığında ne yapılacağı." + +#: ../app/config/gimprc-blurbs.h:337 +msgid "" +"Sets the swap file location. GIMP uses a tile based memory allocation " +"scheme. The swap file is used to quickly and easily swap tiles out to disk " +"and back in. Be aware that the swap file can easily get very large if GIMP " +"is used with large images. Also, things can get horribly slow if the swap " +"file is created on a folder that is mounted over NFS. For these reasons, it " +"may be desirable to put your swap file in \"/tmp\"." +msgstr "" +"Takas dosyası konumunu ayarlar. GIMP döşeme temelli bir bellek dağıtım " +"şeması kullanır. Takas dosyaları, döşemeleri çabuk ve kolayca disk dışına " +"takas etme ve geri almak için kullanılır. Eğer GIMP büyük görüntülerle " +"çalışırsa takas dosyalarının çabucak büyüyebileceğini unutmayın. Ayrıca " +"takas dosyası NFS üzerinde bir dizin oluşturursa bazı şeyler korkunç biçimde " +"yavaşlayabilir. Bu sebeplerden dolayı, takas dosyanızı \"/tmp\" içine koymak " +"daha iyi olabilir." + +#: ../app/config/gimprc-blurbs.h:346 +msgid "When enabled, menus can be torn off." +msgstr "Etkin olduğunda, menüler kapatılabilir." + +#: ../app/config/gimprc-blurbs.h:349 +msgid "" +"When enabled, dock windows (the toolbox and palettes) are set to be " +"transient to the active image window. Most window managers will keep the " +"dock windows above the image window then, but it may also have other effects." +msgstr "" +"Etkin olduğunda, rıhtım pencereleri (araç çubukları ve paletler) kullanılan " +"görüntü penceresi için geçici olarak ayarlı olacak. Çoğu pencere " +"yöneticileri rıhtım pencerelerini görüntü penceresinin altında tutacaktır, " +"ama bunun başka etkileri de olabilir." + +#: ../app/config/gimprc-blurbs.h:355 +msgid "" +"When enabled, you can change keyboard shortcuts for menu items by hitting a " +"key combination while the menu item is highlighted." +msgstr "" +"Etkin olduğunda, menü öğeleri için klavye kısayollarını, menü öğesi " +"aydınlatılmış olduğunda bir tuş birleşimi ile değiştirebilirsiniz." + +#: ../app/config/gimprc-blurbs.h:359 +msgid "Save changed keyboard shortcuts when GIMP exits." +msgstr "GIMP'ten çıkıldığında, değiştirilmiş klavye kısayollarını kaydet." + +#: ../app/config/gimprc-blurbs.h:362 +msgid "Restore saved keyboard shortcuts on each GIMP startup." +msgstr "Her GIMP başladığında kaydedilmiş klavye kısayollarını geri yükle." + +#: ../app/config/gimprc-blurbs.h:365 +msgid "" +"Sets the folder for temporary storage. Files will appear here during the " +"course of running GIMP. Most files will disappear when GIMP exits, but some " +"files are likely to remain, so it is best if this folder not be one that is " +"shared by other users." +msgstr "" +"Geçici depolama için dizin ayarlar. GIMP'in çalışması esnasında dosyalar " +"burada görülecek. Çoğu dosya GIMP'ten çıkıldığında kaybolacak, ama bazı " +"dosyalar muhtemelen duracak, bu yüzden en iyisi bu dizini diğer " +"kullanıcılarla paylaşmamak." + +#: ../app/config/gimprc-blurbs.h:377 +msgid "Sets the size of the thumbnail shown in the Open dialog." +msgstr "Açılış kutusunda gösterilecek küçük görüntü boyutunu ayarlar." + +#: ../app/config/gimprc-blurbs.h:380 +msgid "" +"The thumbnail in the Open dialog will be automatically updated if the file " +"being previewed is smaller than the size set here." +msgstr "" +"Eğer dosya önizlemesi burada ayarlanan boyuttan daha küçükse, Açılış " +"kutusundaki küçük görüntü otomatik olarak güncelleştirilecek." + +#: ../app/config/gimprc-blurbs.h:384 +msgid "" +"When the amount of pixel data exceeds this limit, GIMP will start to swap " +"tiles to disk. This is a lot slower but it makes it possible to work on " +"images that wouldn't fit into memory otherwise. If you have a lot of RAM, " +"you may want to set this to a higher value." +msgstr "" +"Benek verisi miktarı bu sınırı aşarsa, GIMP takas dosyasını diske yazmaya " +"başlayacak. Bu çok daha yavaştır, ama başka yolla belleğe uymayan " +"görüntülerde çalışılmasını mümkün kılar. Çok fazla rastgele erişimli " +"belleğiniz varsa, bu değeri daha yüksek olarak ayarlamak isteyebilirsiniz." + +#: ../app/config/gimprc-blurbs.h:390 +msgid "Show the current foreground and background colors in the toolbox." +msgstr "Mevcut önalan ve artalan renklerini araç kutusu içinde göster." + +#: ../app/config/gimprc-blurbs.h:393 +msgid "" +"Show the currently selected brush, pattern and gradient in the toolbox." +msgstr "" +"Mevcut seçilmiş fırçayı, deseni ve renk geçişini araç kutusu içinde göster." + +#: ../app/config/gimprc-blurbs.h:396 +msgid "Show the currently active image in the toolbox." +msgstr "Mevcut etkin görüntüyü araç kutusu içinde göster." + +#: ../app/config/gimprc-blurbs.h:402 +msgid "" +"The window type hint that is set on the toolbox. This may affect how your " +"window manager decorates and handles the toolbox window." +msgstr "" +"Araç kutusu üzerinde ayarlı pencere türü ipucudur. Bu, pencere yöneticisinin " +"araç kutusu penceresini nasıl ele alacağına ve süsleyeceğine etki edebilir." + +#: ../app/config/gimprc-blurbs.h:406 +msgid "Sets the manner in which transparency is displayed in images." +msgstr "Görüntülerde gösterilecek saydamlığın davranışını ayarlar." + +#: ../app/config/gimprc-blurbs.h:409 +msgid "Sets the size of the checkerboard used to display transparency." +msgstr "" +"Saydamlığı görüntülemek için kullanılan dama tahtasının boyutunu ayarlar." + +#: ../app/config/gimprc-blurbs.h:412 +msgid "" +"When enabled, GIMP will not save an image if it has not been changed since " +"it was opened." +msgstr "" +"Etkin olduğunda, eğer bir görüntü açıldıktan sonra değiştirilmemişse GIMP " +"bunu bunu kaydetmeyecek." + +#: ../app/config/gimprc-blurbs.h:416 +msgid "" +"Sets the minimal number of operations that can be undone. More undo levels " +"are kept available until the undo-size limit is reached." +msgstr "" +"Geri alınabilir işlemlerin asgari sayısını ayarlar. Daha çok geri alma " +"düzeyi, yapılmama-boyutu sınırına ulaşılana kadar kullanılabilir olarak " +"tutulur." + +#: ../app/config/gimprc-blurbs.h:420 +msgid "" +"Sets an upper limit to the memory that is used per image to keep operations " +"on the undo stack. Regardless of this setting, at least as many undo-levels " +"as configured can be undone." +msgstr "" +"Geri alma işlemleri için ayrılan belleğe üst limit belirleyin. Bu limitin " +"dikkatsizce belirlenmesi sonucunda değişiklikler geri alınamaz hale " +"gelebilir." + +#: ../app/config/gimprc-blurbs.h:425 +msgid "Sets the size of the previews in the Undo History." +msgstr "Geri Alma Geçmişindeki önizlemelerin boyutlarını ayarlar." + +#: ../app/config/gimprc-blurbs.h:428 +msgid "When enabled, pressing F1 will open the help browser." +msgstr "Etkin olduğunda, F1'e basmak yardım tarayıcısını açacak." + +#: ../app/config/gimprc-blurbs.h:439 +#, c-format +msgid "" +"Sets the external web browser to be used. This can be an absolute path or " +"the name of an executable to search for in the user's PATH. If the command " +"contains '%s' it will be replaced with the URL, else the URL will be " +"appended to the command with a space separating the two." +msgstr "" +"Kullanılacak harici web tarayıcıyı ayarlar. Bu, kullanıcının PATH'ında " +"aramak için, kesin bir yol veya yürütülebilir bir ad olabilir. Eğer komut " +"'%s' i içerirse, bu URL ile yer değiştirecek, aksi taktirde URL, iki boşluk " +"ayırıcı ile komuta eklenecektir." + +#: ../app/config/gimprc-deserialize.c:135 ../app/core/gimp-modules.c:134 +#: ../app/core/gimp-units.c:164 ../app/gui/session.c:206 +#: ../app/plug-in/plug-in-rc.c:213 +msgid "fatal parse error" +msgstr "ölümcül ayrıştırma hatası" + +#: ../app/config/gimprc-deserialize.c:163 +#, c-format +msgid "value for token %s is not a valid UTF-8 string" +msgstr "%s anahtarına verilen değer geçerli bir UTF-8 dizgesi değil" + +#. no undo (or redo) steps available +#: ../app/core/core-enums.c:53 ../app/core/core-enums.c:252 +#: ../app/core/core-enums.c:504 ../app/paint/paint-enums.c:81 +#: ../app/widgets/gimpimagepropview.c:416 +msgid "None" +msgstr "Yok" + +#: ../app/core/core-enums.c:54 +msgid "Floyd-Steinberg (normal)" +msgstr "Floyd-Steinberg (normal)" + +#: ../app/core/core-enums.c:55 +msgid "Floyd-Steinberg (reduced color bleeding)" +msgstr "Floyd-Steinberg (azaltılmış renk akması)" + +#: ../app/core/core-enums.c:56 +msgid "Positioned" +msgstr "Konumlandırılmış" + +#: ../app/core/core-enums.c:85 +msgid "Generate optimum palette" +msgstr "En iyi paleti üret" + +#: ../app/core/core-enums.c:86 +msgid "Use web-optimized palette" +msgstr "Ağ-ayarlı paleti kullan" + +#: ../app/core/core-enums.c:87 +msgid "Use black and white (1-bit) palette" +msgstr "Siyah ve beyaz (1-ikil) paleti kullan" + +#: ../app/core/core-enums.c:88 +msgid "Use custom palette" +msgstr "Özel palet kullan" + +#: ../app/core/core-enums.c:211 +msgid "First item" +msgstr "İlk öğe" + +#: ../app/core/core-enums.c:213 ../app/dialogs/dialogs.c:198 +#: ../app/tools/tools-enums.c:210 +msgid "Selection" +msgstr "Seçim" + +#: ../app/core/core-enums.c:214 +msgid "Active layer" +msgstr "Etkin katman" + +#: ../app/core/core-enums.c:215 +msgid "Active channel" +msgstr "Etkin kanal" + +#: ../app/core/core-enums.c:216 +msgid "Active path" +msgstr "Etkin yol" + +#: ../app/core/core-enums.c:247 +msgid "Foreground color" +msgstr "Önplan rengi" + +#: ../app/core/core-enums.c:248 +msgid "Background color" +msgstr "Arkaplan rengi" + +#: ../app/core/core-enums.c:249 +msgid "White" +msgstr "Beyaz" + +#. Transparency +#: ../app/core/core-enums.c:250 ../app/dialogs/preferences-dialog.c:2311 +msgid "Transparency" +msgstr "Şeffaflık" + +#: ../app/core/core-enums.c:251 ../app/core/core-enums.c:308 +msgid "Pattern" +msgstr "Desen" + +#: ../app/core/core-enums.c:279 +msgid "Stroke line" +msgstr "Darbeleme satırı" + +#: ../app/core/core-enums.c:280 +msgid "Stroke with a paint tool" +msgstr "Bir boyama aracı ile darbele" + +#: ../app/core/core-enums.c:307 +msgid "Solid color" +msgstr "Kesiksiz renk" + +#: ../app/core/core-enums.c:336 +msgid "Miter" +msgstr "Köşe" + +#: ../app/core/core-enums.c:337 ../app/core/core-enums.c:367 +msgid "Round" +msgstr "Yuvarla" + +#: ../app/core/core-enums.c:338 +msgid "Bevel" +msgstr "Kabarıklık" + +#: ../app/core/core-enums.c:366 +msgid "Butt" +msgstr "Buton" + +#: ../app/core/core-enums.c:368 ../app/core/core-enums.c:443 +msgid "Square" +msgstr "Kare" + +#: ../app/core/core-enums.c:404 +msgid "Custom" +msgstr "Özel" + +#: ../app/core/core-enums.c:405 +msgid "Line" +msgstr "Satır" + +#: ../app/core/core-enums.c:406 +msgid "Long dashes" +msgstr "Uzun çizgiler" + +#: ../app/core/core-enums.c:407 +msgid "Medium dashes" +msgstr "Orta çizgiler" + +#: ../app/core/core-enums.c:408 +msgid "Short dashes" +msgstr "Kısa çizgiler" + +#: ../app/core/core-enums.c:409 +msgid "Sparse dots" +msgstr "Dağınık noktalar" + +#: ../app/core/core-enums.c:410 +msgid "Normal dots" +msgstr "Normal noktalar" + +#: ../app/core/core-enums.c:411 +msgid "Dense dots" +msgstr "Sık noktalar" + +#: ../app/core/core-enums.c:412 +msgid "Stipples" +msgstr "Nokta çizimler" + +#: ../app/core/core-enums.c:413 +msgid "Dash, dot" +msgstr "Çizgi, nokta" + +#: ../app/core/core-enums.c:414 +msgid "Dash, dot, dot" +msgstr "Çizgi, nokta, nokta" + +#: ../app/core/core-enums.c:442 +msgid "Circle" +msgstr "Çember" + +#: ../app/core/core-enums.c:444 +msgid "Diamond" +msgstr "Elmas" + +#: ../app/core/core-enums.c:472 ../app/dialogs/preferences-dialog.c:2343 +msgid "Horizontal" +msgstr "Yatay" + +#: ../app/core/core-enums.c:473 ../app/dialogs/preferences-dialog.c:2345 +msgid "Vertical" +msgstr "Dikey" + +#: ../app/core/core-enums.c:474 +msgid "Unknown" +msgstr "Bilinmeyen" + +#: ../app/core/core-enums.c:505 +msgid "All layers" +msgstr "Bütün katmanlar" + +#: ../app/core/core-enums.c:506 +msgid "Image-sized layers" +msgstr "Görüntü-boyutlu katmanlar" + +#: ../app/core/core-enums.c:507 +msgid "All visible layers" +msgstr "Bütün görünür katmanlar" + +#: ../app/core/core-enums.c:508 +msgid "All linked layers" +msgstr "Bütün bağlanmış katmanlar" + +#: ../app/core/core-enums.c:572 +msgid "Tiny" +msgstr "Küçük" + +#: ../app/core/core-enums.c:573 +msgid "Very small" +msgstr "Çok küçük" + +#: ../app/core/core-enums.c:574 +msgid "Small" +msgstr "Ufak" + +#: ../app/core/core-enums.c:575 +msgid "Medium" +msgstr "Orta" + +#: ../app/core/core-enums.c:576 +msgid "Large" +msgstr "Büyük" + +#: ../app/core/core-enums.c:577 +msgid "Very large" +msgstr "Çok büyük" + +#: ../app/core/core-enums.c:578 +msgid "Huge" +msgstr "Kocaman" + +#: ../app/core/core-enums.c:579 +msgid "Enormous" +msgstr "Dev gibi" + +#: ../app/core/core-enums.c:580 +msgid "Gigantic" +msgstr "Dev gibi" + +#: ../app/core/core-enums.c:607 +msgid "View as list" +msgstr "Liste olarak göster" + +#: ../app/core/core-enums.c:608 +msgid "View as grid" +msgstr "Izgara olarak görüntüle" + +#: ../app/core/core-enums.c:672 +msgid "No thumbnails" +msgstr "Küçük resim yok" + +#: ../app/core/core-enums.c:673 +msgid "Normal (128x128)" +msgstr "Normal (128x128)" + +#: ../app/core/core-enums.c:674 +msgid "Large (256x256)" +msgstr "Büyük (256x256)" + +#: ../app/core/core-enums.c:850 +msgid "<>" +msgstr "<>" + +#: ../app/core/core-enums.c:851 +msgid "Scale image" +msgstr "Resmi ölçekle" + +#: ../app/core/core-enums.c:852 +msgid "Resize image" +msgstr "Resim boyutunu değiştir" + +#: ../app/core/core-enums.c:853 +msgid "Flip image" +msgstr "Görüntüyü çevir" + +#: ../app/core/core-enums.c:854 +msgid "Rotate image" +msgstr "Resmi Döndür" + +#: ../app/core/core-enums.c:855 +msgid "Crop image" +msgstr "Resmi kırp" + +#: ../app/core/core-enums.c:856 +msgid "Convert image" +msgstr "Resmi dönüştür" + +#: ../app/core/core-enums.c:857 +msgid "Remove item" +msgstr "Öğeyi sil" + +#: ../app/core/core-enums.c:858 +msgid "Merge layers" +msgstr "Katmanları birleştir" + +#: ../app/core/core-enums.c:859 +msgid "Merge paths" +msgstr "Yolları birleştir" + +#: ../app/core/core-enums.c:861 ../app/core/core-enums.c:892 +#: ../app/core/gimpimage-grid.c:58 ../app/dialogs/grid-dialog.c:152 +#: ../app/tools/tools-enums.c:241 +msgid "Grid" +msgstr "Kılavuz" + +#: ../app/core/core-enums.c:862 ../app/core/core-enums.c:894 +msgid "Guide" +msgstr "Rehber" + +#: ../app/core/core-enums.c:863 ../app/core/core-enums.c:895 +msgid "Sample Point" +msgstr "Örnek Nokta" + +#: ../app/core/core-enums.c:864 ../app/core/core-enums.c:896 +msgid "Layer/Channel" +msgstr "Katman/Kanal" + +#: ../app/core/core-enums.c:865 ../app/core/core-enums.c:897 +msgid "Layer/Channel modification" +msgstr "Katman/Kanal değişikliği" + +#: ../app/core/core-enums.c:866 ../app/core/core-enums.c:898 +msgid "Selection mask" +msgstr "Seçim maskesi" + +#: ../app/core/core-enums.c:867 ../app/core/core-enums.c:901 +msgid "Item visibility" +msgstr "Öğe görünürlüğü" + +#: ../app/core/core-enums.c:868 ../app/core/core-enums.c:902 +msgid "Link/Unlink item" +msgstr "Bağlı/Bağsız öğe" + +#: ../app/core/core-enums.c:869 +msgid "Item properties" +msgstr "Öğe özellikleri" + +#: ../app/core/core-enums.c:870 ../app/core/core-enums.c:900 +msgid "Move item" +msgstr "Öğeyi taşı" + +#: ../app/core/core-enums.c:871 +msgid "Scale item" +msgstr "Öğeyi ölçekle" + +#: ../app/core/core-enums.c:872 +msgid "Resize item" +msgstr "Öğeyi yeniden boyutlandır" + +#: ../app/core/core-enums.c:873 +msgid "Add layer" +msgstr "Katman ekle" + +#: ../app/core/core-enums.c:874 ../app/core/core-enums.c:911 +msgid "Add layer mask" +msgstr "Katman maskesi ekle" + +#: ../app/core/core-enums.c:875 ../app/core/core-enums.c:913 +msgid "Apply layer mask" +msgstr "Katman maskesini uygula" + +#: ../app/core/core-enums.c:876 ../app/core/core-enums.c:923 +msgid "Floating selection to layer" +msgstr "Katman için yüzdürme seçimi" + +#: ../app/core/core-enums.c:877 +msgid "Float selection" +msgstr "Yüzdürme seçimi" + +#: ../app/core/core-enums.c:878 +msgid "Anchor floating selection" +msgstr "Yüzen seçimi çıpala" + +#: ../app/core/core-enums.c:879 +msgid "Remove floating selection" +msgstr "Yüzdürme seçimini kaldır" + +#: ../app/core/core-enums.c:880 ../app/core/gimp-edit.c:262 +msgid "Paste" +msgstr "Yapıştır" + +#: ../app/core/core-enums.c:881 ../app/core/gimp-edit.c:557 +msgid "Cut" +msgstr "Kes" + +#: ../app/core/core-enums.c:882 ../app/tools/gimptexttool.c:161 +#: ../app/widgets/widgets-enums.c:265 +msgid "Text" +msgstr "Metin" + +#: ../app/core/core-enums.c:883 ../app/core/core-enums.c:926 +#: ../app/core/gimpdrawable-transform.c:567 +msgid "Transform" +msgstr "Dönüştür" + +#: ../app/core/core-enums.c:884 ../app/core/core-enums.c:927 +#: ../app/paint/gimppaintcore.c:137 +msgid "Paint" +msgstr "Boya" + +#: ../app/core/core-enums.c:885 ../app/core/core-enums.c:930 +msgid "Attach parasite" +msgstr "Parazit tuttur" + +#: ../app/core/core-enums.c:886 ../app/core/core-enums.c:931 +msgid "Remove parasite" +msgstr "Paraziti kaldır" + +#: ../app/core/core-enums.c:887 +msgid "Import paths" +msgstr "Yolları içe aktar" + +#: ../app/core/core-enums.c:888 ../app/pdb/drawable-cmds.c:885 +msgid "Plug-In" +msgstr "Eklentiler" + +#: ../app/core/core-enums.c:889 +msgid "Image type" +msgstr "Görüntü türü" + +#: ../app/core/core-enums.c:890 +msgid "Image size" +msgstr "Görüntü boyutu" + +#: ../app/core/core-enums.c:891 +msgid "Image resolution change" +msgstr "Görüntü çözünürlüğü değiştirme" + +#: ../app/core/core-enums.c:893 +msgid "Change indexed palette" +msgstr "Sıralanmış paleti değiştir" + +#: ../app/core/core-enums.c:899 +msgid "Rename item" +msgstr "Öğeyi yeniden adlandır" + +#: ../app/core/core-enums.c:903 +msgid "New layer" +msgstr "Yeni katman" + +#: ../app/core/core-enums.c:904 +msgid "Delete layer" +msgstr "Katmanı sil" + +#: ../app/core/core-enums.c:905 +msgid "Reposition layer" +msgstr "Katmanı yeniden konumlandır" + +#: ../app/core/core-enums.c:906 +msgid "Set layer mode" +msgstr "Katman kipini ayarla" + +#: ../app/core/core-enums.c:907 +msgid "Set layer opacity" +msgstr "Katman ışık geçirmezliğini ayarla" + +#: ../app/core/core-enums.c:908 +msgid "Lock/Unlock alpha channel" +msgstr "Görünür kanalını Kilitle/Kilidini aç" + +#: ../app/core/core-enums.c:909 +msgid "Text layer" +msgstr "Metin katmanı" + +#: ../app/core/core-enums.c:910 +msgid "Text layer modification" +msgstr "Metin katmanı değişikliği" + +#: ../app/core/core-enums.c:912 +msgid "Delete layer mask" +msgstr "Katman maskesini sil" + +#: ../app/core/core-enums.c:914 +msgid "Show layer mask" +msgstr "Katman maskesini göster" + +#: ../app/core/core-enums.c:915 +msgid "New channel" +msgstr "Yeni kanal" + +#: ../app/core/core-enums.c:916 +msgid "Delete channel" +msgstr "Kanalı sil" + +#: ../app/core/core-enums.c:917 +msgid "Reposition channel" +msgstr "Kanalı yeniden konumlandır" + +#: ../app/core/core-enums.c:918 +msgid "Channel color" +msgstr "Kanal rengi" + +#: ../app/core/core-enums.c:919 +msgid "New path" +msgstr "Yeni yol" + +#: ../app/core/core-enums.c:921 +msgid "Path modification" +msgstr "Yol değişikliği" + +#: ../app/core/core-enums.c:922 +msgid "Reposition path" +msgstr "Yolu yeniden konumlandır" + +#: ../app/core/core-enums.c:924 +msgid "Rigor floating selection" +msgstr "Özenli hareketli seçim" + +#: ../app/core/core-enums.c:925 +msgid "Relax floating selection" +msgstr "Gevşek hareketli seçim" + +#: ../app/core/core-enums.c:928 ../app/paint/gimpink.c:95 +#: ../app/tools/gimpinktool.c:55 +msgid "Ink" +msgstr "Mürekkep" + +#: ../app/core/core-enums.c:929 +msgid "Select foreground" +msgstr "Önalanı seç" + +#: ../app/core/core-enums.c:932 +msgid "Not undoable" +msgstr "Geri alınabilir değil" + +#: ../app/core/core-enums.c:1196 +msgid "Composite" +msgstr "Birleşik" + +#: ../app/core/core-enums.c:1230 +msgid "Message" +msgstr "İleti" + +#: ../app/core/core-enums.c:1231 +msgid "Warning" +msgstr "Uyarı" + +#: ../app/core/core-enums.c:1232 +msgid "Error" +msgstr "Hata" + +#: ../app/core/core-enums.c:1260 +msgid "Ask what to do" +msgstr "Ne yapılacağını sor" + +#: ../app/core/core-enums.c:1261 +msgid "Keep embedded profile" +msgstr "Gömülü profili sakla" + +#: ../app/core/core-enums.c:1262 +msgid "Convert to RGB workspace" +msgstr "Çalışma alanını RGB'ye dönüştür" + +#: ../app/core/gimp-contexts.c:155 ../app/core/gimptooloptions.c:231 +#: ../app/gui/session.c:307 ../app/menus/menus.c:433 +#: ../app/widgets/gimpdevices.c:258 +#, c-format +msgid "Deleting \"%s\" failed: %s" +msgstr "\"%s\" silme başarısız oldu: %s" + +#: ../app/core/gimp-edit.c:190 ../app/core/gimp-edit.c:326 +msgid "Pasted Layer" +msgstr "Yapıştırılan Katman" + +#: ../app/core/gimp-edit.c:464 +msgid "Fill with Foreground Color" +msgstr "Önalan Rengi ile Doldur" + +#: ../app/core/gimp-edit.c:468 +msgid "Fill with Background Color" +msgstr "Artalan Rengi ile Doldur" + +#: ../app/core/gimp-edit.c:472 +msgid "Fill with White" +msgstr "Beyaz ile Doldur" + +#: ../app/core/gimp-edit.c:476 +msgid "Fill with Transparency" +msgstr "Şeffaf doldur" + +#: ../app/core/gimp-edit.c:480 +msgid "Fill with Pattern" +msgstr "Desen ile Doldur" + +#: ../app/core/gimp-edit.c:573 +msgid "Global Buffer" +msgstr "Genel Arabellek" + +#: ../app/core/gimp-gradients.c:61 +msgid "FG to BG (RGB)" +msgstr "Önplandan Arkaplana (RGB)" + +#: ../app/core/gimp-gradients.c:66 +msgid "FG to BG (HSV counter-clockwise)" +msgstr "ÖA'dan AA'ya (HSV saat yönünün tersi)" + +#: ../app/core/gimp-gradients.c:71 +msgid "FG to BG (HSV clockwise hue)" +msgstr "ÖA'dan AA'ya (HSV saat yönünde renk özü)" + +#: ../app/core/gimp-gradients.c:76 +msgid "FG to Transparent" +msgstr "Önplandan Şeffafa" + +#: ../app/core/gimp-user-install.c:153 +#, c-format +msgid "" +"It seems you have used GIMP %s before. GIMP will now migrate your user " +"settings to '%s'." +msgstr "" +"GIMP %s daha önce kullanmış görünüyorsunuz. GIMP şimdi kullanıcı " +"ayarlarınızı '%s'a aktaracak." + +#: ../app/core/gimp-user-install.c:158 +#, c-format +msgid "" +"It appears that you are using GIMP for the first time. GIMP will now create " +"a folder named '%s' and copy some files to it." +msgstr "" +"GIMP'i ilk kez kullanıyor görünüyorsunuz. GIMP şimdi '%s' adında yeni bir " +"dizin oluşturacak ve bazı dosyaları içine kopyalayacak." + +#: ../app/core/gimp-user-install.c:309 +#, c-format +msgid "Copying file '%s' from '%s'..." +msgstr "'%s' dosyası '%s'dan kopyalanıyor..." + +#: ../app/core/gimp-user-install.c:324 ../app/core/gimp-user-install.c:350 +#, c-format +msgid "Creating folder '%s'..." +msgstr "'%s' dizini oluşturuluyor..." + +#: ../app/core/gimp-user-install.c:335 ../app/core/gimp-user-install.c:361 +#, c-format +msgid "Cannot create folder '%s': %s" +msgstr "'%s' dizini oluşturulamadı: %s" + +#: ../app/core/gimp.c:543 +msgid "Initialization" +msgstr "Başlangıç Durumuna Getirme" + +#. register all internal procedures +#: ../app/core/gimp.c:618 +msgid "Internal Procedures" +msgstr "İçsel İşlemler" + +#. initialize the global parasite table +#: ../app/core/gimp.c:834 +msgid "Looking for data files" +msgstr "Veri dosyaları taranıyor" + +#: ../app/core/gimp.c:834 +msgid "Parasites" +msgstr "Parazitler" + +#. initialize the list of fonts +#: ../app/core/gimp.c:854 +msgid "Fonts (this may take a while)" +msgstr "Yazıyüzleri (bu biraz zaman alabilir)" + +#. initialize the module list +#: ../app/core/gimp.c:863 ../app/dialogs/preferences-dialog.c:2772 +msgid "Modules" +msgstr "Modüller" + +#: ../app/core/gimpbrush-load.c:177 +#, c-format +msgid "Could not read %d bytes from '%s': %s" +msgstr "%d sekiz ikil '%s'dan okunamadı: %s" + +#: ../app/core/gimpbrush-load.c:197 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Genişlik = 0." + +#: ../app/core/gimpbrush-load.c:206 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Yükseklik = 0." + +#: ../app/core/gimpbrush-load.c:215 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Sekiz ikil = 0." + +#: ../app/core/gimpbrush-load.c:239 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown depth %d." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Bilinmeyen derinlik %d." + +#: ../app/core/gimpbrush-load.c:252 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown version %d." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Bilinmeyen sürüm %d." + +#: ../app/core/gimpbrush-load.c:268 ../app/core/gimpbrush-load.c:388 +#: ../app/core/gimpbrush-load.c:720 +#, c-format +msgid "Fatal parse error in brush file '%s': File appears truncated." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Dosya kesilmiş " +"görünüyor." + +#: ../app/core/gimpbrush-load.c:276 ../app/core/gimpbrushgenerated-load.c:128 +#: ../app/core/gimpbrushpipe-load.c:97 +#, c-format +msgid "Invalid UTF-8 string in brush file '%s'." +msgstr "'%s' fırça dosyası içinde geçersiz UTF-8 dizgisi." + +#: ../app/core/gimpbrush-load.c:283 ../app/core/gimpitem.c:505 +#: ../app/core/gimppattern-load.c:146 +#: ../app/dialogs/template-options-dialog.c:83 +#: ../app/tools/gimpvectortool.c:299 +msgid "Unnamed" +msgstr "Isimsiz" + +#: ../app/core/gimpbrush-load.c:377 +#, c-format +msgid "" +"Fatal parse error in brush file '%s': Unsupported brush depth %d\n" +"GIMP brushes must be GRAY or RGBA." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Desteklenmeyen fırça " +"derinliği %d\n" +"GIMP fırçaları GRİ ya da RGBA olmalı." + +#: ../app/core/gimpbrush-load.c:448 +#, c-format +msgid "" +"Fatal parse error in brush file '%s': unable to decode abr format version %d." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: abr biçimli %d sürüm " +"kod çözümü olanaksız." + +#: ../app/core/gimpbrush-load.c:615 +#, c-format +msgid "Fatal parse error in brush file '%s': Wide brushes are not supported." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Geniş fırçalar " +"desteklenmemiş." + +#: ../app/core/gimpbrushgenerated-load.c:87 +#, c-format +msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Bir GIMP fırçası " +"dosyası değil." + +#: ../app/core/gimpbrushgenerated-load.c:104 +#, c-format +msgid "" +"Fatal parse error in brush file '%s': Unknown GIMP brush version in line %d." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: %d satırında bilinmeyen " +"GIMP fırçası sürümü." + +#: ../app/core/gimpbrushgenerated-load.c:150 +#, c-format +msgid "" +"Fatal parse error in brush file '%s': Unknown GIMP brush shape in line %d." +msgstr "" +"'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: %d satırında bilinmeyen " +"GIMP fırçası şekli." + +#: ../app/core/gimpbrushgenerated-load.c:226 +#, c-format +msgid "Line %d: %s" +msgstr "Satır %d: %s" + +#: ../app/core/gimpbrushgenerated-load.c:228 +#, c-format +msgid "File is truncated in line %d" +msgstr "Dosya %d satırında kesilmiş" + +#: ../app/core/gimpbrushgenerated-load.c:231 +#, c-format +msgid "Error while reading brush file '%s': %s" +msgstr "'%s' fırça dosyasını okurken hata: %s" + +#: ../app/core/gimpbrushpipe-load.c:113 ../app/core/gimpbrushpipe-load.c:133 +#: ../app/core/gimpbrushpipe-load.c:223 +#, c-format +msgid "Fatal parse error in brush file '%s': File is corrupt." +msgstr "'%s' fırça dosyası içinde ölümcül ayrıştırma hatası: Dosya bozulmuş." + +#: ../app/core/gimpchannel-select.c:60 +msgctxt "command" +msgid "Rectangle Select" +msgstr "Dikdörtgen Seçimi" + +#: ../app/core/gimpchannel-select.c:111 +msgctxt "command" +msgid "Ellipse Select" +msgstr "Eliptik Seçim" + +#: ../app/core/gimpchannel-select.c:165 +msgctxt "command" +msgid "Rounded Rectangle Select" +msgstr "Yuvarlatılmış Dikdörtgen Seçimi" + +#: ../app/core/gimpchannel-select.c:434 +msgid "Alpha to Selection" +msgstr "Alfadan Seçime" + +#: ../app/core/gimpchannel-select.c:472 +#, c-format +msgid "%s Channel to Selection" +msgstr "%s Kanalından Seçime" + +#: ../app/core/gimpchannel-select.c:520 ../app/tools/gimpfuzzyselecttool.c:80 +msgctxt "command" +msgid "Fuzzy Select" +msgstr "Bulanık Seçim" + +#: ../app/core/gimpchannel-select.c:567 +#: ../app/tools/gimpbycolorselecttool.c:82 +msgctxt "command" +msgid "Select by Color" +msgstr "Renk ile Seç" + +#: ../app/core/gimpchannel.c:257 +msgid "Channel" +msgstr "Kanal" + +#: ../app/core/gimpchannel.c:258 +msgid "Rename Channel" +msgstr "Kanalı Yeniden Adlandır" + +#: ../app/core/gimpchannel.c:259 +msgid "Move Channel" +msgstr "Kanalı Taşı" + +#: ../app/core/gimpchannel.c:260 +msgid "Scale Channel" +msgstr "Kanalı Boyutlandır" + +#: ../app/core/gimpchannel.c:261 +msgid "Resize Channel" +msgstr "Kanalın Boyutunu Değiştir" + +#: ../app/core/gimpchannel.c:262 +msgid "Flip Channel" +msgstr "Kanalı Döndür" + +#: ../app/core/gimpchannel.c:263 +msgid "Rotate Channel" +msgstr "Kanalı Çevir" + +#: ../app/core/gimpchannel.c:264 ../app/core/gimpdrawable-transform.c:886 +msgid "Transform Channel" +msgstr "Kanalı Dönüştür" + +#: ../app/core/gimpchannel.c:265 +msgid "Stroke Channel" +msgstr "Kanalı Darbele" + +#: ../app/core/gimpchannel.c:286 +msgid "Feather Channel" +msgstr "Yumuşatma Kanalı" + +#: ../app/core/gimpchannel.c:287 +msgid "Sharpen Channel" +msgstr "Kanalı Keskinleştir" + +#: ../app/core/gimpchannel.c:288 +msgid "Clear Channel" +msgstr "Kanalı Temizle" + +#: ../app/core/gimpchannel.c:289 +msgid "Fill Channel" +msgstr "Kanalı Doldur" + +#: ../app/core/gimpchannel.c:290 +msgid "Invert Channel" +msgstr "Kanalı Ters Çevir" + +#: ../app/core/gimpchannel.c:291 +msgid "Border Channel" +msgstr "Kanalın Kenarlarını Tanımla" + +#: ../app/core/gimpchannel.c:292 +msgid "Grow Channel" +msgstr "Kanalı Büyüt" + +#: ../app/core/gimpchannel.c:293 +msgid "Shrink Channel" +msgstr "Kanalı Küçült" + +#: ../app/core/gimpchannel.c:710 +#, c-format +msgid "Cannot stroke empty channel." +msgstr "Boş kanal darbelenemedi." + +#: ../app/core/gimpchannel.c:1631 +msgid "Set Channel Color" +msgstr "Kanal Rengini Belirle" + +#: ../app/core/gimpchannel.c:1679 +msgid "Set Channel Opacity" +msgstr "Kanal Opaklığını Belirle" + +#: ../app/core/gimpchannel.c:1747 ../app/core/gimpselection.c:520 +msgid "Selection Mask" +msgstr "Seçim Maskesi" + +#: ../app/core/gimpdata.c:526 ../app/core/gimptoolpresets.c:279 +#, c-format +msgid "Could not delete '%s': %s" +msgstr "'%s' dosyası açılamadı: %s" + +#: ../app/core/gimpdatafactory.c:415 ../app/core/gimpdatafactory.c:575 +#: ../app/core/gimpdatafactory.c:595 +#, c-format +msgid "" +"Failed to save data:\n" +"\n" +"%s" +msgstr "" +"Veri kaydetme başarısız:\n" +"\n" +"%s" + +#: ../app/core/gimpdatafactory.c:494 ../app/core/gimpdatafactory.c:497 +#: ../app/core/gimpitem.c:312 ../app/core/gimpitem.c:315 +msgid "copy" +msgstr "kopyala" + +#: ../app/core/gimpdatafactory.c:506 ../app/core/gimpitem.c:324 +#, c-format +msgid "%s copy" +msgstr "%s kopyası" + +#: ../app/core/gimpdatafactory.c:576 +msgid "You don't have a writable data folder configured." +msgstr "Yapılandırılmış, yazılabilir bir veri dizinine sahip değilsiniz." + +#: ../app/core/gimpdatafactory.c:751 +#, c-format +msgid "" +"Failed to load data:\n" +"\n" +"%s" +msgstr "" +"Veri yükleme başarısız:\n" +"\n" +"%s" + +#: ../app/core/gimpdrawable-blend.c:245 ../app/tools/gimpblendtool.c:107 +msgid "Blend" +msgstr "Harmanlama" + +#: ../app/core/gimpdrawable-brightness-contrast.c:76 +msgid "Brightness_Contrast" +msgstr "Parlaklık_Karşıtlık" + +#: ../app/core/gimpdrawable-brightness-contrast.c:87 +#: ../app/tools/gimpbrightnesscontrasttool.c:111 +msgid "Brightness-Contrast" +msgstr "Parlaklık-Kontrast" + +#: ../app/core/gimpdrawable-bucket-fill.c:91 +#, c-format +msgid "No patterns available for this operation." +msgstr "Bu işlem için hiç desen yok." + +#: ../app/core/gimpdrawable-bucket-fill.c:286 +msgctxt "command" +msgid "Bucket Fill" +msgstr "Kovadan Dolum" + +#: ../app/core/gimpdrawable-color-balance.c:80 +#: ../app/core/gimpdrawable-color-balance.c:90 +#: ../app/tools/gimpcolorbalancetool.c:94 +msgid "Color Balance" +msgstr "Renk Dengesi" + +#: ../app/core/gimpdrawable-colorize.c:73 +#: ../app/core/gimpdrawable-colorize.c:85 ../app/tools/gimpcolorizetool.c:90 +msgid "Colorize" +msgstr "Renklendir" + +#: ../app/core/gimpdrawable-curves.c:165 ../app/core/gimpdrawable-curves.c:182 +#: ../app/tools/gimpcurvestool.c:140 +msgid "Curves" +msgstr "Eğriler" + +#: ../app/core/gimpdrawable-desaturate.c:71 +#: ../app/core/gimpdrawable-desaturate.c:77 +#: ../app/tools/gimpdesaturatetool.c:77 +msgid "Desaturate" +msgstr "Solgunlaştır" + +#: ../app/core/gimpdrawable-equalize.c:53 +msgid "Equalize" +msgstr "Eşitle" + +#: ../app/core/gimpdrawable-foreground-extract.c:138 +msgid "Foreground Extraction" +msgstr "Önalan Çıkarma" + +#: ../app/core/gimpdrawable-hue-saturation.c:78 +#: ../app/tools/gimphuesaturationtool.c:102 +msgid "Hue-Saturation" +msgstr "Renk-Doygunluk" + +#: ../app/core/gimpdrawable-hue-saturation.c:88 +msgid "Hue_Saturation" +msgstr "Renk Özü_Doygunluk" + +#: ../app/core/gimpdrawable-invert.c:60 ../app/core/gimpdrawable-invert.c:68 +msgid "Invert" +msgstr "Tersine Çevir" + +#: ../app/core/gimpdrawable-levels.c:154 ../app/core/gimpdrawable-levels.c:170 +#: ../app/tools/gimplevelstool.c:150 +msgid "Levels" +msgstr "Seviyeler" + +#: ../app/core/gimpdrawable-offset.c:316 +msgid "Offset Drawable" +msgstr "Göreli Konum Çizilebilirliği" + +#: ../app/core/gimpdrawable-posterize.c:70 +#: ../app/core/gimpdrawable-posterize.c:80 ../app/tools/gimpposterizetool.c:84 +msgid "Posterize" +msgstr "Posterleştirme" + +#: ../app/core/gimpdrawable-stroke.c:324 +msgid "Render Stroke" +msgstr "Darbeli Tarama" + +#: ../app/core/gimpdrawable-threshold.c:71 +#: ../app/core/gimpdrawable-threshold.c:82 ../app/tools/gimpthresholdtool.c:90 +msgid "Threshold" +msgstr "Alt Sınır" + +#: ../app/core/gimpdrawable-transform.c:645 ../app/tools/gimpfliptool.c:116 +msgctxt "command" +msgid "Flip" +msgstr "Çevir" + +#: ../app/core/gimpdrawable-transform.c:745 ../app/tools/gimprotatetool.c:121 +msgctxt "command" +msgid "Rotate" +msgstr "Döndür" + +#: ../app/core/gimpdrawable-transform.c:884 ../app/core/gimplayer.c:255 +msgid "Transform Layer" +msgstr "Katmanı Dönüştür" + +#: ../app/core/gimpdrawable-transform.c:899 +msgid "Transformation" +msgstr "Dönüştürme" + +#: ../app/core/gimpgradient-load.c:71 ../app/core/gimpgradient-load.c:96 +#: ../app/core/gimpgradient-load.c:117 ../app/core/gimpgradient-load.c:168 +#, c-format +msgid "Fatal parse error in gradient file '%s': Read error in line %d." +msgstr "" +"'%s' renk geçişi dosyasında ölümcül ayrıştırma hatası: %d. satırda okuma " +"hatası." + +#: ../app/core/gimpgradient-load.c:81 +#, c-format +msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." +msgstr "" +"'%s' renk geçişi dosyasında ölümcül ayrıştırma hatası: bir GIMP renk geçişi " +"dosyası değil." + +#: ../app/core/gimpgradient-load.c:109 +#, c-format +msgid "Invalid UTF-8 string in gradient file '%s'." +msgstr "'%s' GIMP gradyan dosyasında geçersiz UTF-8 dizge." + +#: ../app/core/gimpgradient-load.c:136 +#, c-format +msgid "Fatal parse error in gradient file '%s': File is corrupt in line %d." +msgstr "" +"'%s' renk geçişi dosyasında ölümcül ayrıştırma hatası: %d. satırdaki dosya " +"bozulmuş." + +#: ../app/core/gimpgradient-load.c:218 ../app/core/gimpgradient-load.c:229 +#, c-format +msgid "" +"Fatal parse error in gradient file '%s': Corrupt segment %d in line %d." +msgstr "" +"'%s' renk geçişi dosyasında ölümcül ayrıştırma hatası: %d kesimi %d. satırda " +"bozulmuş." + +#: ../app/core/gimpgradient-load.c:241 ../app/core/gimpgradient-load.c:255 +#, c-format +msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." +msgstr "" +"'%s' renk geçişi dosyası bozulmuş: Kesimler 0-1 aralığında yayılmıyor." + +#: ../app/core/gimpgradient-load.c:334 +#, c-format +msgid "No linear gradients found in '%s'" +msgstr "'%s' içinde doğrusal renk geçişleri yok" + +#: ../app/core/gimpgradient-load.c:344 +#, c-format +msgid "Failed to import gradients from '%s': %s" +msgstr "'%s'dan renk geçişleri içe aktarma başarısız oldu: %s" + +#: ../app/core/gimpgrid.c:84 +msgid "Line style used for the grid." +msgstr "Izgara için kullanılan satır biçemi." + +#: ../app/core/gimpgrid.c:90 +msgid "The foreground color of the grid." +msgstr "Izgaranın önalan rengi." + +#: ../app/core/gimpgrid.c:95 +msgid "" +"The background color of the grid; only used in double dashed line style." +msgstr "" +"Izgaranın artlalan rengi; sadece iki çizgili satır biçemi içinde kullanıldı." + +#: ../app/core/gimpgrid.c:101 +msgid "Horizontal spacing of grid lines." +msgstr "Izgara satırlarının yatay aralık boşluğu." + +#: ../app/core/gimpgrid.c:106 +msgid "Vertical spacing of grid lines." +msgstr "Izgara satırlarının dikey aralık boşluğu." + +#: ../app/core/gimpgrid.c:115 +msgid "" +"Horizontal offset of the first grid line; this may be a negative number." +msgstr "İlk ızgara satırının yatay göreli konumu; negatif bir sayı olabilir." + +#: ../app/core/gimpgrid.c:122 +msgid "" +"Vertical offset of the first grid line; this may be a negative number." +msgstr "İlk ızgara satırının dikey göreli konumu; negatif bir sayı olabilir." + +#: ../app/core/gimpimage-arrange.c:143 +msgid "Arrange Objects" +msgstr "Nesneleri Hazırla" + +#: ../app/core/gimpimage-colormap.c:63 +msgid "Set Colormap" +msgstr "Renk Haritasını Ayarla" + +#: ../app/core/gimpimage-colormap.c:118 +msgid "Change Colormap entry" +msgstr "Renk Haritası girişini Değiştir" + +#: ../app/core/gimpimage-colormap.c:138 +msgid "Add Color to Colormap" +msgstr "Renk Haritasına Renk Ekle" + +#: ../app/core/gimpimage-convert.c:792 +#, c-format +msgid "Cannot convert image: palette is empty." +msgstr "Görüntü dönüştürülemedi: palet boş." + +#: ../app/core/gimpimage-convert.c:806 +msgid "Convert Image to RGB" +msgstr "Görüntüyü RGB'ye Dönüştür" + +#: ../app/core/gimpimage-convert.c:810 +msgid "Convert Image to Grayscale" +msgstr "Resmi Gri Ölçeğe Çevir" + +#: ../app/core/gimpimage-convert.c:814 +msgid "Convert Image to Indexed" +msgstr "Resmi İndisliye Çevir" + +#: ../app/core/gimpimage-convert.c:896 +msgid "Converting to indexed colors (stage 2)" +msgstr "Sıralanmış renklere dönüştürme (aşama 2)" + +#: ../app/core/gimpimage-convert.c:941 +msgid "Converting to indexed colors (stage 3)" +msgstr "Sıralanmış renklere dönüştürme (aşama 3)" + +#: ../app/core/gimpimage-crop.c:130 +msgctxt "command" +msgid "Crop Image" +msgstr "Görüntüyü Kırp" + +#: ../app/core/gimpimage-crop.c:133 ../app/core/gimpimage-resize.c:90 +msgid "Resize Image" +msgstr "Resim Boyutunu Değiştir" + +#: ../app/core/gimpimage-guides.c:51 +msgid "Add Horizontal Guide" +msgstr "Yatay Kılavuz Ekle" + +#: ../app/core/gimpimage-guides.c:74 +msgid "Add Vertical Guide" +msgstr "Dikey Kılavuz Ekle" + +#: ../app/core/gimpimage-guides.c:115 ../app/tools/gimpmovetool.c:564 +msgid "Remove Guide" +msgstr "Kılavuzu Sil" + +#: ../app/core/gimpimage-guides.c:140 +msgid "Move Guide" +msgstr "Kılavuzu Taşı" + +#: ../app/core/gimpimage-item-list.c:53 +msgid "Translate Items" +msgstr "Öğeleri Tercüme Et" + +#: ../app/core/gimpimage-item-list.c:80 +msgid "Flip Items" +msgstr "Öğeleri Çevir" + +#: ../app/core/gimpimage-item-list.c:107 +msgid "Rotate Items" +msgstr "Öğeleri Döndür" + +#: ../app/core/gimpimage-item-list.c:137 +msgid "Transform Items" +msgstr "Öğeleri Dönüştür" + +#: ../app/core/gimpimage-merge.c:102 ../app/core/gimpimage-merge.c:114 +msgid "Merge Visible Layers" +msgstr "Görünen Katmanları Birleştir" + +#: ../app/core/gimpimage-merge.c:165 +msgid "Flatten Image" +msgstr "Resmi Düzleştir" + +#: ../app/core/gimpimage-merge.c:214 +msgid "Merge Down" +msgstr "Aşağı Birleştir" + +#: ../app/core/gimpimage-merge.c:254 +msgid "Merge Visible Paths" +msgstr "Görünen Katmanları Birleştir" + +#: ../app/core/gimpimage-merge.c:289 +#, c-format +msgid "Not enough visible paths for a merge. There must be at least two." +msgstr "" +"Birleştirme için yeterli sayıda görünür katman yok. En az iki tane olmalıdır." + +#: ../app/core/gimpimage-quick-mask.c:82 +msgid "Enable Quick Mask" +msgstr "Hızlı Maskeyi Etkinleştir" + +#: ../app/core/gimpimage-quick-mask.c:132 +msgid "Disable Quick Mask" +msgstr "Hızlı Maskeyi Etkisizleştir" + +#: ../app/core/gimpimage-sample-points.c:53 +msgid "Add Sample Point" +msgstr "Örnek Nokta Ekle" + +#: ../app/core/gimpimage-sample-points.c:98 ../app/tools/gimpcolortool.c:429 +msgid "Remove Sample Point" +msgstr "Örnek Noktayı Kaldır" + +#: ../app/core/gimpimage-sample-points.c:135 +msgid "Move Sample Point" +msgstr "Örnek Noktayı Taşı" + +#: ../app/core/gimpimage-undo-push.c:863 +#, c-format +msgid "Can't undo %s" +msgstr "Geriye alınamıyor: %s" + +#: ../app/core/gimpimage.c:1506 +msgid "Change Image Resolution" +msgstr "Resim Çözünürlüğünü Değiştir" + +#: ../app/core/gimpimage.c:1550 +msgid "Change Image Unit" +msgstr "Resim Birimini Değiştir" + +#: ../app/core/gimpimage.c:2384 +msgid "Attach Parasite to Image" +msgstr "Görüntüye Parazit İliştir" + +#: ../app/core/gimpimage.c:2422 +msgid "Remove Parasite from Image" +msgstr "Resimdeki Paraziti Kaldır" + +#: ../app/core/gimpimage.c:2875 +msgid "Add Layer" +msgstr "Katman Ekle" + +#: ../app/core/gimpimage.c:2935 ../app/core/gimpimage.c:2948 +msgid "Remove Layer" +msgstr "Katmanı Sil" + +#: ../app/core/gimpimage.c:3092 +msgid "Layer cannot be raised higher." +msgstr "Katman daha fazla yükseltilemez." + +#: ../app/core/gimpimage.c:3097 +msgid "Raise Layer" +msgstr "Katmanı Yükselt" + +#: ../app/core/gimpimage.c:3116 +msgid "Layer cannot be lowered more." +msgstr "Katman daha fazla alçaltılamaz." + +#: ../app/core/gimpimage.c:3121 +msgid "Lower Layer" +msgstr "Katmanı Alçalt" + +#: ../app/core/gimpimage.c:3132 +msgid "Raise Layer to Top" +msgstr "Katmanı En Üste Çıkart" + +#: ../app/core/gimpimage.c:3147 +msgid "Lower Layer to Bottom" +msgstr "Katmanı En Alta İndir" + +#: ../app/core/gimpimage.c:3209 +msgid "Add Channel" +msgstr "Kanal Ekle" + +#: ../app/core/gimpimage.c:3252 ../app/core/gimpimage.c:3263 +msgid "Remove Channel" +msgstr "Kanal Sil" + +#: ../app/core/gimpimage.c:3312 +msgid "Channel cannot be raised higher." +msgstr "Kanal daha fazla yükseltilemez." + +#: ../app/core/gimpimage.c:3317 +msgid "Raise Channel" +msgstr "Kanalı Yükselt" + +#: ../app/core/gimpimage.c:3328 +msgid "Raise Channel to Top" +msgstr "Kanalı En Tepeye Yükselt" + +#: ../app/core/gimpimage.c:3348 +msgid "Channel cannot be lowered more." +msgstr "Kanal daha fazla alçaltılamaz." + +#: ../app/core/gimpimage.c:3353 +msgid "Lower Channel" +msgstr "Kanalı Alçalt" + +#: ../app/core/gimpimage.c:3368 +msgid "Lower Channel to Bottom" +msgstr "Kanalı En Alta İndir" + +#: ../app/core/gimpimage.c:3432 +msgid "Add Path" +msgstr "Yol Ekle" + +#: ../app/core/gimpimage.c:3476 +msgid "Remove Path" +msgstr "Yolu Sil" + +#: ../app/core/gimpimage.c:3522 +msgid "Path cannot be raised higher." +msgstr "Yol daha fazla yükseltilemez." + +#: ../app/core/gimpimage.c:3527 +msgid "Raise Path" +msgstr "Yolu Yükselt" + +#: ../app/core/gimpimage.c:3538 +msgid "Raise Path to Top" +msgstr "Yolu En Üste Çıkar" + +#: ../app/core/gimpimage.c:3557 +msgid "Path cannot be lowered more." +msgstr "Yol daha fazla alçaltılamaz." + +#: ../app/core/gimpimage.c:3562 +msgid "Lower Path" +msgstr "Yolu Alçalt" + +#: ../app/core/gimpimage.c:3577 +msgid "Lower Path to Bottom" +msgstr "Yolu En Alta İndir" + +#: ../app/core/gimpimagefile.c:528 ../app/dialogs/preferences-dialog.c:1727 +msgid "Folder" +msgstr "Dizin" + +#: ../app/core/gimpimagefile.c:533 +msgid "Special File" +msgstr "Özel Dosya" + +#: ../app/core/gimpimagefile.c:549 +msgid "Remote File" +msgstr "Uzak Dosya" + +#: ../app/core/gimpimagefile.c:568 +msgid "Click to create preview" +msgstr "Önizleme oluşturmak için tıklayın" + +#: ../app/core/gimpimagefile.c:574 +msgid "Loading preview..." +msgstr "Önizleme yükleniyor..." + +#: ../app/core/gimpimagefile.c:580 +msgid "Preview is out of date" +msgstr "Önizlemenin tarihi geçmiş" + +#: ../app/core/gimpimagefile.c:586 +msgid "Cannot create preview" +msgstr "Önizleme oluşturulamıyor" + +#: ../app/core/gimpimagefile.c:596 +msgid "(Preview may be out of date)" +msgstr "(Önizleme geçerliliğini yitirmiş olabilir)" + +#. pixel size +#: ../app/core/gimpimagefile.c:605 ../app/widgets/gimpimagepropview.c:446 +#: ../app/widgets/gimpsizebox.c:438 ../app/widgets/gimptemplateeditor.c:566 +#, c-format +msgid "%d × %d pixel" +msgid_plural "%d × %d pixels" +msgstr[0] "%d x %d benek" + +#: ../app/core/gimpimagefile.c:628 ../app/display/gimpdisplayshell-title.c:325 +#, c-format +msgid "%d layer" +msgid_plural "%d layers" +msgstr[0] "%d katman" + +#: ../app/core/gimpimagefile.c:675 +#, c-format +msgid "Could not open thumbnail '%s': %s" +msgstr "Küçük görüntü '%s' açılamadı: %s" + +#: ../app/core/gimpitem.c:1138 +msgid "Attach Parasite" +msgstr "Parazit İlişkile" + +#: ../app/core/gimpitem.c:1148 +msgid "Attach Parasite to Item" +msgstr "Öğeye Parazit İliştir" + +#: ../app/core/gimpitem.c:1190 ../app/core/gimpitem.c:1197 +msgid "Remove Parasite from Item" +msgstr "Öğeden Paraziti Kaldır" + +#: ../app/core/gimplayer-floating-sel.c:99 +msgid "Remove Floating Selection" +msgstr "Yüzen Seçimi Sil" + +#: ../app/core/gimplayer-floating-sel.c:130 +msgid "Anchor Floating Selection" +msgstr "Yüzen Seçimi Çıpala" + +#: ../app/core/gimplayer-floating-sel.c:205 ../app/core/gimplayer.c:643 +#, c-format +msgid "" +"Cannot create a new layer from the floating selection because it belongs to " +"a layer mask or channel." +msgstr "" +"Yüzen seçimden yeni bir katman oluşturulamıyor çünkü bu bir katman maskesine " +"ya da kanala ait." + +#: ../app/core/gimplayer-floating-sel.c:211 +msgid "Floating Selection to Layer" +msgstr "Katmana Yüzen Seçim" + +#: ../app/core/gimplayer.c:248 ../app/tools/tools-enums.c:209 +msgid "Layer" +msgstr "Katman" + +#: ../app/core/gimplayer.c:249 +msgid "Rename Layer" +msgstr "Katmanın Adını Değiştir" + +#: ../app/core/gimplayer.c:250 ../app/pdb/layer-cmds.c:437 +#: ../app/pdb/layer-cmds.c:473 +msgid "Move Layer" +msgstr "Katmanı Taşı" + +#: ../app/core/gimplayer.c:252 +msgid "Resize Layer" +msgstr "Katman Boyutunu Değiştir" + +#: ../app/core/gimplayer.c:253 +msgid "Flip Layer" +msgstr "Katmanı Çevir" + +#: ../app/core/gimplayer.c:254 +msgid "Rotate Layer" +msgstr "Katmanı Döndür" + +#: ../app/core/gimplayer.c:405 ../app/core/gimplayer.c:1330 +#: ../app/core/gimplayermask.c:208 +#, c-format +msgid "%s mask" +msgstr "%s maskesi" + +#: ../app/core/gimplayer.c:446 +#, c-format +msgid "" +"Floating Selection\n" +"(%s)" +msgstr "" +"Yüzen Seçim\n" +"(%s)" + +#: ../app/core/gimplayer.c:1266 +#, c-format +msgid "Unable to add a layer mask since the layer already has one." +msgstr "" +"Katmanın zaten bir maskesi olduğundan bir katman maskesi eklemek olanaksız." + +#: ../app/core/gimplayer.c:1277 +#, c-format +msgid "Cannot add layer mask of different dimensions than specified layer." +msgstr "" +"Belirlenmiş katman hariç farklı boyutlardaki katman maskesi eklenemiyor." + +#: ../app/core/gimplayer.c:1385 +msgid "Transfer Alpha to Mask" +msgstr "Görünürü Maskeye Aktar" + +#: ../app/core/gimplayer.c:1557 ../app/core/gimplayermask.c:235 +msgid "Apply Layer Mask" +msgstr "Katman Maskesini Uygula" + +#: ../app/core/gimplayer.c:1558 +msgid "Delete Layer Mask" +msgstr "Katman Maskesini Sil" + +#: ../app/core/gimplayer.c:1670 +msgid "Add Alpha Channel" +msgstr "Alfa Kanalı Ekle" + +#: ../app/core/gimplayer.c:1724 +msgid "Remove Alpha Channel" +msgstr "Görünür Kanalını Kaldır" + +#: ../app/core/gimplayer.c:1746 +msgid "Layer to Image Size" +msgstr "Katmandan Görüntü Boyutuna" + +#: ../app/core/gimplayermask.c:105 +msgid "Move Layer Mask" +msgstr "Katman Maskesini Taşı" + +#. reject renaming, layer masks are always named " mask" +#: ../app/core/gimplayermask.c:160 +#, c-format +msgid "Cannot rename layer masks." +msgstr "Katman maskeleri yeniden adlandırılamıyor." + +#: ../app/core/gimplayermask.c:303 +msgid "Show Layer Mask" +msgstr "Katman Maskesini Göster" + +#: ../app/core/gimppalette-import.c:428 +#, c-format +msgid "Index %d" +msgstr "İçerik %d" + +#: ../app/core/gimppalette-import.c:532 +#, c-format +msgid "Unknown type of palette file: %s" +msgstr "Bilinmeyen palet dosyası tipi: %s" + +#: ../app/core/gimppalette-load.c:85 ../app/core/gimppalette-load.c:110 +#: ../app/core/gimppalette-load.c:131 ../app/core/gimppalette-load.c:160 +#: ../app/core/gimppalette-load.c:236 +#, c-format +msgid "Fatal parse error in palette file '%s': Read error in line %d." +msgstr "" +"'%s' palet dosyası içinde ölümcül ayrıştırma hatası: %d. satırda okuma " +"hatası." + +#: ../app/core/gimppalette-load.c:95 +#, c-format +msgid "Fatal parse error in palette file '%s': Missing magic header." +msgstr "" +"'%s' palet dosyası içinde ölümcül ayrıştırma hatası: Kayıp sihirli sayfa " +"başlığı." + +#: ../app/core/gimppalette-load.c:123 +#, c-format +msgid "Invalid UTF-8 string in palette file '%s'" +msgstr "'%s' palet dosyası içinde geçersiz UTF-8 dizgisi" + +#: ../app/core/gimppalette-load.c:147 +#, c-format +msgid "" +"Reading palette file '%s': Invalid number of columns in line %d. Using " +"default value." +msgstr "" +"'%s' palet dosyası okunuyor: %d. satır içindeki sütunların sayısı geçersiz. " +"Öntanımlı değer kullanılıyor." + +#: ../app/core/gimppalette-load.c:183 +#, c-format +msgid "Reading palette file '%s': Missing RED component in line %d." +msgstr "'%s' palet dosyası okunuyor: %d. satırda KIRMIZI bileşen kayıp." + +#: ../app/core/gimppalette-load.c:191 +#, c-format +msgid "Reading palette file '%s': Missing GREEN component in line %d." +msgstr "'%s' palet dosyası okunuyor: %d. satırda YEŞİL bileşen kayıp." + +#: ../app/core/gimppalette-load.c:199 +#, c-format +msgid "Reading palette file '%s': Missing BLUE component in line %d." +msgstr "'%s' palet dosyası okunuyor: %d. satırda MAVİ bileşen kayıp." + +#: ../app/core/gimppalette-load.c:209 +#, c-format +msgid "Reading palette file '%s': RGB value out of range in line %d." +msgstr "'%s' palet dosyası okunuyor: %d. satırda RGB değeri erim dışı." + +#: ../app/core/gimppattern-load.c:85 ../app/core/gimppattern-load.c:131 +#: ../app/core/gimppattern-load.c:162 +#, c-format +msgid "Fatal parse error in pattern file '%s': File appears truncated." +msgstr "" +"'%s' desen dosyası içinde ölümcül ayrıştırma hatası: Dosya kesilmiş " +"görünüyor." + +#: ../app/core/gimppattern-load.c:104 +#, c-format +msgid "" +"Fatal parse error in pattern file '%s': Unknown pattern format version %d." +msgstr "" +"'%s' desen dosyası içinde ölümcül ayrıştırma hatası: Bilinmeyen desen biçimi " +"%d sürümü." + +#: ../app/core/gimppattern-load.c:114 +#, c-format +msgid "" +"Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" +"GIMP Patterns must be GRAY or RGB." +msgstr "" +"'%s' desen dosyası içinde ölümcül ayrıştırma hatası: Desteklenmemiş desen " +"derinliği %d.\n" +"GIMP Desenleri GRİ ya da RGB olmalı." + +#: ../app/core/gimppattern-load.c:139 +#, c-format +msgid "Invalid UTF-8 string in pattern file '%s'." +msgstr "'%s' desen dosyası içinde geçersiz UTF-8 dizgisi." + +#: ../app/core/gimppdbprogress.c:288 ../app/widgets/gimppdbdialog.c:352 +#, c-format +msgid "" +"Unable to run %s callback. The corresponding plug-in may have crashed." +msgstr "" +"%s geri çağırmasını çalıştırmak olanaksız. İlgili uyumlu ek çökmüş olabilir." + +#: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 +msgid "Please wait" +msgstr "Lütfen bekleyin" + +#: ../app/core/gimpselection.c:150 ../app/tools/gimpeditselectiontool.c:240 +msgid "Move Selection" +msgstr "Seçimi Taşı" + +#: ../app/core/gimpselection.c:168 +msgid "Sharpen Selection" +msgstr "Seçimi Keskinleştir" + +#: ../app/core/gimpselection.c:169 +msgid "Select None" +msgstr "Hiçbirisini Seçme" + +#: ../app/core/gimpselection.c:170 +msgid "Select All" +msgstr "Tümünü Seç" + +#: ../app/core/gimpselection.c:171 +msgid "Invert Selection" +msgstr "Seçimi Tersine Çevir" + +#: ../app/core/gimpselection.c:275 +#, c-format +msgid "There is no selection to stroke." +msgstr "Darbelenecek seçim yok." + +#: ../app/core/gimpselection.c:640 +#, c-format +msgid "Unable to cut or copy because the selected region is empty." +msgstr "Kesme veya kopyalama yapılamaz çünkü seçili alan boş." + +#: ../app/core/gimpselection.c:814 +#, c-format +msgid "Cannot float selection because the selected region is empty." +msgstr "Seçim yüzdürülemez çünkü seçili alan boş." + +#: ../app/core/gimpselection.c:821 +msgid "Float Selection" +msgstr "Seçimi Yüzdür" + +#: ../app/core/gimpselection.c:837 +msgid "Floated Layer" +msgstr "Yüzen Katman" + +#: ../app/core/gimpstrokeoptions.c:119 +msgid "" +"Convert a mitered join to a bevelled join if the miter would extend to a " +"distance of more than miter-limit * line-width from the actual join point." +msgstr "" +"Bir köşe girişi, eğer eğik, aktif giriş noktasındaki köşe sınırlayıcı * " +"satır genişliğinden daha uzakta ise, eğik girişe dönüştür." + +#: ../app/core/gimptemplate.c:106 +msgid "The unit used for coordinate display when not in dot-for-dot mode." +msgstr "" +"Nokta-için-nokta kipinde değilken, görüntülemeyi eşgüdümleme için " +"kullanılacak birim." + +#: ../app/core/gimptemplate.c:113 +msgid "The horizontal image resolution." +msgstr "Yatay görüntü çözünürlüğü." + +#: ../app/core/gimptemplate.c:119 +msgid "The vertical image resolution." +msgstr "Dikey resim çözünürlüğü." + +#: ../app/core/gimptemplate.c:405 ../app/widgets/widgets-enums.c:24 +msgid "Background" +msgstr "Arkaplan" + +#. pseudo unit +#: ../app/core/gimpunit.c:56 +msgid "pixel" +msgstr "piksel" + +#: ../app/core/gimpunit.c:56 ../app/tools/gimpmeasuretool.c:877 +#: ../app/tools/gimpmeasuretool.c:1020 ../app/tools/gimpmeasuretool.c:1076 +#: ../app/tools/gimpmeasuretool.c:1104 ../app/tools/gimppainttool.c:615 +msgid "pixels" +msgstr "piksel" + +#. standard units +#: ../app/core/gimpunit.c:59 +msgid "inch" +msgstr "inç" + +#: ../app/core/gimpunit.c:59 +msgid "inches" +msgstr "inç" + +#: ../app/core/gimpunit.c:60 +msgid "millimeter" +msgstr "milimetre" + +#: ../app/core/gimpunit.c:60 +msgid "millimeters" +msgstr "milimetre" + +#. professional units +#: ../app/core/gimpunit.c:63 +msgid "point" +msgstr "punto" + +#: ../app/core/gimpunit.c:63 +msgid "points" +msgstr "punto" + +#: ../app/core/gimpunit.c:64 +msgid "pica" +msgstr "pika" + +#: ../app/core/gimpunit.c:64 +msgid "picas" +msgstr "pika" + +#: ../app/core/gimpunit.c:71 +msgid "percent" +msgstr "yüzde" + +#: ../app/core/gimpunit.c:71 +msgid "plural|percent" +msgstr "yüzde" + +#: ../app/dialogs/about-dialog.c:123 +msgid "Visit the GIMP website" +msgstr "GIMP sitesini ziyaret edin" + +#. Translators: insert your names here, separated by newline +#: ../app/dialogs/about-dialog.c:128 +msgid "translator-credits" +msgstr "" +"Görkem Çetin\n" +"\n" +"Launchpad Contributions:\n" +" Angel Spy https://launchpad.net/~dilara.ekinci\n" +" Burak Yucesoy https://launchpad.net/~burakyucesoy\n" +" Caner Dağlı https://launchpad.net/~eldirr\n" +" Captain-G https://launchpad.net/~cihangiruluaslan\n" +" Egemen Özkan https://launchpad.net/~egozkan\n" +" EsatYuce https://launchpad.net/~esat\n" +" Görkem Çetin https://launchpad.net/~gorkem-kde\n" +" Hasan Yılmaz https://launchpad.net/~hasanyilmaz\n" +" Hasan İlingi https://launchpad.net/~hasanilingi1981-gmail\n" +" Jimi Green https://launchpad.net/~spevja\n" +" Kılıç Köken https://launchpad.net/~kilickoken\n" +" PolatArasan https://launchpad.net/~polat-talforum\n" +" Yiğit Ateş https://launchpad.net/~yigitates52\n" +" ergin üresin https://launchpad.net/~ergin012\n" +" erkuserdem https://launchpad.net/~erkuserdem\n" +" erokay https://launchpad.net/~erokayca\n" +" maydin95 https://launchpad.net/~mma-95\n" +" sagirbas https://launchpad.net/~soner-agirbas2\n" +" servetummetoglu https://launchpad.net/~servetummetoglu-hotmail" + +#: ../app/dialogs/about-dialog.c:529 +msgid "GIMP is brought to you by" +msgstr "GIMP'i sizlere sunanlar" + +#: ../app/dialogs/about-dialog.c:603 +msgid "This is an unstable development release." +msgstr "Bu, kararsız bir geliştirme yayımıdır." + +#: ../app/dialogs/channel-options-dialog.c:145 +msgid "Channel _name:" +msgstr "Kanal _adı:" + +#: ../app/dialogs/channel-options-dialog.c:174 +msgid "Initialize from _selection" +msgstr "_Seçilenden başla" + +#: ../app/dialogs/convert-dialog.c:125 +msgid "Indexed Color Conversion" +msgstr "İndisli Renk Dönüşümü" + +#: ../app/dialogs/convert-dialog.c:128 +msgid "Convert Image to Indexed Colors" +msgstr "Görüntüyü Sıralanmış Renklere Dönüştür" + +#: ../app/dialogs/convert-dialog.c:138 +msgid "C_onvert" +msgstr "D_önüştür" + +#: ../app/dialogs/convert-dialog.c:189 +msgid "_Maximum number of colors:" +msgstr "Renklerin a_zami sayısı:" + +#: ../app/dialogs/convert-dialog.c:216 +msgid "_Remove unused colors from colormap" +msgstr "Kullanılmayan renkleri renk haritasından _kaldır" + +#. dithering +#: ../app/dialogs/convert-dialog.c:232 ../app/tools/gimpblendoptions.c:247 +msgid "Dithering" +msgstr "Titreme" + +#: ../app/dialogs/convert-dialog.c:244 +msgid "Color _dithering:" +msgstr "Renk _titremesi:" + +#: ../app/dialogs/convert-dialog.c:259 +msgid "Enable dithering of _transparency" +msgstr "_Saydamlığın titremesini etkinleştir" + +#: ../app/dialogs/convert-dialog.c:286 +msgid "Converting to indexed colors" +msgstr "Sıralanmış renklere dönüştürülüyor" + +#: ../app/dialogs/convert-dialog.c:414 ../app/pdb/convert-cmds.c:150 +#, c-format +msgid "Cannot convert to a palette with more than 256 colors." +msgstr "256 renkten fazla bir palete dönüştürülemedi." + +#: ../app/dialogs/dialogs-constructors.c:184 ../app/gui/gui.c:161 +#: ../app/gui/gui-message.c:148 +msgid "GIMP Message" +msgstr "GIMP İletisi" + +#: ../app/dialogs/dialogs.c:142 +msgid "Devices" +msgstr "Aygıtlar" + +#: ../app/dialogs/dialogs.c:142 +msgid "Device Status" +msgstr "Aygıt Durumu" + +#: ../app/dialogs/dialogs.c:146 +msgid "Errors" +msgstr "Hatalar" + +#: ../app/dialogs/dialogs.c:171 +msgid "History" +msgstr "Geçmiş" + +#: ../app/dialogs/dialogs.c:173 +msgid "Image Templates" +msgstr "Resim Şablonları" + +#: ../app/dialogs/dialogs.c:194 +msgid "Histogram" +msgstr "Historgram" + +#: ../app/dialogs/dialogs.c:198 +msgid "Selection Editor" +msgstr "Seçim Düzenleyici" + +#: ../app/dialogs/dialogs.c:202 +msgid "Undo" +msgstr "Geri al" + +#: ../app/dialogs/dialogs.c:202 +msgid "Undo History" +msgstr "Geri Alma Geçmişi" + +#: ../app/dialogs/dialogs.c:212 +msgid "Navigation" +msgstr "Gezgin" + +#: ../app/dialogs/dialogs.c:212 +msgid "Display Navigation" +msgstr "Gezgini Görüntüle" + +#: ../app/dialogs/dialogs.c:218 +msgid "FG/BG" +msgstr "Önplan/Arkaplan" + +#: ../app/dialogs/dialogs.c:218 +msgid "FG/BG Color" +msgstr "Önplan/Arkaplan Rengi" + +#: ../app/dialogs/fade-dialog.c:110 +#, c-format +msgid "Fade %s" +msgstr "Soldur %s" + +#: ../app/dialogs/fade-dialog.c:123 +msgid "_Fade" +msgstr "_Soldur" + +#: ../app/dialogs/fade-dialog.c:157 +msgid "_Mode:" +msgstr "_Kip:" + +#: ../app/dialogs/fade-dialog.c:163 +msgid "_Opacity:" +msgstr "_Işık Geçirmezlik:" + +#: ../app/dialogs/file-open-dialog.c:262 +msgid "Open layers" +msgstr "Katmanları aç" + +#: ../app/dialogs/file-open-location-dialog.c:72 +msgid "Open Location" +msgstr "Yeri Aç" + +#: ../app/dialogs/file-open-location-dialog.c:110 +msgid "Enter location (URI):" +msgstr "Yeri gir (URI):" + +#: ../app/dialogs/file-save-dialog.c:302 ../app/dialogs/file-save-dialog.c:338 +msgid "" +"The given filename does not have any known file extension. Please enter a " +"known file extension or select a file format from the file format list." +msgstr "" +"Verilen dosya adı, bilinen bir dosya uzantısına sahip değil. Lütfen bilinen " +"bir dosya uzantısı girin veya dosya biçimi listesinden bir dosya biçimi " +"seçin." + +#: ../app/dialogs/file-save-dialog.c:371 +msgid "" +"Saving remote files needs to determine the file format from the file " +"extension. Please enter a file extension that matches the selected file " +"format or enter no file extension at all." +msgstr "" +"Uzak dosyalar kaydedilirken, dosya uzantısından dosya biçiminin " +"tanımlanmasına gerek duyuyor. Lütfen seçilmiş dosya biçimi ile eşleşen bir " +"dosya uzantısı girin ya da hiçbir dosya uzantısı girmeyin." + +#: ../app/dialogs/file-save-dialog.c:428 +msgid "Extension Mismatch" +msgstr "Uzantı Uyuşmazlığı" + +#: ../app/dialogs/file-save-dialog.c:444 +msgid "The given file extension does not match the chosen file type." +msgstr "Verilen dosya uzantısı seçilmiş dosya türü ile eşleşmiyor." + +#: ../app/dialogs/file-save-dialog.c:448 +msgid "Do you want to save the image using this name anyway?" +msgstr "" +"Görüntüyü her şeye rağmen bu adı kullanarak kaydetmek istiyor musunuz?" + +#: ../app/dialogs/grid-dialog.c:85 +msgid "Configure Grid" +msgstr "Kılavuzları Yapılandır" + +#: ../app/dialogs/grid-dialog.c:86 +msgid "Configure Image Grid" +msgstr "Görüntü Izgarasını Yapılandır" + +#: ../app/dialogs/image-merge-layers-dialog.c:64 +msgid "Merge Layers" +msgstr "Katmanları Birleştir" + +#: ../app/dialogs/image-merge-layers-dialog.c:66 +msgid "Layers Merge Options" +msgstr "Katman Birleştirme Seçenekleri" + +#: ../app/dialogs/image-merge-layers-dialog.c:72 +msgid "_Merge" +msgstr "_Birleştir" + +#: ../app/dialogs/image-merge-layers-dialog.c:91 +msgid "Final, Merged Layer should be:" +msgstr "Son, Birleşmiş katman:" + +#: ../app/dialogs/image-merge-layers-dialog.c:95 +msgid "Expanded as necessary" +msgstr "Gerektiği gibi genişletilmeli" + +#: ../app/dialogs/image-merge-layers-dialog.c:98 +msgid "Clipped to image" +msgstr "Resim boyunda kesilmeli" + +#: ../app/dialogs/image-merge-layers-dialog.c:101 +msgid "Clipped to bottom layer" +msgstr "En alt katman boyunda kesilmeli" + +#: ../app/dialogs/image-merge-layers-dialog.c:109 +msgid "_Discard invisible layers" +msgstr "Görünmeyen katmanları _at" + +#: ../app/dialogs/image-new-dialog.c:96 +msgid "Create a New Image" +msgstr "Yeni Bir Resim Oluştur" + +#: ../app/dialogs/image-new-dialog.c:144 +#: ../app/dialogs/preferences-dialog.c:2021 +msgid "_Template:" +msgstr "Ş_ablon:" + +#: ../app/dialogs/image-new-dialog.c:299 +msgid "Confirm Image Size" +msgstr "Resim Boyutunu Doğrula" + +#: ../app/dialogs/image-new-dialog.c:321 +#: ../app/dialogs/image-scale-dialog.c:239 +#, c-format +msgid "You are trying to create an image with a size of %s." +msgstr "%s boyutunda bir görüntü oluşturmayı deniyorsunuz." + +#: ../app/dialogs/image-new-dialog.c:328 +#, c-format +msgid "" +"An image of the chosen size will use more memory than what is configured as " +"\"Maximum Image Size\" in the Preferences dialog (currently %s)." +msgstr "" +"Seçilmiş boyuttaki bir görüntü, Yeğlenenler kutusundaki \"Azama Görüntü " +"Boyutu\" olan yapılandırmadan daha çok bellek kullanacak (şimdiki %s)." + +#: ../app/dialogs/image-properties-dialog.c:60 +#: ../app/dialogs/image-properties-dialog.c:63 +msgid "Image Properties" +msgstr "Resim Özellikleri" + +#: ../app/dialogs/image-properties-dialog.c:84 +msgid "Properties" +msgstr "Özellikler" + +#: ../app/dialogs/image-properties-dialog.c:89 +msgid "Color Profile" +msgstr "Renk Profili" + +#: ../app/dialogs/image-properties-dialog.c:94 +msgid "Comment" +msgstr "Yorum" + +#: ../app/dialogs/image-scale-dialog.c:111 +msgctxt "dialog-title" +msgid "Scale Image" +msgstr "Görüntüyü Ölçekle" + +#: ../app/dialogs/image-scale-dialog.c:205 +msgid "Confirm Scaling" +msgstr "Ölçeklemeyi Onayla" + +#: ../app/dialogs/image-scale-dialog.c:245 +#, c-format +msgid "" +"Scaling the image to the chosen size will make it use more memory than what " +"is configured as \"Maximum Image Size\" in the Preferences dialog (currently " +"%s)." +msgstr "" +"Seçilmiş boyuttaki bir görüntü, Yeğlenenler kutusundaki \"Azama Görüntü " +"Boyutu\" olan yapılandırmadan daha çok bellek kullanılmasını sağlayacak " +"(şimdiki %s)." + +#: ../app/dialogs/image-scale-dialog.c:260 +msgid "" +"Scaling the image to the chosen size will shrink some layers completely away." +msgstr "" +"İmajı seçilen boyuta ölçeklemek bazı katmanları tamamen alakasız şekilde " +"küçültecek." + +#: ../app/dialogs/image-scale-dialog.c:264 +msgid "Is this what you want to do?" +msgstr "Yapmak istediğiniz şey bu mu?" + +#: ../app/dialogs/keyboard-shortcuts-dialog.c:49 +msgid "Configure Keyboard Shortcuts" +msgstr "Klavye Kısayollarını Yapılandır" + +#: ../app/dialogs/keyboard-shortcuts-dialog.c:73 +msgid "" +"To edit a shortcut key, click on the corresponding row and type a new " +"accelerator, or press backspace to clear." +msgstr "" +"İstediğiniz bir kısayol tuşunu değiştirmek için, uygun satıra tıklayın ve " +"yeni hızlandırıcıyı tuşlayın, ya da temizlemek için \"Backspace\" tuşunu " +"kullanın." + +#: ../app/dialogs/keyboard-shortcuts-dialog.c:81 +msgid "S_ave keyboard shortcuts on exit" +msgstr "Çıkışta klavye kısayollarını _kaydet" + +#: ../app/dialogs/layer-add-mask-dialog.c:83 +msgid "Add a Mask to the Layer" +msgstr "Katmana Maske Ekle" + +#: ../app/dialogs/layer-add-mask-dialog.c:110 +msgid "Initialize Layer Mask to:" +msgstr "İlklendirilen Maske:" + +#: ../app/dialogs/layer-add-mask-dialog.c:138 +msgid "In_vert mask" +msgstr "Maskeyi _Tersine Çevir" + +#: ../app/dialogs/layer-options-dialog.c:125 +msgid "Layer _name:" +msgstr "Katman _adı:" + +#. The size labels +#: ../app/dialogs/layer-options-dialog.c:139 +#: ../app/tools/gimpmeasuretool.c:1065 +msgid "Width:" +msgstr "Genişlik:" + +#: ../app/dialogs/layer-options-dialog.c:145 +#: ../app/tools/gimpmeasuretool.c:1093 +msgid "Height:" +msgstr "Yükseklik:" + +#: ../app/dialogs/layer-options-dialog.c:202 +msgid "Layer Fill Type" +msgstr "Katman Doldurma Tipi" + +#: ../app/dialogs/layer-options-dialog.c:217 +msgid "Set name from _text" +msgstr "_Metinden ad ayarla" + +#: ../app/dialogs/module-dialog.c:127 +msgid "Module Manager" +msgstr "Modül Düzenleyici" + +#: ../app/dialogs/module-dialog.c:150 +msgid "You will have to restart GIMP for the changes to take effect." +msgstr "Değişikliklerin geçerli olması için GIMP'i yeniden başlatmalısınız." + +#: ../app/dialogs/module-dialog.c:191 +msgid "Module" +msgstr "Birim" + +#: ../app/dialogs/module-dialog.c:464 +msgid "Only in memory" +msgstr "Sadece bellekte" + +#: ../app/dialogs/module-dialog.c:469 +msgid "No longer available" +msgstr "Artık kullanılır değil" + +#: ../app/dialogs/module-dialog.c:498 +msgid "Author:" +msgstr "Yazar:" + +#: ../app/dialogs/module-dialog.c:499 +msgid "Version:" +msgstr "Sürüm:" + +#: ../app/dialogs/module-dialog.c:500 +msgid "Date:" +msgstr "Tarih:" + +#: ../app/dialogs/module-dialog.c:501 +msgid "Copyright:" +msgstr "Telif hakkı:" + +#: ../app/dialogs/module-dialog.c:502 +msgid "Location:" +msgstr "Adres:" + +#: ../app/dialogs/offset-dialog.c:108 +msgid "Offset Layer" +msgstr "Göreli Konum Katmanı" + +#: ../app/dialogs/offset-dialog.c:110 +msgid "Offset Layer Mask" +msgstr "Göreli Konum Katman Maskesi" + +#: ../app/dialogs/offset-dialog.c:112 +msgid "Offset Channel" +msgstr "Göreli Konum Kanalı" + +#. The offset frame +#: ../app/dialogs/offset-dialog.c:118 ../app/dialogs/offset-dialog.c:152 +#: ../app/dialogs/resize-dialog.c:197 ../app/widgets/gimpgrideditor.c:276 +msgid "Offset" +msgstr "Ofset" + +#. offset, used as a verb +#: ../app/dialogs/offset-dialog.c:127 +msgid "_Offset" +msgstr "_Konum" + +#: ../app/dialogs/offset-dialog.c:184 ../app/dialogs/resize-dialog.c:226 +msgid "_X:" +msgstr "_X:" + +#: ../app/dialogs/offset-dialog.c:186 ../app/dialogs/resize-dialog.c:227 +msgid "_Y:" +msgstr "_Y:" + +#: ../app/dialogs/offset-dialog.c:213 +msgid "Offset by x/_2, y/2" +msgstr "x/_2, y/2 ile göreli konum" + +#. The edge behavior frame +#: ../app/dialogs/offset-dialog.c:222 +msgid "Edge Behavior" +msgstr "Kenar Davranışı" + +#: ../app/dialogs/offset-dialog.c:226 +msgid "_Wrap around" +msgstr "_Sarmala" + +#: ../app/dialogs/offset-dialog.c:229 +msgid "Fill with _background color" +msgstr "_Artalan rengi ile doldur" + +#: ../app/dialogs/offset-dialog.c:232 +msgid "Make _transparent" +msgstr "_Saydam yap" + +#: ../app/dialogs/palette-import-dialog.c:156 +msgid "Import a New Palette" +msgstr "Yeni bir Palet İçe Aktar" + +#: ../app/dialogs/palette-import-dialog.c:166 +msgid "_Import" +msgstr "İçe _Aktar" + +#. The "Source" frame +#: ../app/dialogs/palette-import-dialog.c:205 +msgid "Select Source" +msgstr "Kaynak Seç" + +#: ../app/dialogs/palette-import-dialog.c:227 +msgid "I_mage" +msgstr "G_örüntü" + +#: ../app/dialogs/palette-import-dialog.c:241 +msgid "Sample _Merged" +msgstr "_Birleştirilmiş Örnek" + +#: ../app/dialogs/palette-import-dialog.c:253 +msgid "_Selected Pixels only" +msgstr "Sadece _Seçilmiş Benekler" + +#: ../app/dialogs/palette-import-dialog.c:265 +msgid "Palette _file" +msgstr "Palet _dosyası" + +#. Palette file name entry +#: ../app/dialogs/palette-import-dialog.c:294 +msgid "Select Palette File" +msgstr "Palet Dosyasını Seç" + +#. The "Import" frame +#: ../app/dialogs/palette-import-dialog.c:305 +msgid "Import Options" +msgstr "Alma Seçenekleri" + +#: ../app/dialogs/palette-import-dialog.c:319 +msgid "New import" +msgstr "Yeni İçe Aktarma" + +#: ../app/dialogs/palette-import-dialog.c:321 +msgid "Palette _name:" +msgstr "Palet _adı:" + +#: ../app/dialogs/palette-import-dialog.c:327 +msgid "N_umber of colors:" +msgstr "Renklerin sa_yısı:" + +#: ../app/dialogs/palette-import-dialog.c:340 +msgid "C_olumns:" +msgstr "S_ütun:" + +#: ../app/dialogs/palette-import-dialog.c:352 +msgid "I_nterval:" +msgstr "A_ralık:" + +#. The "Preview" frame +#: ../app/dialogs/palette-import-dialog.c:363 +msgid "Preview" +msgstr "Önizleme" + +#: ../app/dialogs/palette-import-dialog.c:384 +msgid "The selected source contains no colors." +msgstr "Seçilmiş kaynak hiçbir renk içermiyor." + +#: ../app/dialogs/preferences-dialog.c:267 +msgid "Reset All Preferences" +msgstr "Tüm Yeğlenenleri Sıfırla" + +#: ../app/dialogs/preferences-dialog.c:285 +msgid "Do you really want to reset all preferences to default values?" +msgstr "Tüm yeğlenenleri öntanımlı değerlere getirmek istiyor musunuz?" + +#: ../app/dialogs/preferences-dialog.c:355 +msgid "" +"You will have to restart GIMP for the following changes to take effect:" +msgstr "" +"İzleyen değişikliklerin etkin olabilmesi için GIMP'i yeniden başlatmalısınız:" + +#: ../app/dialogs/preferences-dialog.c:500 +msgid "Configure Input Devices" +msgstr "Giriş Aygıtlarını Yapılandır" + +#: ../app/dialogs/preferences-dialog.c:577 +msgid "" +"Your keyboard shortcuts will be reset to default values the next time you " +"start GIMP." +msgstr "" +"Klavye kısayollarınız GIMP'in bir sonraki zaman yeniden başlatılmasında " +"öntanımlı değerlere getirilecek." + +#: ../app/dialogs/preferences-dialog.c:588 +msgid "Remove all Keyboard Shortcuts" +msgstr "Tüm Klavye Kısayollarını Kaldır" + +#: ../app/dialogs/preferences-dialog.c:610 +msgid "Do you really want to remove all keyboard shortcuts from all menus?" +msgstr "Tüm klavye kısayollarını bütün menülerden kaldırmak istiyor musunuz?" + +#: ../app/dialogs/preferences-dialog.c:651 +msgid "" +"Your window setup will be reset to default values the next time you start " +"GIMP." +msgstr "" +"Pencere düzeniniz GIMP'in sonraki başlangıcında öntanımlı değerlere " +"getirilecek." + +#: ../app/dialogs/preferences-dialog.c:686 +msgid "" +"Your input device settings will be reset to default values the next time you " +"start GIMP." +msgstr "" +"Girdi aygıtı ayarlarınız GIMP'in sonraki başlangıcında öntanımlı değerlere " +"getirilecek." + +#: ../app/dialogs/preferences-dialog.c:721 +msgid "" +"Your tool options will be reset to default values the next time you start " +"GIMP." +msgstr "" +"Alet seçenekleriniz GIMP'in sonraki başlangıcında öntanımlı değerlere " +"getirilecek." + +#: ../app/dialogs/preferences-dialog.c:1289 +msgid "Show _menubar" +msgstr "_Menü çubuğunu göster" + +#: ../app/dialogs/preferences-dialog.c:1293 +msgid "Show _rulers" +msgstr "_Cetveli göster" + +#: ../app/dialogs/preferences-dialog.c:1296 +msgid "Show scroll_bars" +msgstr "Ka_ydırma çubuğunu göster" + +#: ../app/dialogs/preferences-dialog.c:1299 +msgid "Show s_tatusbar" +msgstr "D_urum çubuğunu göster" + +#: ../app/dialogs/preferences-dialog.c:1307 +msgid "Show s_election" +msgstr "S_eçimi göster" + +#: ../app/dialogs/preferences-dialog.c:1310 +msgid "Show _layer boundary" +msgstr "Ka_tman sınırını göster" + +#: ../app/dialogs/preferences-dialog.c:1313 +msgid "Show _guides" +msgstr "K_ılavuzları göster" + +#: ../app/dialogs/preferences-dialog.c:1316 +msgid "Show gri_d" +msgstr "Kılavuzu _göster" + +#: ../app/dialogs/preferences-dialog.c:1322 +msgid "Canvas _padding mode:" +msgstr "Tuval _doldurma kipi:" + +#: ../app/dialogs/preferences-dialog.c:1327 +msgid "Custom p_adding color:" +msgstr "Tuval doldurma _rengi:" + +#: ../app/dialogs/preferences-dialog.c:1328 +msgid "Select Custom Canvas Padding Color" +msgstr "Özel Tuval Doldurma Rengi Seç" + +#: ../app/dialogs/preferences-dialog.c:1417 +msgid "Preferences" +msgstr "Tercihler" + +#: ../app/dialogs/preferences-dialog.c:1529 +#: ../app/dialogs/preferences-dialog.c:2780 +msgid "Environment" +msgstr "Çevre" + +#: ../app/dialogs/preferences-dialog.c:1543 +msgid "Resource Consumption" +msgstr "Kaynak Harcaması" + +#: ../app/dialogs/preferences-dialog.c:1553 +msgid "Minimal number of _undo levels:" +msgstr "_Geri alma düzeyinin en düşük sayısı:" + +#: ../app/dialogs/preferences-dialog.c:1556 +msgid "Maximum undo _memory:" +msgstr "Azami geri alma _belleği:" + +#: ../app/dialogs/preferences-dialog.c:1559 +msgid "Tile cache _size:" +msgstr "Önbellek b_oyutunu döşe:" + +#: ../app/dialogs/preferences-dialog.c:1562 +msgid "Maximum _new image size:" +msgstr "En büyük _yeni görüntü boyutu:" + +#: ../app/dialogs/preferences-dialog.c:1567 +msgid "Number of _processors to use:" +msgstr "Kullanılacak _işlemci sayısı:" + +#. Image Thumbnails +#: ../app/dialogs/preferences-dialog.c:1572 +msgid "Image Thumbnails" +msgstr "Görüntü Minyatürleri" + +#: ../app/dialogs/preferences-dialog.c:1577 +msgid "Size of _thumbnails:" +msgstr "_Minyatürlerin boyutu:" + +#: ../app/dialogs/preferences-dialog.c:1581 +msgid "Maximum _filesize for thumbnailing:" +msgstr "Minyatürler için en büyük dosya _boyutu:" + +#. File Saving +#: ../app/dialogs/preferences-dialog.c:1585 +msgid "Saving Images" +msgstr "Görüntüler Kaydediliyor" + +#: ../app/dialogs/preferences-dialog.c:1588 +msgid "Confirm closing of unsa_ved images" +msgstr "Kaydedilme_miş görüntülerin kapatılmasını doğrula" + +#: ../app/dialogs/preferences-dialog.c:1598 +msgid "Keep record of used files in the Recent Documents list" +msgstr "Açılan Son Belgeler listesindeki kullanılmış dosyaların kaydını tut" + +#: ../app/dialogs/preferences-dialog.c:1607 +msgid "User Interface" +msgstr "Kullanıcı Arayüzü" + +#: ../app/dialogs/preferences-dialog.c:1610 +msgid "Interface" +msgstr "Arayüz" + +#. Previews +#: ../app/dialogs/preferences-dialog.c:1617 +msgid "Previews" +msgstr "Önizlemeler" + +#: ../app/dialogs/preferences-dialog.c:1620 +msgid "_Enable layer & channel previews" +msgstr "_Katman ve kanal önizlemelerini etkinleştir" + +#: ../app/dialogs/preferences-dialog.c:1626 +msgid "_Default layer & channel preview size:" +msgstr "_Öntanımlı katman ve kanal önizleme boyutu:" + +#: ../app/dialogs/preferences-dialog.c:1629 +msgid "Na_vigation preview size:" +msgstr "Gezgin önizleme _boyutu:" + +#. Keyboard Shortcuts +#: ../app/dialogs/preferences-dialog.c:1633 +msgid "Keyboard Shortcuts" +msgstr "Klavye Kısayolları" + +#: ../app/dialogs/preferences-dialog.c:1637 +msgid "Show menu _mnemonics (access keys)" +msgstr "Menü _anımsatıcılarını göster (erişim tuşları)" + +#: ../app/dialogs/preferences-dialog.c:1640 +msgid "_Use dynamic keyboard shortcuts" +msgstr "Dinamik kla_vye kısayollarını kullan" + +#: ../app/dialogs/preferences-dialog.c:1644 +msgid "Configure _Keyboard Shortcuts..." +msgstr "Klavye kısayollarını _yapılandır..." + +#: ../app/dialogs/preferences-dialog.c:1651 +msgid "_Save keyboard shortcuts on exit" +msgstr "Çıkışta klavye kısayollarını kayde_t" + +#: ../app/dialogs/preferences-dialog.c:1655 +msgid "Save Keyboard Shortcuts _Now" +msgstr "Klavye Kısayollarını _Şimdi Kaydet" + +#: ../app/dialogs/preferences-dialog.c:1662 +msgid "_Reset Keyboard Shortcuts to Default Values" +msgstr "Klavye Kısayollarını Ö_ntanımlı Değerlere Getir" + +#: ../app/dialogs/preferences-dialog.c:1671 +msgid "Remove _All Keyboard Shortcuts" +msgstr "_Tüm Klavye Kısayollarını Kaldır" + +#: ../app/dialogs/preferences-dialog.c:1683 +#: ../app/dialogs/preferences-dialog.c:1722 +msgid "Theme" +msgstr "Temalar" + +#: ../app/dialogs/preferences-dialog.c:1692 +msgid "Select Theme" +msgstr "Tema Seç" + +#: ../app/dialogs/preferences-dialog.c:1774 +msgid "Reload C_urrent Theme" +msgstr "_Güncel Temayı Yeniden Yükle" + +#: ../app/dialogs/preferences-dialog.c:1786 +msgid "Help System" +msgstr "Yardım Sistemi" + +#. General +#: ../app/dialogs/preferences-dialog.c:1798 +#: ../app/dialogs/preferences-dialog.c:1892 +#: ../app/dialogs/preferences-dialog.c:2079 +#: ../app/widgets/gimpcontrollereditor.c:189 +msgid "General" +msgstr "Genel" + +#: ../app/dialogs/preferences-dialog.c:1801 +msgid "Show _tooltips" +msgstr "Araç _ipuçlarını göster" + +#: ../app/dialogs/preferences-dialog.c:1804 +msgid "Show help _buttons" +msgstr "_Yardım düğmelerini göster" + +#: ../app/dialogs/preferences-dialog.c:1817 +msgid "Use the online version" +msgstr "Çevrimiçi sürümü kullan" + +#: ../app/dialogs/preferences-dialog.c:1818 +msgid "Use a locally installed copy" +msgstr "Yerel olarak yüklenmiş bir kopya kullan" + +#: ../app/dialogs/preferences-dialog.c:1819 +msgid "User manual:" +msgstr "Kullanıcı el kitabı:" + +#: ../app/dialogs/preferences-dialog.c:1826 +msgid "There's a local installation of the user manual." +msgstr "Kullanıcı el kitabının yerel bir yüklenmişi var." + +#: ../app/dialogs/preferences-dialog.c:1831 +msgid "The user manual is not installed locally." +msgstr "Kullanıcı el kitabı yerel olarak yüklenmemiş." + +#. Help Browser +#: ../app/dialogs/preferences-dialog.c:1854 +msgid "Help Browser" +msgstr "Yardım Gezgini" + +#: ../app/dialogs/preferences-dialog.c:1858 +msgid "H_elp browser to use:" +msgstr "_Kullanılacak yardım gezgini:" + +#: ../app/dialogs/preferences-dialog.c:1863 +msgid "Web Browser" +msgstr "Web Tarayıcı" + +#: ../app/dialogs/preferences-dialog.c:1867 +msgid "_Web browser to use:" +msgstr "_Kullanılacak web tarayıcı:" + +#: ../app/dialogs/preferences-dialog.c:1895 +msgid "_Save tool options on exit" +msgstr "Çıkar_ken araç seçeneklerini kaydet" + +#: ../app/dialogs/preferences-dialog.c:1899 +msgid "Save Tool Options _Now" +msgstr "Araç Seçeneklerini _Şimdi Kaydet" + +#: ../app/dialogs/preferences-dialog.c:1906 +msgid "_Reset Saved Tool Options to Default Values" +msgstr "Kaydedilmiş Araç Seçeneklerini Öntanımlı Değerlere _Getir" + +#. Snapping Distance +#: ../app/dialogs/preferences-dialog.c:1916 +msgid "Guide & Grid Snapping" +msgstr "Kılavuz & Izgara Yanaştırması" + +#: ../app/dialogs/preferences-dialog.c:1921 +msgid "_Snap distance:" +msgstr "_Yanaştırma uzaklığı:" + +#: ../app/dialogs/preferences-dialog.c:1929 +msgid "Default _interpolation:" +msgstr "Öntanımlı _aradeğerleme:" + +#. Global Brush, Pattern, ... +#: ../app/dialogs/preferences-dialog.c:1936 +msgid "Paint Options Shared Between Tools" +msgstr "Araçlarla Paylaşılan Boyama Seçenekleri" + +#: ../app/dialogs/preferences-dialog.c:1949 +msgid "Move Tool" +msgstr "Taşıma Aracı" + +#: ../app/dialogs/preferences-dialog.c:1953 +msgid "Set layer or path as active" +msgstr "Katmanı veya yolu etkin olarak ayarla" + +#: ../app/dialogs/preferences-dialog.c:1966 ../app/widgets/gimptoolbox.c:633 +msgid "Toolbox" +msgstr "Araç kutusu" + +#. Appearance +#: ../app/dialogs/preferences-dialog.c:1978 +#: ../app/dialogs/preferences-dialog.c:2152 +#: ../app/widgets/gimpgrideditor.c:204 +msgid "Appearance" +msgstr "Görünüm" + +#: ../app/dialogs/preferences-dialog.c:1982 +msgid "Show _foreground & background color" +msgstr "_Önalan ve artalan rengini göster" + +#: ../app/dialogs/preferences-dialog.c:1986 +msgid "Show active _brush, pattern & gradient" +msgstr "Etkin _fırçayı, deseni ve renk geçişini göster" + +#: ../app/dialogs/preferences-dialog.c:1990 +msgid "Show active _image" +msgstr "Etkin _görüntüyü göster" + +#: ../app/dialogs/preferences-dialog.c:2003 +msgid "Default New Image" +msgstr "Öntanımlı Yeni Resim" + +#: ../app/dialogs/preferences-dialog.c:2006 +msgid "Default Image" +msgstr "Öntanımlı Resim" + +#: ../app/dialogs/preferences-dialog.c:2043 +msgid "Default Image Grid" +msgstr "Öntanımlı Resim Kılavuzu" + +#: ../app/dialogs/preferences-dialog.c:2046 +msgid "Default Grid" +msgstr "Öntanımlı Kılavuz" + +#: ../app/dialogs/preferences-dialog.c:2067 +msgid "Image Windows" +msgstr "Resim Pencereleri" + +#: ../app/dialogs/preferences-dialog.c:2082 +msgid "Use \"_Dot for dot\" by default" +msgstr "Öntanımlı olarak \"_Noktadan noktaya\" kullan" + +#: ../app/dialogs/preferences-dialog.c:2088 +msgid "Marching _ants speed:" +msgstr "Yürüyen _karıncaların hızı:" + +#. Zoom & Resize Behavior +#: ../app/dialogs/preferences-dialog.c:2092 +msgid "Zoom & Resize Behavior" +msgstr "Odaklama ve Boyutlama Davranışı" + +#: ../app/dialogs/preferences-dialog.c:2096 +msgid "Resize window on _zoom" +msgstr "_Yakınlaştırırken pencereyi yeniden boyulandır" + +#: ../app/dialogs/preferences-dialog.c:2099 +msgid "Resize window on image _size change" +msgstr "Görüntü _boyutu değiştiğinde pencereyi yeniden boyulandır" + +#: ../app/dialogs/preferences-dialog.c:2105 +msgid "Fit to window" +msgstr "Pencereye uydur" + +#: ../app/dialogs/preferences-dialog.c:2107 +msgid "Initial zoom _ratio:" +msgstr "İlk yakınlaştırma _oranı:" + +#. Space Bar +#: ../app/dialogs/preferences-dialog.c:2111 +msgid "Space Bar" +msgstr "Ara Çubuğu" + +#: ../app/dialogs/preferences-dialog.c:2117 +msgid "_While space bar is pressed:" +msgstr "Ara _çubuğuna basıldığında:" + +#. Mouse Pointers +#: ../app/dialogs/preferences-dialog.c:2121 +msgid "Mouse Pointers" +msgstr "Fare İmleçleri" + +#: ../app/dialogs/preferences-dialog.c:2125 +msgid "Show _brush outline" +msgstr "_Fırçanın ana çizgilerini göster" + +#: ../app/dialogs/preferences-dialog.c:2128 +msgid "Show pointer for paint _tools" +msgstr "Boyama _araçları için imleci göster" + +#: ../app/dialogs/preferences-dialog.c:2134 +msgid "Pointer _mode:" +msgstr "İmleç _kipi:" + +#: ../app/dialogs/preferences-dialog.c:2137 +msgid "Pointer re_ndering:" +msgstr "İmleç i_şlemesi:" + +#: ../app/dialogs/preferences-dialog.c:2149 +msgid "Image Window Appearance" +msgstr "Resim Penceresi Görünümü" + +#: ../app/dialogs/preferences-dialog.c:2160 +msgid "Default Appearance in Normal Mode" +msgstr "Normal Kipte Öntanımlı Görünüm" + +#: ../app/dialogs/preferences-dialog.c:2165 +msgid "Default Appearance in Fullscreen Mode" +msgstr "Tam Ekrandaki Öntanımlı Görünüm" + +#: ../app/dialogs/preferences-dialog.c:2174 +msgid "Image Title & Statusbar Format" +msgstr "Resim Başlığı ve Durum Çubuğu Biçimi" + +#: ../app/dialogs/preferences-dialog.c:2177 +msgid "Title & Status" +msgstr "Başlık & Durum" + +#: ../app/dialogs/preferences-dialog.c:2195 +msgid "Current format" +msgstr "Geçerli biçim" + +#: ../app/dialogs/preferences-dialog.c:2196 +msgid "Default format" +msgstr "Öntanımlı biçim" + +#: ../app/dialogs/preferences-dialog.c:2197 +msgid "Show zoom percentage" +msgstr "Odak yüzdesini göster" + +#: ../app/dialogs/preferences-dialog.c:2198 +msgid "Show zoom ratio" +msgstr "Odaklama oranını göster" + +#: ../app/dialogs/preferences-dialog.c:2199 +msgid "Show image size" +msgstr "Görüntü boyutunu göster" + +#: ../app/dialogs/preferences-dialog.c:2212 +msgid "Image Title Format" +msgstr "Resim Başlık Formatı" + +#: ../app/dialogs/preferences-dialog.c:2214 +msgid "Image Statusbar Format" +msgstr "Resim Durum Çubuğu Formatı" + +#: ../app/dialogs/preferences-dialog.c:2299 +msgid "Display" +msgstr "Görünüm" + +#: ../app/dialogs/preferences-dialog.c:2315 +msgid "_Check style:" +msgstr "_Denetleme biçemi:" + +#: ../app/dialogs/preferences-dialog.c:2318 +msgid "Check _size:" +msgstr "_Boyutu denetle:" + +#: ../app/dialogs/preferences-dialog.c:2321 +msgid "Monitor Resolution" +msgstr "Monitör Çözünürlüğü" + +#: ../app/dialogs/preferences-dialog.c:2325 +#: ../app/widgets/gimpcursorview.c:124 ../app/widgets/gimpgrideditor.c:269 +#: ../app/widgets/gimpgrideditor.c:301 +msgid "Pixels" +msgstr "Piksel" + +#: ../app/dialogs/preferences-dialog.c:2347 +#: ../app/widgets/gimpimagepropview.c:476 +msgid "ppi" +msgstr "ppi" + +#: ../app/dialogs/preferences-dialog.c:2363 +#, c-format +msgid "_Detect automatically (currently %d × %d ppi)" +msgstr "_Kendiliğinden bul (şimdiki %d × %d ppi)" + +#: ../app/dialogs/preferences-dialog.c:2383 +msgid "_Enter manually" +msgstr "_Elle gir" + +#: ../app/dialogs/preferences-dialog.c:2398 +msgid "C_alibrate..." +msgstr "İ_nce ayarlama..." + +#: ../app/dialogs/preferences-dialog.c:2421 +msgid "Color Management" +msgstr "Renk Yönetimi" + +#: ../app/dialogs/preferences-dialog.c:2441 +msgid "_RGB profile:" +msgstr "_RGB profili:" + +#: ../app/dialogs/preferences-dialog.c:2442 +msgid "Select RGB Color Profile" +msgstr "RGB Renk Profilini Seç" + +#: ../app/dialogs/preferences-dialog.c:2443 +msgid "_CMYK profile:" +msgstr "_CMYK profili:" + +#: ../app/dialogs/preferences-dialog.c:2444 +msgid "Select CMYK Color Profile" +msgstr "CMYK Renk Profilini Seç" + +#: ../app/dialogs/preferences-dialog.c:2445 +msgid "_Monitor profile:" +msgstr "_Monitör profili:" + +#: ../app/dialogs/preferences-dialog.c:2446 +msgid "Select Monitor Color Profile" +msgstr "Monitör Renk Profilini Seç" + +#: ../app/dialogs/preferences-dialog.c:2447 +msgid "_Print simulation profile:" +msgstr "Benzetim profilini _yazdır:" + +#: ../app/dialogs/preferences-dialog.c:2448 +msgid "Select Printer Color Profile" +msgstr "Yazıcı Renk Profilini Seç" + +#: ../app/dialogs/preferences-dialog.c:2459 +msgid "_Mode of operation:" +msgstr "İşlem _Kipi:" + +#: ../app/dialogs/preferences-dialog.c:2489 +msgid "_Try to use the system monitor profile" +msgstr "Sistem monitörü profilini kullanmayı _deneyin" + +#: ../app/dialogs/preferences-dialog.c:2499 +msgid "_Display rendering intent:" +msgstr "_Görüntü işleme amacı:" + +#: ../app/dialogs/preferences-dialog.c:2508 +msgid "_Softproof rendering intent:" +msgstr "_Ön deney yapma amacı:" + +#: ../app/dialogs/preferences-dialog.c:2521 +msgid "Mark out of gamut colors" +msgstr "Dizi renklerinin dışındakileri işaretle" + +#: ../app/dialogs/preferences-dialog.c:2526 +msgid "Select Warning Color" +msgstr "Uyarı Rengini Seç" + +#: ../app/dialogs/preferences-dialog.c:2539 +msgid "File Open behaviour:" +msgstr "Dosya Açma davranışı:" + +#: ../app/dialogs/preferences-dialog.c:2551 +msgid "Input Devices" +msgstr "Giriş Aygıtları" + +#. Extended Input Devices +#: ../app/dialogs/preferences-dialog.c:2561 +msgid "Extended Input Devices" +msgstr "Gelişmiş Giriş Aygıtları" + +#: ../app/dialogs/preferences-dialog.c:2565 +msgid "Configure E_xtended Input Devices..." +msgstr "G_elişmiş Girdi Aygıtlarını Yapılandır..." + +#: ../app/dialogs/preferences-dialog.c:2572 +msgid "_Save input device settings on exit" +msgstr "Çıkarken girdi aygıtı ayarlarını _kaydet" + +#: ../app/dialogs/preferences-dialog.c:2576 +msgid "Save Input Device Settings _Now" +msgstr "Girdi Aygıtı Ayarlarını _Şimdi Kaydet" + +#: ../app/dialogs/preferences-dialog.c:2583 +msgid "_Reset Saved Input Device Settings to Default Values" +msgstr "Kaydedilmiş Girdi Aygıtı Ayarlarını Öntanımlı Değerlere _Getir" + +#: ../app/dialogs/preferences-dialog.c:2598 +msgid "Additional Input Controllers" +msgstr "Ek Girdi Denetleyicileri" + +#: ../app/dialogs/preferences-dialog.c:2601 +msgid "Input Controllers" +msgstr "Girdi Denetleyicileri" + +#: ../app/dialogs/preferences-dialog.c:2617 +msgid "Window Management" +msgstr "Pencere Yönetimi" + +#: ../app/dialogs/preferences-dialog.c:2626 +msgid "Window Manager Hints" +msgstr "Pencere Yöneticisi İpuçları" + +#: ../app/dialogs/preferences-dialog.c:2632 +msgid "Hint for the _toolbox:" +msgstr "_Araç çubuğu ipuçları:" + +#: ../app/dialogs/preferences-dialog.c:2636 +msgid "Hint for other _docks:" +msgstr "Diğer _rıhtımlar için ipuçları:" + +#: ../app/dialogs/preferences-dialog.c:2641 +msgid "Toolbox and other docks are transient to the active image window" +msgstr "" +"Araç kutusu ve diğer rıhtımlar, etkin görüntü penceresi için geçici durumda" + +#: ../app/dialogs/preferences-dialog.c:2646 +msgid "Focus" +msgstr "Odaklama" + +#: ../app/dialogs/preferences-dialog.c:2650 +msgid "Activate the _focused image" +msgstr "_Odaklanılmış görüntüyü etkinleştir" + +#. Window Positions +#: ../app/dialogs/preferences-dialog.c:2654 +msgid "Window Positions" +msgstr "Pencere Boyutları" + +#: ../app/dialogs/preferences-dialog.c:2657 +msgid "_Save window positions on exit" +msgstr "Çıkarken pencere konumlarını _kaydet" + +#: ../app/dialogs/preferences-dialog.c:2661 +msgid "Save Window Positions _Now" +msgstr "Pencere Konumlarını _Şimdi Kaydet" + +#: ../app/dialogs/preferences-dialog.c:2668 +msgid "_Reset Saved Window Positions to Default Values" +msgstr "Kaydedilmiş Pencere Konumlarını Öntanımlı Değerlere Getir" + +#: ../app/dialogs/preferences-dialog.c:2683 +msgid "Folders" +msgstr "Dizinler" + +#: ../app/dialogs/preferences-dialog.c:2703 +msgid "Temporary folder:" +msgstr "Geçici dizin:" + +#: ../app/dialogs/preferences-dialog.c:2704 +msgid "Select Folder for Temporary Files" +msgstr "Geçici Dosyalar için Dizin Seç" + +#: ../app/dialogs/preferences-dialog.c:2708 +msgid "Swap folder:" +msgstr "Takas dizini:" + +#: ../app/dialogs/preferences-dialog.c:2709 +msgid "Select Swap Folder" +msgstr "Takas Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2744 +msgid "Brush Folders" +msgstr "Fırça Dizini" + +#: ../app/dialogs/preferences-dialog.c:2746 +msgid "Select Brush Folders" +msgstr "Fırça Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2748 +msgid "Pattern Folders" +msgstr "Desen Dizini" + +#: ../app/dialogs/preferences-dialog.c:2750 +msgid "Select Pattern Folders" +msgstr "Desen Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2752 +msgid "Palette Folders" +msgstr "Palet Dizini" + +#: ../app/dialogs/preferences-dialog.c:2754 +msgid "Select Palette Folders" +msgstr "Palet Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2756 +msgid "Gradient Folders" +msgstr "Gradyan Dizini" + +#: ../app/dialogs/preferences-dialog.c:2758 +msgid "Select Gradient Folders" +msgstr "Gradyan Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2760 +msgid "Font Folders" +msgstr "Yazıtipi Dizinleri" + +#: ../app/dialogs/preferences-dialog.c:2762 +msgid "Select Font Folders" +msgstr "Yazıtipi Dizinlerini Seç" + +#: ../app/dialogs/preferences-dialog.c:2764 +msgid "Plug-In Folders" +msgstr "Eklenti Dizini" + +#: ../app/dialogs/preferences-dialog.c:2766 +msgid "Select Plug-In Folders" +msgstr "Eklenti Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2768 +msgid "Scripts" +msgstr "Betikler" + +#: ../app/dialogs/preferences-dialog.c:2768 +msgid "Script-Fu Folders" +msgstr "Betik Dizini" + +#: ../app/dialogs/preferences-dialog.c:2770 +msgid "Select Script-Fu Folders" +msgstr "Betik Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2772 +msgid "Module Folders" +msgstr "Modül Dizini" + +#: ../app/dialogs/preferences-dialog.c:2774 +msgid "Select Module Folders" +msgstr "Modül Dizinini Seç" + +#: ../app/dialogs/preferences-dialog.c:2776 +msgid "Interpreters" +msgstr "Yorumlayıcılar" + +#: ../app/dialogs/preferences-dialog.c:2776 +msgid "Interpreter Folders" +msgstr "Yorumlayıcı Dizinleri" + +#: ../app/dialogs/preferences-dialog.c:2778 +msgid "Select Interpreter Folders" +msgstr "Yorumlayıcı Dizinlerini Seç" + +#: ../app/dialogs/preferences-dialog.c:2780 +msgid "Environment Folders" +msgstr "Çevresel Dizinler" + +#: ../app/dialogs/preferences-dialog.c:2782 +msgid "Select Environment Folders" +msgstr "Çevresel Dizinleri Seç" + +#: ../app/dialogs/preferences-dialog.c:2784 +msgid "Themes" +msgstr "Temalar" + +#: ../app/dialogs/preferences-dialog.c:2784 +msgid "Theme Folders" +msgstr "Tema Dizinleri" + +#: ../app/dialogs/preferences-dialog.c:2786 +msgid "Select Theme Folders" +msgstr "Tema Dizinlerini Seç" + +#: ../app/dialogs/print-size-dialog.c:138 +msgid "Print Size" +msgstr "Yazdırma Boyutu" + +#. the image size labels +#: ../app/dialogs/print-size-dialog.c:165 ../app/widgets/gimpsizebox.c:202 +#: ../app/widgets/gimptemplateeditor.c:161 +msgid "_Width:" +msgstr "_Genişlik:" + +#: ../app/dialogs/print-size-dialog.c:172 ../app/widgets/gimpsizebox.c:206 +#: ../app/widgets/gimptemplateeditor.c:168 +msgid "H_eight:" +msgstr "_Yükseklik:" + +#. the resolution labels +#: ../app/dialogs/print-size-dialog.c:222 ../app/widgets/gimpsizebox.c:264 +#: ../app/widgets/gimptemplateeditor.c:288 +msgid "_X resolution:" +msgstr "_X çözünürlüğü:" + +#: ../app/dialogs/print-size-dialog.c:229 ../app/widgets/gimpsizebox.c:267 +#: ../app/widgets/gimptemplateeditor.c:295 +msgid "_Y resolution:" +msgstr "_Y çözünürlüğü:" + +#: ../app/dialogs/print-size-dialog.c:240 ../app/widgets/gimpsizebox.c:260 +#: ../app/widgets/gimptemplateeditor.c:308 +#, c-format +msgid "pixels/%a" +msgstr "piksel/%a" + +#: ../app/dialogs/quit-dialog.c:106 +msgid "Quit GIMP" +msgstr "GIMP'ten Çık" + +#: ../app/dialogs/quit-dialog.c:106 +msgid "Close All Images" +msgstr "Tüm Görüntüleri Kapat" + +#: ../app/dialogs/quit-dialog.c:165 +msgid "If you quit GIMP now, these changes will be lost." +msgstr "GIMP'ten şimdi çıkarsanız, değişiklikler kaybedilecektir." + +#: ../app/dialogs/quit-dialog.c:168 +msgid "If you close these images now, changes will be lost." +msgstr "Eğer görüntüleri şimdi kapatırsanız, değişiklikler kaybedilecektir." + +#: ../app/dialogs/quit-dialog.c:216 +#, c-format +msgid "There is one image with unsaved changes:" +msgid_plural "There are %d images with unsaved changes:" +msgstr[0] "Değişikliklerin kaydedilmediği %d görüntü:" + +#: ../app/dialogs/quit-dialog.c:238 +msgid "_Discard Changes" +msgstr "_Değişiklikleri Sil" + +#: ../app/dialogs/resize-dialog.c:119 +msgid "Canvas Size" +msgstr "Tuval Boyutu" + +#: ../app/dialogs/resize-dialog.c:130 ../app/dialogs/scale-dialog.c:109 +msgid "Layer Size" +msgstr "Katman Boyutu" + +#: ../app/dialogs/resize-dialog.c:294 +msgid "Resize _layers:" +msgstr "Ka_tmanları yeniden boyutlandır:" + +#: ../app/dialogs/resolution-calibrate-dialog.c:70 +msgid "Calibrate Monitor Resolution" +msgstr "Ekran Çözünürlüğünü Kalibre Et" + +#: ../app/dialogs/resolution-calibrate-dialog.c:128 +msgid "Measure the rulers and enter their lengths:" +msgstr "Cetvelleri ölçülendir ve uzunluklarını gir:" + +#: ../app/dialogs/resolution-calibrate-dialog.c:153 +msgid "_Horizontal:" +msgstr "_Yatay:" + +#: ../app/dialogs/resolution-calibrate-dialog.c:158 +msgid "_Vertical:" +msgstr "_Dikey:" + +#. Image size frame +#: ../app/dialogs/scale-dialog.c:98 ../app/widgets/gimptemplateeditor.c:139 +msgid "Image Size" +msgstr "Resim Boyutu" + +#: ../app/dialogs/scale-dialog.c:175 +msgid "Quality" +msgstr "Kalite" + +#: ../app/dialogs/scale-dialog.c:187 +msgid "I_nterpolation:" +msgstr "_Aradeğerleme:" + +#: ../app/dialogs/scale-dialog.c:206 +msgid "" +"Indexed color layers are always scaled without interpolation. The chosen " +"interpolation type will affect channels and layer masks only." +msgstr "" +"Sıralanmış renk katmanları her zaman ara değerleme olmadan ölçeklenir. " +"Seçilmiş ara değerleme tipi sadece kanalları ve katman maskelerini etkiler." + +#: ../app/dialogs/stroke-dialog.c:102 +msgid "Choose Stroke Style" +msgstr "Darbeleme Yöntemini Seç" + +#: ../app/dialogs/stroke-dialog.c:225 +msgid "Paint tool:" +msgstr "Boyama aleti:" + +#: ../app/dialogs/stroke-dialog.c:246 +msgid "_Emulate brush dynamics" +msgstr "_Fırça hareketine benzet" + +#: ../app/dialogs/tips-dialog.c:89 +msgid "The GIMP tips file is empty!" +msgstr "GIMP ipucu dosyası boş!" + +#: ../app/dialogs/tips-dialog.c:93 +msgid "The GIMP tips file appears to be missing!" +msgstr "GIMP ipucu dosyası kayıp görünüyor!" + +#: ../app/dialogs/tips-dialog.c:95 +#, c-format +msgid "There should be a file called '%s'. Please check your installation." +msgstr "" +"Burada '%s' adında bir dosya olmalıydı. Lütfen kurulumunuzu denetleyin." + +#: ../app/dialogs/tips-dialog.c:101 +msgid "The GIMP tips file could not be parsed!" +msgstr "GIMP ipuçları dosyası okunamadı!" + +#: ../app/dialogs/tips-dialog.c:129 +msgid "GIMP Tip of the Day" +msgstr "Günün GIMP İpucu" + +#: ../app/dialogs/tips-dialog.c:135 +msgid "_Previous Tip" +msgstr "Ö_nceki İpucu" + +#: ../app/dialogs/tips-dialog.c:141 +msgid "_Next Tip" +msgstr "_Sonraki İpucu" + +#. a link to the related section in the user manual +#: ../app/dialogs/tips-dialog.c:194 +msgid "Learn more" +msgstr "Daha çok öğren" + +#. This is a special string to specify the language identifier to +#. look for in the gimp-tips.xml file. Please translate the C in it +#. according to the name of the po file used for gimp-tips.xml. +#. E.g. for the german translation, that would be "tips-locale:de". +#. +#: ../app/dialogs/tips-parser.c:188 +msgid "tips-locale:C" +msgstr "tips-locale:tr" + +#: ../app/dialogs/user-install-dialog.c:85 +msgid "GIMP User Installation" +msgstr "GIMP Kullanıcı Kurulumu" + +#: ../app/dialogs/user-install-dialog.c:94 +msgid "User installation failed!" +msgstr "Kullanıcı kurulumu başarısız!" + +#: ../app/dialogs/user-install-dialog.c:96 +msgid "The GIMP user installation failed; see the log for details." +msgstr "Kullanıcı kurulumu başarısız; ayrıntılar için günlüğe bakın." + +#: ../app/dialogs/user-install-dialog.c:99 +msgid "Installation Log" +msgstr "Kurulum Günlüğü" + +#: ../app/dialogs/vectors-export-dialog.c:55 +msgid "Export Path to SVG" +msgstr "SVG için Dışa Aktarma Yolu" + +#: ../app/dialogs/vectors-export-dialog.c:90 +msgid "Export the active path" +msgstr "Geçerli yolu taşı" + +#: ../app/dialogs/vectors-export-dialog.c:91 +msgid "Export all paths from this image" +msgstr "Bu görüntüden tüm yolları dışa aktar" + +#: ../app/dialogs/vectors-import-dialog.c:58 +msgid "Import Paths from SVG" +msgstr "SVG'den Yolları İçe Aktar" + +#: ../app/dialogs/vectors-import-dialog.c:92 +#: ../app/widgets/gimpprofilechooserdialog.c:132 +msgid "All files (*.*)" +msgstr "Tüm dosyalar (*.*)" + +#: ../app/dialogs/vectors-import-dialog.c:97 +msgid "Scalable SVG image (*.svg)" +msgstr "Ölçeklenebilir SVG görüntüsü (*.svg)" + +#: ../app/dialogs/vectors-import-dialog.c:108 +msgid "_Merge imported paths" +msgstr "İçe aktarılmış yolları _birleştir" + +#: ../app/dialogs/vectors-import-dialog.c:118 +msgid "_Scale imported paths to fit image" +msgstr "Görüntüye uyması için içe aktarılmış yolları _ölçekle" + +#: ../app/dialogs/vectors-options-dialog.c:121 +msgid "Path name:" +msgstr "Yol adı:" + +#: ../app/display/display-enums.c:24 +msgid "Tool icon" +msgstr "Alet simgesi" + +#: ../app/display/display-enums.c:25 +msgid "Tool icon with crosshair" +msgstr "Artı imleci ile alet simgesi" + +#: ../app/display/display-enums.c:26 +msgid "Crosshair only" +msgstr "Sadece Kesişik Yollar" + +#: ../app/display/display-enums.c:85 +msgid "From theme" +msgstr "Temadan" + +#: ../app/display/display-enums.c:86 +msgid "Light check color" +msgstr "Açık denetleme rengi" + +#: ../app/display/display-enums.c:87 +msgid "Dark check color" +msgstr "Koyu denetleme rengi" + +#: ../app/display/display-enums.c:88 +msgid "Custom color" +msgstr "Özel renk" + +#: ../app/display/display-enums.c:116 +msgid "No action" +msgstr "Eylem Yok" + +#: ../app/display/display-enums.c:117 +msgid "Pan view" +msgstr "Engin Görünüm" + +#: ../app/display/display-enums.c:118 +msgid "Switch to Move tool" +msgstr "Taşıma aracına çevir" + +#: ../app/display/display-enums.c:145 +msgid "quality|Low" +msgstr "quality|Düşük" + +#: ../app/display/display-enums.c:146 +msgid "quality|High" +msgstr "quality|Yüksek" + +#: ../app/display/gimpdisplay-handlers.c:160 +#, c-format +msgid "Image saved to '%s'" +msgstr "Görüntünün kaydedildiği yer, '%s'" + +#: ../app/display/gimpdisplayshell.c:1035 +msgid "Access the image menu" +msgstr "Görüntü menüsüne erişim" + +#: ../app/display/gimpdisplayshell.c:1140 +msgid "Zoom image when window size changes" +msgstr "Pencere boyutu değiştiğinde görüntüye yakınlaştır" + +#: ../app/display/gimpdisplayshell.c:1190 +msgid "Navigate the image display" +msgstr "Resim ekranında dolaş" + +#: ../app/display/gimpdisplayshell.c:1285 +#: ../app/display/gimpdisplayshell.c:1375 ../app/widgets/gimptoolbox.c:222 +msgid "Drop image files here to open them" +msgstr "Görüntü dosyalarını açmak için buraya bırakın" + +#: ../app/display/gimpdisplayshell-close.c:147 +#: ../app/display/gimpdisplayshell-close.c:224 +#, c-format +msgid "Close %s" +msgstr "'%s' Dosyası Kapatılsın mı?" + +#: ../app/display/gimpdisplayshell-close.c:159 +msgid "Do_n't Save" +msgstr "Ka_ydetme" + +#: ../app/display/gimpdisplayshell-close.c:231 +#, c-format +msgid "Save the changes to image '%s' before closing?" +msgstr "%s resmi üzerinde yapılan değişiklikleri kaydetmek istiyor musunuz?" + +#: ../app/display/gimpdisplayshell-close.c:254 +#, c-format +msgid "If you don't save the image, changes from the last hour will be lost." +msgid_plural "" +"If you don't save the image, changes from the last %d hours will be lost." +msgstr[0] "" +"Eğer görüntüyü kaydetmezseniz son %d saatteki değişiklikler kaybedilecek." + +#: ../app/display/gimpdisplayshell-close.c:264 +#, c-format +msgid "" +"If you don't save the image, changes from the last hour and %d minute will " +"be lost." +msgid_plural "" +"If you don't save the image, changes from the last hour and %d minutes will " +"be lost." +msgstr[0] "" +"Eğer görüntüyü kaydetmezseniz son bir saat ve %d dakikadaki değişiklikler " +"kaybedilecek." + +#: ../app/display/gimpdisplayshell-close.c:275 +#, c-format +msgid "" +"If you don't save the image, changes from the last minute will be lost." +msgid_plural "" +"If you don't save the image, changes from the last %d minutes will be lost." +msgstr[0] "" +"Eğer görüntüyü kaydetmezseniz son %d dakikadaki değişiklikler kaybedilecek." + +#: ../app/display/gimpdisplayshell-dnd.c:255 +#: ../app/display/gimpdisplayshell-dnd.c:587 +#: ../app/display/gimpdisplayshell-dnd.c:658 +msgid "Drop New Layer" +msgstr "Yeni Katmanı Düşür" + +#: ../app/display/gimpdisplayshell-dnd.c:301 +msgid "Drop New Path" +msgstr "Yeni Yolu Düşür" + +#: ../app/display/gimpdisplayshell-dnd.c:497 +#: ../app/widgets/gimplayertreeview.c:719 +msgid "Drop layers" +msgstr "Katmanları Düşür" + +#: ../app/display/gimpdisplayshell-dnd.c:648 +#: ../app/widgets/gimplayertreeview.c:801 ../app/widgets/gimptoolbox-dnd.c:361 +msgid "Dropped Buffer" +msgstr "Düşürülmüş Arabellek" + +#: ../app/display/gimpdisplayshell-filter-dialog.c:75 +msgid "Color Display Filters" +msgstr "Renk Görünüm Filtreleri" + +#: ../app/display/gimpdisplayshell-filter-dialog.c:78 +msgid "Configure Color Display Filters" +msgstr "Renk Görünüm Süzgeçlerini Yapılandır" + +#: ../app/display/gimpdisplayshell-layer-select.c:120 +msgid "Layer Select" +msgstr "Katman Seçimi" + +#: ../app/display/gimpdisplayshell-scale-dialog.c:114 +msgid "Zoom Ratio" +msgstr "Ölçek Oranı" + +#: ../app/display/gimpdisplayshell-scale-dialog.c:116 +msgid "Select Zoom Ratio" +msgstr "Ölçek Oranını Seçin" + +#: ../app/display/gimpdisplayshell-scale-dialog.c:159 +msgid "Zoom ratio:" +msgstr "Yakınlaştırma oranı:" + +#: ../app/display/gimpdisplayshell-scale-dialog.c:184 +msgid "Zoom:" +msgstr "Odakla:" + +#: ../app/display/gimpdisplayshell-title.c:233 +msgid "RGB-empty" +msgstr "RGB-boş" + +#: ../app/display/gimpdisplayshell-title.c:236 +msgid "grayscale-empty" +msgstr "griölçek-boş" + +#: ../app/display/gimpdisplayshell-title.c:236 +msgid "grayscale" +msgstr "griölçek" + +#: ../app/display/gimpdisplayshell-title.c:239 +msgid "indexed-empty" +msgstr "indisli-boş" + +#: ../app/display/gimpdisplayshell-title.c:239 +msgid "indexed" +msgstr "indisli" + +#: ../app/display/gimpdisplayshell-title.c:293 +msgid "(modified)" +msgstr "(değiştirildi)" + +#: ../app/display/gimpdisplayshell-title.c:298 +msgid "(clean)" +msgstr "(temiz)" + +#: ../app/display/gimpdisplayshell-title.c:346 +#: ../app/display/gimpdisplayshell-title.c:359 +#: ../app/widgets/gimpactiongroup.c:805 +msgid "(none)" +msgstr "(hiçbiri)" + +#: ../app/display/gimpstatusbar.c:364 +#, c-format +msgid "Cancel %s" +msgstr "Vazgeç %s" + +#: ../app/file/file-open.c:131 ../app/file/file-save.c:111 +#, c-format +msgid "Not a regular file" +msgstr "Normal bir dosya değil" + +#: ../app/file/file-open.c:183 +#, c-format +msgid "%s plug-in returned SUCCESS but did not return an image" +msgstr "%s eklentisi BAŞARIYLA dönüştü. Fakat bir resme dönüşmedi" + +#: ../app/file/file-open.c:194 +#, c-format +msgid "%s plug-In could not open image" +msgstr "%s eklentisi görüntüyü açamadı" + +#: ../app/file/file-open.c:455 +#, c-format +msgid "Image doesn't contain any layers" +msgstr "Görüntü hiçbir katman içermiyor" + +#: ../app/file/file-open.c:505 +#, c-format +msgid "Opening '%s' failed: %s" +msgstr "%s dosyasını açma başarısız oldu: %s" + +#: ../app/file/file-open.c:613 +msgid "" +"Color management has been disabled. It can be enabled again in the " +"Preferences dialog." +msgstr "" +"Renk yönetimi etkisizleştirilmiş. Yeğlenenler kutusundan yeniden " +"etkinleştirilebilir." + +#: ../app/file/file-procedure.c:200 +#, c-format +msgid "Unknown file type" +msgstr "Bilinmeyen dosya türü" + +#: ../app/file/file-save.c:192 +#, c-format +msgid "%s plug-in could not save image" +msgstr "%s eklentisi görüntüyü kaydedemedi" + +#: ../app/file/file-utils.c:74 +#, c-format +msgid "'%s:' is not a valid URI scheme" +msgstr "'%s:' geçerli bir adres düzeni değil" + +#: ../app/file/file-utils.c:88 ../app/file/file-utils.c:122 +#, c-format +msgid "Invalid character sequence in URI" +msgstr "Adreste geçersiz karakter sırası" + +#: ../app/gegl/gimpcurvesconfig.c:384 +#, c-format +msgid "not a GIMP Curves file" +msgstr "GIMP Eğrileri dosyası değil" + +#: ../app/gegl/gimpcurvesconfig.c:398 ../app/gegl/gimplevelsconfig.c:711 +#, c-format +msgid "parse error" +msgstr "ayrıştırma hatası" + +#: ../app/gegl/gimplevelsconfig.c:664 +#, c-format +msgid "not a GIMP Levels file" +msgstr "bir GIMP Düzeyleri dosyası değil" + +#. initialize the document history +#: ../app/gui/gui.c:426 +msgid "Documents" +msgstr "Belgeler" + +#: ../app/gui/splash.c:116 +msgid "GIMP Startup" +msgstr "GIMP Başlangıcı" + +#: ../app/paint/gimpairbrush.c:69 ../app/tools/gimpairbrushtool.c:54 +msgid "Airbrush" +msgstr "Sprey" + +#: ../app/paint/gimpbrushcore.c:353 +#, c-format +msgid "No brushes available for use with this tool." +msgstr "Bu aletle kullanılabilecek fırça yok." + +#: ../app/paint/gimpclone.c:99 ../app/tools/gimpclonetool.c:61 +msgid "Clone" +msgstr "Kopyala" + +#: ../app/paint/gimpclone.c:140 +#, c-format +msgid "No patterns available for use with this tool." +msgstr "Bu aletle kullanılabilecek desen yok." + +#: ../app/paint/gimpconvolve.c:77 +msgid "Convolve" +msgstr "Evriştirme" + +#: ../app/paint/gimpdodgeburn.c:87 +msgid "Dodge/Burn" +msgstr "Temizle/Yak" + +#: ../app/paint/gimperaser.c:62 ../app/tools/gimperasertool.c:66 +msgid "Eraser" +msgstr "Silgi" + +#: ../app/paint/gimpheal.c:115 ../app/tools/gimphealtool.c:53 +msgid "Heal" +msgstr "İyileştir" + +#: ../app/paint/gimpheal.c:154 +#, c-format +msgid "Healing does not operate on indexed layers." +msgstr "İyileştirme, sıralanmış katmanlar üzerinde uygulanamaz." + +#: ../app/paint/gimppaintbrush.c:63 ../app/tools/gimppaintbrushtool.c:51 +msgid "Paintbrush" +msgstr "Boya Fırçası" + +#: ../app/paint/gimppaintcore-stroke.c:332 +#, c-format +msgid "Not enough points to stroke" +msgstr "İşaretlemek için yeterli nokta yok" + +#: ../app/paint/gimppencil.c:42 ../app/tools/gimppenciltool.c:51 +msgid "Pencil" +msgstr "Kalem" + +#: ../app/paint/gimpperspectiveclone.c:97 ../app/paint/paint-enums.c:52 +#: ../app/tools/gimpperspectiveclonetool.c:126 +msgid "Perspective Clone" +msgstr "Perspektif Kopya" + +#: ../app/paint/gimpperspectiveclone.c:162 +#, c-format +msgid "Perspective Clone does not operate on indexed layers." +msgstr "Perspektif Kopya sıralanmış katmanlar üzerinde uygulanamaz." + +#: ../app/paint/gimpsmudge.c:78 ../app/tools/gimpsmudgetool.c:53 +msgid "Smudge" +msgstr "Lekeleme" + +#: ../app/paint/gimpsourcecore.c:227 +#, c-format +msgid "Set a source image first." +msgstr "Önce bir kaynak görüntü ayarlayın." + +#: ../app/paint/paint-enums.c:51 +msgid "Modify Perspective" +msgstr "Perspektifi Değiştir" + +#: ../app/paint/paint-enums.c:82 +msgid "Aligned" +msgstr "Hizalı" + +#: ../app/paint/paint-enums.c:83 +msgid "Registered" +msgstr "Kayıtlı" + +#: ../app/paint/paint-enums.c:84 +msgid "Fixed" +msgstr "Sabitlendi" + +#: ../app/paint/paint-enums.c:111 +msgid "Blur" +msgstr "Bulanıklaştır" + +#: ../app/paint/paint-enums.c:112 +msgid "Sharpen" +msgstr "Keskinleştir" + +#: ../app/pdb/channel-cmds.c:183 +msgid "Combine Masks" +msgstr "Maskeleri Birleştir" + +#: ../app/pdb/drawable-transform-cmds.c:310 +#: ../app/pdb/drawable-transform-cmds.c:395 +#: ../app/pdb/transform-tools-cmds.c:146 ../app/tools/gimpperspectivetool.c:69 +msgid "Perspective" +msgstr "Perspektif" + +#: ../app/pdb/drawable-transform-cmds.c:832 +#: ../app/pdb/drawable-transform-cmds.c:904 +#: ../app/pdb/transform-tools-cmds.c:362 ../app/tools/gimpsheartool.c:111 +msgid "Shearing" +msgstr "Kesme" + +#: ../app/pdb/drawable-transform-cmds.c:989 +#: ../app/pdb/transform-tools-cmds.c:438 +msgid "2D Transform" +msgstr "2B Dönüşüm" + +#: ../app/pdb/drawable-transform-cmds.c:1072 +#: ../app/pdb/drawable-transform-cmds.c:1165 +#: ../app/pdb/drawable-transform-cmds.c:1256 +msgid "2D Transforming" +msgstr "2B Dönüştürme" + +#: ../app/pdb/edit-cmds.c:709 ../app/tools/gimpblendtool.c:225 +msgid "Blending" +msgstr "Harmanlama" + +#: ../app/pdb/floating-sel-cmds.c:63 +#, c-format +msgid "Cannot remove this layer because it is not a floating selection." +msgstr "Bu katman kaldırılamıyor çünkü bu yüzen bir seçim değil." + +#: ../app/pdb/floating-sel-cmds.c:95 +#, c-format +msgid "Cannot anchor this layer because it is not a floating selection." +msgstr "Bu katmana demir atılamıyor çünkü bu yüzen bir seçim değil." + +#: ../app/pdb/floating-sel-cmds.c:127 +#, c-format +msgid "" +"Cannot convert this layer to a normal layer because it is not a floating " +"selection." +msgstr "" +"Bu katman normal bir katmana dönüştürülemiyor çünkü bu yüzen bir seçim değil." + +#: ../app/pdb/floating-sel-cmds.c:188 +#, c-format +msgid "Cannot rigor this layer because it is not a floating selection." +msgstr "Bu katman katılaştırılamıyor çünkü bu yüzen bir seçim değil." + +#: ../app/pdb/floating-sel-cmds.c:222 +#, c-format +msgid "Cannot relax this layer because it is not a floating selection." +msgstr "Bu katman yumuşatılamıyor çünkü bu yüzen bir seçim değil." + +#: ../app/pdb/gimppdb-query.c:300 ../app/pdb/gimppdb.c:307 +#: ../app/pdb/gimppdb.c:377 +#, c-format +msgid "Procedure '%s' not found" +msgstr "'%s' yordamı bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:61 +#, c-format +msgid "Invalid empty brush name" +msgstr "Geçersiz boş fırça adı" + +#: ../app/pdb/gimppdb-utils.c:71 +#, c-format +msgid "Brush '%s' not found" +msgstr "'%s' fırçası bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:76 +#, c-format +msgid "Brush '%s' is not editable" +msgstr "'%s' fırçası düzenlenebilir değil" + +#: ../app/pdb/gimppdb-utils.c:102 +#, c-format +msgid "Brush '%s' is not a generated brush" +msgstr "'%s' fırçası oluşturulmuş bir fırça değil" + +#: ../app/pdb/gimppdb-utils.c:122 +#, c-format +msgid "Invalid empty pattern name" +msgstr "Geçersiz boş desen adı" + +#: ../app/pdb/gimppdb-utils.c:132 +#, c-format +msgid "Pattern '%s' not found" +msgstr "'%s' deseni bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:152 +#, c-format +msgid "Invalid empty gradient name" +msgstr "Geçersiz boş renk geçişi adı" + +#: ../app/pdb/gimppdb-utils.c:162 +#, c-format +msgid "Gradient '%s' not found" +msgstr "'%s' renk geçişi bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:167 +#, c-format +msgid "Gradient '%s' is not editable" +msgstr "'%s' renk geçişi düzenlenebilir değil" + +#: ../app/pdb/gimppdb-utils.c:188 +#, c-format +msgid "Invalid empty palette name" +msgstr "Geçersiz boş palet adı" + +#: ../app/pdb/gimppdb-utils.c:198 +#, c-format +msgid "Palette '%s' not found" +msgstr "'%s' paleti bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:203 +#, c-format +msgid "Palette '%s' is not editable" +msgstr "'%s' paleti düzenlenebilir değil" + +#: ../app/pdb/gimppdb-utils.c:223 +#, c-format +msgid "Invalid empty font name" +msgstr "Geçersiz boş yazıyüzü adı" + +#: ../app/pdb/gimppdb-utils.c:233 +#, c-format +msgid "Font '%s' not found" +msgstr "'%s' yazıyüzü bulunamadı" + +#: ../app/pdb/gimppdb-utils.c:252 +#, c-format +msgid "Invalid empty buffer name" +msgstr "Geçersiz boş arabellek adı" + +#: ../app/pdb/gimppdb-utils.c:262 +#, c-format +msgid "Named buffer '%s' not found" +msgstr "'%s' adlandırılmış arabellek bulunanamadı" + +#: ../app/pdb/gimppdb-utils.c:281 +#, c-format +msgid "Invalid empty paint method name" +msgstr "Geçersiz boş boyama yöntemi adı" + +#: ../app/pdb/gimppdb-utils.c:291 +#, c-format +msgid "Paint method '%s' does not exist" +msgstr "'%s' boyama yöntemi mevcut değil" + +#: ../app/pdb/gimppdb-utils.c:307 +#, c-format +msgid "" +"Item '%s' (%d) can not be used because it has not been added to an image" +msgstr "'%s' (%d) öğesi kullanılamadı çünkü bir görüntüye eklenmemiş" + +#: ../app/pdb/gimppdb-utils.c:329 +#, c-format +msgid "Item '%s' (%d) has already been added to an image" +msgstr "'%s' (%d) öğesi zaten bir görüntüye eklenmiş" + +#: ../app/pdb/gimppdb-utils.c:337 +#, c-format +msgid "Trying to add item '%s' (%d) to wrong image" +msgstr "'%s' (%d) öğesi yanlış görünüye eklenmeye çalışılıyor" + +#: ../app/pdb/gimppdb-utils.c:356 +#, c-format +msgid "Layer '%s' (%d) can not be used because it is not a text layer" +msgstr "'%s' (%d) katmanı kullanılamadı çünkü bir metin katmanı değil" + +#: ../app/pdb/gimppdb-utils.c:401 +#, c-format +msgid "" +"Image '%s' (%d) is of type '%s', but an image of type '%s' is expected" +msgstr "" +"'%s' (%d) görüntüsü '%s' türünde, ancak '%s' türündeki bir görüntü bekleniyor" + +#: ../app/pdb/gimppdb-utils.c:430 +#, c-format +msgid "Image '%s' (%d) is already of type '%s'" +msgstr "'%s' (%d) görüntüsü zaten '%s' türünde" + +#: ../app/pdb/gimppdb-utils.c:455 +#, c-format +msgid "Vectors object %d does not contain stroke with ID %d" +msgstr "%d vektörel nesnesi %d kimliği ile bir vuruş içermiyor" + +#: ../app/pdb/gimppdb.c:411 +#, c-format +msgid "" +"Procedure '%s' has been called with a wrong type for argument #%d. Expected " +"%s, got %s." +msgstr "" +"'%s' yordamı, yanlış türdeki bir #%d bağımsız değişkeni için çağrıldı. " +"İstenen %s, olan %s." + +#: ../app/pdb/gimpprocedure.c:361 ../app/plug-in/gimppluginprocframe.c:209 +#, c-format +msgid "Procedure '%s' returned no return values" +msgstr "'%s' yöntemi, değeri olmayana dönüştü" + +#: ../app/pdb/gimpprocedure.c:585 +#, c-format +msgid "" +"Procedure '%s' returned a wrong value type for return value '%s' (#%d). " +"Expected %s, got %s." +msgstr "" +"'%s' yöntemi, '%s' dönüşüm değeri için yanlış bir değer türüne dönüştü " +"(#%d). Beklenen %s, alınan %s." + +#: ../app/pdb/gimpprocedure.c:597 +#, c-format +msgid "" +"Procedure '%s' has been called with a wrong value type for argument '%s' " +"(#%d). Expected %s, got %s." +msgstr "" +"'%s' yöntemi, '%s' argümanı için yanlış bir değer türü ile çağrıldı (#%d). " +"Beklenen %s, alınan %s." + +#: ../app/pdb/gimpprocedure.c:629 +#, c-format +msgid "" +"Procedure '%s' returned an invalid ID for argument '%s'. Most likely a plug-" +"in is trying to work on a layer that doesn't exist any longer." +msgstr "" +"'%s' yöntemi, '%s' argümanı için geçersiz bir kimliğe dönüştü. En çok benzer " +"eklenti, artık bulunmayan bir katmanda çalışacak şekilde deneniyor." + +#: ../app/pdb/gimpprocedure.c:641 +#, c-format +msgid "" +"Procedure '%s' has been called with an invalid ID for argument '%s'. Most " +"likely a plug-in is trying to work on a layer that doesn't exist any longer." +msgstr "" +"'%s' yöntemi, '%s' argümanı için geçersiz bir kimlik ile çağrıldı. En çok " +"benzer eklenti, artık bulunmayan bir katmanda çalışacak şekilde deneniyor." + +#: ../app/pdb/gimpprocedure.c:657 +#, c-format +msgid "" +"Procedure '%s' returned an invalid ID for argument '%s'. Most likely a plug-" +"in is trying to work on an image that doesn't exist any longer." +msgstr "" +"'%s' yöntemi, '%s' argümanı için geçersiz bir kimliğe dönüştü. En çok benzer " +"eklenti, artık bulunmayan bir resimde çalışacak şekilde deneniyor." + +#: ../app/pdb/gimpprocedure.c:669 +#, c-format +msgid "" +"Procedure '%s' has been called with an invalid ID for argument '%s'. Most " +"likely a plug-in is trying to work on an image that doesn't exist any longer." +msgstr "" +"'%s' yöntemi, '%s' argümanı için geçersiz bir kimlik ile çağrıldı. En çok " +"benzer eklenti, artık bulunmayan bir resimde çalışacak şekilde deneniyor." + +#: ../app/pdb/gimpprocedure.c:689 +#, c-format +msgid "" +"Procedure '%s' returned '%s' as return value '%s' (#%d, type %s). This value " +"is out of range." +msgstr "" +"'%s' yöntemi, '%s' e, '%s' dönüşüm değeri olarak dönüştü (#%d, %s türü). Bu " +"değer, istenenin dışındadır." + +#: ../app/pdb/gimpprocedure.c:702 +#, c-format +msgid "" +"Procedure '%s' has been called with value '%s' for argument '%s' (#%d, type " +"%s). This value is out of range." +msgstr "" +"'%s' yöntemi, '%s' ile, '%s' argümanı için çağrıldı (#%d,%s türü). Bu değer " +"istenenin dışındadır." + +#: ../app/pdb/image-cmds.c:2268 +#, c-format +msgid "" +"Image resolution is out of bounds, using the default resolution instead." +msgstr "" +"Resim çözünürlüğü izin verilen sınırların dışında, öntanımlı çözünürlük " +"kullanılacak" + +#: ../app/pdb/selection-tools-cmds.c:218 ../app/tools/gimpfreeselecttool.c:197 +msgid "Free Select" +msgstr "Serbest Seçim" + +#: ../app/pdb/text-layer-cmds.c:90 +#, c-format +msgid "Failed to create text layer" +msgstr "Metin katmanı oluşturma başarısız" + +#: ../app/pdb/text-layer-cmds.c:163 ../app/pdb/text-layer-cmds.c:235 +#: ../app/pdb/text-layer-cmds.c:314 ../app/pdb/text-layer-cmds.c:394 +#: ../app/pdb/text-layer-cmds.c:467 ../app/pdb/text-layer-cmds.c:539 +#: ../app/pdb/text-layer-cmds.c:611 ../app/pdb/text-layer-cmds.c:683 +#: ../app/pdb/text-layer-cmds.c:755 ../app/pdb/text-layer-cmds.c:825 +#: ../app/pdb/text-layer-cmds.c:897 ../app/pdb/text-layer-cmds.c:969 +#: ../app/pdb/text-layer-cmds.c:1041 +msgid "Set text layer attribute" +msgstr "Metin katmanı özniteliğini ayarla" + +#: ../app/plug-in/gimpenvirontable.c:282 +#, c-format +msgid "Empty variable name in environment file %s" +msgstr "%s çevresel dosya içinde boş değişken adı" + +#: ../app/plug-in/gimpenvirontable.c:300 +#, c-format +msgid "Illegal variable name in environment file %s: %s" +msgstr "%s çevresel dosya içinde geçersiz değişken adı: %s" + +#: ../app/plug-in/gimpinterpreterdb.c:264 +#, c-format +msgid "Bad interpreter referenced in interpreter file %s: %s" +msgstr "%s yorumlayıcı dosyası içinde kötü yorumlayıcı başvurusu: %s" + +#: ../app/plug-in/gimpinterpreterdb.c:323 +#, c-format +msgid "Bad binary format string in interpreter file %s" +msgstr "%s yorumlayıcı dosyası içinde kötü ikili biçimi dizgisi" + +#: ../app/plug-in/gimpplugin-message.c:423 +#, c-format +msgid "" +"Calling error for procedure '%s':\n" +"%s" +msgstr "" +"'%s' yordamı için çağırma hatası:\n" +"%s" + +#: ../app/plug-in/gimpplugin-message.c:432 +#, c-format +msgid "" +"Execution error for procedure '%s':\n" +"%s" +msgstr "" +"'%s' yordamı için uygulama hatası:\n" +"%s" + +#: ../app/plug-in/gimpplugin-progress.c:330 +msgid "Cancelled" +msgstr "Vazgeçildi" + +#: ../app/plug-in/gimpplugin.c:639 +#, c-format +msgid "" +"Plug-in crashed: \"%s\"\n" +"(%s)\n" +"\n" +"The dying plug-in may have messed up GIMP's internal state. You may want to " +"save your images and restart GIMP to be on the safe side." +msgstr "" +"Eklenti çöktü: \"%s\"\n" +"(%s)\n" +"\n" +"Ölen eklenti GIMP'in iç durumunu karıştırmış olabilir. Çalışmalarınızı " +"kaydedip GIMP'i yeniden başlatmanızı öneriririz." + +#: ../app/plug-in/gimppluginmanager-call.c:173 +#: ../app/plug-in/gimppluginmanager-call.c:223 +#: ../app/plug-in/gimppluginmanager-call.c:321 +#, c-format +msgid "Failed to run plug-in \"%s\"" +msgstr "\"%s\" eklentisini çalıştırma başarısız oldu" + +#: ../app/plug-in/gimppluginmanager-restore.c:222 +msgid "Searching Plug-Ins" +msgstr "Eklentiler Aranıyor" + +#: ../app/plug-in/gimppluginmanager-restore.c:271 +msgid "Resource configuration" +msgstr "Kaynak ayarları" + +#: ../app/plug-in/gimppluginmanager-restore.c:307 +msgid "Querying new Plug-ins" +msgstr "Yeni eklentiler aranıyor" + +#: ../app/plug-in/gimppluginmanager-restore.c:357 +msgid "Initializing Plug-ins" +msgstr "Eklentiler Çalıştırılıyor" + +#: ../app/plug-in/gimppluginmanager-restore.c:429 +msgid "Starting Extensions" +msgstr "Uzantılar Başlatılıyor" + +#: ../app/plug-in/gimppluginmanager.c:290 +msgid "Plug-In Interpreters" +msgstr "Eklenti yorumlayıcıları" + +#: ../app/plug-in/gimppluginmanager.c:297 +msgid "Plug-In Environment" +msgstr "Eklenti Sistemi" + +#: ../app/plug-in/gimppluginprocedure.c:989 +#, c-format +msgid "" +"Calling error for '%s':\n" +"%s" +msgstr "" +"'%s' için çağırma hatası:\n" +"%s" + +#: ../app/plug-in/gimppluginprocedure.c:1001 +#, c-format +msgid "" +"Execution error for '%s':\n" +"%s" +msgstr "" +"'%s' için uygulama hatası:\n" +"%s" + +#: ../app/plug-in/plug-in-icc-profile.c:113 +#: ../app/plug-in/plug-in-icc-profile.c:188 +#: ../app/plug-in/plug-in-icc-profile.c:247 +#, c-format +msgid "Error running '%s'" +msgstr "'%s' çalıştırılırkan hata" + +#: ../app/plug-in/plug-in-icc-profile.c:137 +#: ../app/plug-in/plug-in-icc-profile.c:198 +#: ../app/plug-in/plug-in-icc-profile.c:257 +#, c-format +msgid "Plug-In missing (%s)" +msgstr "Kayıp eklenti (%s)" + +#: ../app/plug-in/plug-in-rc.c:206 +#, c-format +msgid "Skipping '%s': wrong GIMP protocol version." +msgstr "'%s' atlanıyor: yanlış GIMP iletişim kuralı sürümü." + +#: ../app/plug-in/plug-in-rc.c:479 +#, c-format +msgid "invalid value '%s' for icon type" +msgstr "'%s' geçersiz değerinin olduğu simge türü" + +#: ../app/plug-in/plug-in-rc.c:494 +#, c-format +msgid "invalid value '%ld' for icon type" +msgstr "'%ld' geçersiz değerinin olduğu simge türü" + +#. This is a so-called pangram; it's supposed to +#. contain all characters found in the alphabet. +#: ../app/text/gimpfont.c:45 +msgid "" +"Pack my box with\n" +"five dozen liquor jugs." +msgstr "" +"Kutumu paketle\n" +"beş düzine demlik çayı." + +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:901 +msgid "Add Text Layer" +msgstr "Metin Katmanı Ekle" + +#: ../app/text/gimptextlayer.c:138 +msgid "Text Layer" +msgstr "Metin Katmanı" + +#: ../app/text/gimptextlayer.c:139 +msgid "Rename Text Layer" +msgstr "Metin Katmanını Yeniden Adlandır" + +#: ../app/text/gimptextlayer.c:140 +msgid "Move Text Layer" +msgstr "Metin Katmanını Taşı" + +#: ../app/text/gimptextlayer.c:141 +msgid "Scale Text Layer" +msgstr "Metin Katmanını Ölçekle" + +#: ../app/text/gimptextlayer.c:142 +msgid "Resize Text Layer" +msgstr "Metin Katmanını Yeniden Boyutlandır" + +#: ../app/text/gimptextlayer.c:143 +msgid "Flip Text Layer" +msgstr "Metin Katmanını Çevir" + +#: ../app/text/gimptextlayer.c:144 +msgid "Rotate Text Layer" +msgstr "Metin Katmanını Döndür" + +#: ../app/text/gimptextlayer.c:145 +msgid "Transform Text Layer" +msgstr "Metin Katmanını Dönüştür" + +#: ../app/text/gimptextlayer.c:492 +msgid "Discard Text Information" +msgstr "Metin Bilgisini Sil" + +#: ../app/text/gimptextlayer.c:543 +msgid "Due to lack of any fonts, text functionality is not available." +msgstr "" +"Bir yazıyüzü eksikliğinden dolayı, metin işlevselliği kullanılabilir değil." + +#: ../app/text/gimptextlayer.c:579 +msgid "Empty Text Layer" +msgstr "Boş Metin Katmanı" + +#: ../app/text/gimptextlayer-xcf.c:75 +#, c-format +msgid "" +"Problems parsing the text parasite for layer '%s':\n" +"%s\n" +"\n" +"Some text properties may be wrong. Unless you want to edit the text layer, " +"you don't need to worry about this." +msgstr "" +"'%s' katmanı için metin paraziti ayrıştırma problemleri:\n" +"%s\n" +"\n" +"Bazı metin özellikleri yanlış olabilir. Metin katmanını düzenlemek " +"istemedikçe, bunun hakkında endişelenmenize gerek yok." + +#: ../app/tools/gimp-tools.c:335 +msgid "" +"This tool has\n" +"no options." +msgstr "" +"Bu aletin\n" +"hiç seçeneği yok." + +#: ../app/tools/gimpairbrushtool.c:55 +msgid "Airbrush Tool: Paint using a brush, with variable pressure" +msgstr "" +"Hava Fırçası Aracı: Değişken basınç ile boyarken bir fırça kullanılır" + +#: ../app/tools/gimpairbrushtool.c:56 +msgid "_Airbrush" +msgstr "_Hava Fırçası" + +#: ../app/tools/gimpairbrushtool.c:92 ../app/tools/gimpconvolvetool.c:217 +#: ../app/tools/gimpsmudgetool.c:97 +msgid "Rate:" +msgstr "Oran:" + +#: ../app/tools/gimpairbrushtool.c:98 ../app/tools/gimppaintoptions-gui.c:198 +msgid "Pressure:" +msgstr "Basınç:" + +#: ../app/tools/gimpaligntool.c:134 ../app/tools/gimpaligntool.c:766 +msgid "Align" +msgstr "Hizala" + +#: ../app/tools/gimpaligntool.c:135 +msgid "Alignment Tool: Align or arrange layers and other objects" +msgstr "Hizalama Aracı: Katmanları ve diğer nesneleri hizala ya da sırala" + +#: ../app/tools/gimpaligntool.c:136 +msgid "_Align" +msgstr "_Hizala" + +#: ../app/tools/gimpaligntool.c:599 +msgid "Click on a layer, path or guide, or Click-Drag to pick several layers" +msgstr "" +"Bir katmanı, yolu veya kılavuzu tıklayın, ya da birkaç katman seçmek için " +"Sürüklemeyi-Tıklayın" + +#: ../app/tools/gimpaligntool.c:608 +msgid "Click to pick this layer as first item" +msgstr "Bu katmanı ilk öğe olarak seçmek için tıklayın" + +#: ../app/tools/gimpaligntool.c:616 +msgid "Click to add this layer to the list" +msgstr "Bu katmanı listeye eklemek için tıklayın" + +#: ../app/tools/gimpaligntool.c:620 +msgid "Click to pick this guide as first item" +msgstr "Bu kılavuzu ilk öğe olarak seçmek için tıklayın" + +#: ../app/tools/gimpaligntool.c:628 +msgid "Click to add this guide to the list" +msgstr "Bu kılavuzu listeye eklemek için tıklayın" + +#: ../app/tools/gimpaligntool.c:632 +msgid "Click to pick this path as first item" +msgstr "Bu yolu ilk öğe olarak seçmek için tıklayın" + +#: ../app/tools/gimpaligntool.c:640 +msgid "Click to add this path to the list" +msgstr "Bu yolu listeye eklemek için tıklayın" + +#: ../app/tools/gimpaligntool.c:778 +msgid "Relative to:" +msgstr "Göreli:" + +#: ../app/tools/gimpaligntool.c:796 +msgid "Align left edge of target" +msgstr "Hedefin sol kenarını hizala" + +#: ../app/tools/gimpaligntool.c:802 +msgid "Align center of target" +msgstr "Hedefin merkezini hizala" + +#: ../app/tools/gimpaligntool.c:808 +msgid "Align right edge of target" +msgstr "Hedefin sağ kenarını hizala" + +#: ../app/tools/gimpaligntool.c:818 +msgid "Align top edge of target" +msgstr "Hedefin üst kenarını hizala" + +#: ../app/tools/gimpaligntool.c:824 +msgid "Align middle of target" +msgstr "Hedefin ortasını hizala" + +#: ../app/tools/gimpaligntool.c:830 +msgid "Align bottom of target" +msgstr "Hedefin altını hizala" + +#: ../app/tools/gimpaligntool.c:834 +msgid "Distribute" +msgstr "Dağıt" + +#: ../app/tools/gimpaligntool.c:848 +msgid "Distribute left edges of targets" +msgstr "Hedeflerin sol kenarlarını dağıt" + +#: ../app/tools/gimpaligntool.c:855 +msgid "Distribute horizontal centers of targets" +msgstr "Hedeflerin yatay merkezlerini dağıt" + +#: ../app/tools/gimpaligntool.c:862 +msgid "Distribute right edges of targets" +msgstr "Hedeflerin sağ kenarlarını dağıt" + +#: ../app/tools/gimpaligntool.c:872 +msgid "Distribute top edges of targets" +msgstr "Hedeflerin üst kenarlarını dağıt" + +#: ../app/tools/gimpaligntool.c:879 +msgid "Distribute vertical centers of targets" +msgstr "Hedeflerin dikey merkezlerini dağıt" + +#: ../app/tools/gimpaligntool.c:885 +msgid "Distribute bottoms of targets" +msgstr "Hedeflerin altlarını dağıt" + +#: ../app/tools/gimpaligntool.c:893 ../app/tools/gimpblendoptions.c:222 +msgid "Offset:" +msgstr "Ofset:" + +#: ../app/tools/gimpblendoptions.c:216 ../app/tools/gimppaintoptions-gui.c:648 +msgid "Gradient:" +msgstr "Gradyan:" + +#: ../app/tools/gimpblendoptions.c:232 ../app/widgets/gimpbrusheditor.c:146 +msgid "Shape:" +msgstr "Şekil:" + +#: ../app/tools/gimpblendoptions.c:239 ../app/tools/gimppaintoptions-gui.c:672 +msgid "Repeat:" +msgstr "Tekrarlama:" + +#: ../app/tools/gimpblendoptions.c:257 +msgid "Adaptive supersampling" +msgstr "Süper örneklemeyi uyarla" + +#: ../app/tools/gimpblendoptions.c:265 +msgid "Max depth:" +msgstr "Azami derinlik:" + +#: ../app/tools/gimpblendoptions.c:272 +#: ../app/tools/gimpbucketfilloptions.c:287 +#: ../app/tools/gimpregionselectoptions.c:220 +msgid "Threshold:" +msgstr "Alt sınır:" + +#: ../app/tools/gimpblendtool.c:108 +msgid "Blend Tool: Fill selected area with a color gradient" +msgstr "Harmanlama Aracı: Seçilmiş alanı bir renk geçişi ile doldur" + +#: ../app/tools/gimpblendtool.c:109 +msgid "Blen_d" +msgstr "_Harmanlama" + +#: ../app/tools/gimpblendtool.c:164 +#, c-format +msgid "Blend does not operate on indexed layers." +msgstr "Harmanlama, sıralanmış katmanlarda uygulanamaz." + +#: ../app/tools/gimpblendtool.c:402 ../app/tools/gimppainttool.c:606 +#, c-format +msgid "%s for constrained angles" +msgstr "kısıtlanmış açılar için %s" + +#: ../app/tools/gimpblendtool.c:403 +#, c-format +msgid "%s to move the whole line" +msgstr "Bütün satırı taşımak için %s" + +#: ../app/tools/gimpblendtool.c:407 +msgid "Blend: " +msgstr "Harman: " + +#: ../app/tools/gimpbrightnesscontrasttool.c:112 +msgid "Brightness/Contrast Tool: Adjust brightness and contrast" +msgstr "Parlaklık/Karşıtlık Aracı: Parlaklık ve karşıtlığı ayarla" + +#: ../app/tools/gimpbrightnesscontrasttool.c:113 +msgid "B_rightness-Contrast..." +msgstr "_Parlaklık-Karşıtlık..." + +#: ../app/tools/gimpbrightnesscontrasttool.c:133 +msgid "Adjust Brightness and Contrast" +msgstr "Parlaklık ve Karşıtlığı Ayarla" + +#: ../app/tools/gimpbrightnesscontrasttool.c:135 +msgid "Import Brightness-Contrast settings" +msgstr "Parlaklık-Karşıtlık ayarlarını içe aktar" + +#: ../app/tools/gimpbrightnesscontrasttool.c:136 +msgid "Export Brightness-Contrast settings" +msgstr "Parlaklık-Karşıtlık ayarlarını dışa aktar" + +#: ../app/tools/gimpbrightnesscontrasttool.c:184 +#, c-format +msgid "Brightness-Contrast does not operate on indexed layers." +msgstr "Parlaklık-kontrast indisli katmanlar üzerinde kullanılamaz." + +#: ../app/tools/gimpbrightnesscontrasttool.c:325 +msgid "_Brightness:" +msgstr "_Parlaklık:" + +#: ../app/tools/gimpbrightnesscontrasttool.c:340 +msgid "Con_trast:" +msgstr "_Kontrast:" + +#: ../app/tools/gimpbrightnesscontrasttool.c:354 +msgid "Edit these Settings as Levels" +msgstr "Bu Ayarları, Düzey olarak düzenle" + +#: ../app/tools/gimpbucketfilloptions.c:100 +msgid "Allow completely transparent regions to be filled" +msgstr "Saydam bölgelerin tamamen doldurulmasına izin ver" + +#: ../app/tools/gimpbucketfilloptions.c:106 +msgid "Base filled area on all visible layers" +msgstr "Tüm görünür katmanlar üzerinde tabanı doldurulmuş alan" + +#: ../app/tools/gimpbucketfilloptions.c:112 +#: ../app/tools/gimpregionselectoptions.c:96 +msgid "Maximum color difference" +msgstr "Azami renk farklılığı" + +#. fill type +#: ../app/tools/gimpbucketfilloptions.c:226 +#, c-format +msgid "Fill Type (%s)" +msgstr "Doldurma Türü: (%s)" + +#. fill selection +#: ../app/tools/gimpbucketfilloptions.c:239 +#, c-format +msgid "Affected Area (%s)" +msgstr "Etkilenen Bölge (%s)" + +#: ../app/tools/gimpbucketfilloptions.c:243 +msgid "Fill whole selection" +msgstr "Tüm seçimi doldur" + +#: ../app/tools/gimpbucketfilloptions.c:244 +msgid "Fill similar colors" +msgstr "Benzer renklerle doldur" + +#: ../app/tools/gimpbucketfilloptions.c:253 +msgid "Finding Similar Colors" +msgstr "Benzer Renklerin Bulunması" + +#: ../app/tools/gimpbucketfilloptions.c:269 +msgid "Fill transparent areas" +msgstr "Saydam alanları doldur" + +#: ../app/tools/gimpbucketfilloptions.c:275 ../app/tools/gimpclonetool.c:114 +#: ../app/tools/gimpcolorpickeroptions.c:151 ../app/tools/gimphealtool.c:99 +#: ../app/tools/gimpperspectiveclonetool.c:941 +#: ../app/tools/gimpregionselectoptions.c:208 +msgid "Sample merged" +msgstr "Birleştirme örneği" + +#: ../app/tools/gimpbucketfilloptions.c:294 +msgid "Fill by:" +msgstr "Doldur:" + +#: ../app/tools/gimpbucketfilltool.c:81 +msgid "Bucket Fill" +msgstr "Kovadan Dolum" + +#: ../app/tools/gimpbucketfilltool.c:82 +msgid "Bucket Fill Tool: Fill selected area with a color or pattern" +msgstr "" +"Kovadan Dolum Aracı: Seçilmiş bölgeyi bir renkle ya da desenle doldur" + +#: ../app/tools/gimpbucketfilltool.c:83 +msgid "_Bucket Fill" +msgstr "_Kovadan Dolum" + +#: ../app/tools/gimpbycolorselecttool.c:67 +msgid "Select by Color" +msgstr "Renk ile Seç" + +#: ../app/tools/gimpbycolorselecttool.c:68 +msgid "Select by Color Tool: Select regions with similar colors" +msgstr "Renge göre Seçim Aracı: Bölgeleri benzer renklerle seç" + +#: ../app/tools/gimpbycolorselecttool.c:69 +msgid "_By Color Select" +msgstr "_Renk Seçimine Göre" + +#: ../app/tools/gimpclonetool.c:62 +msgid "Clone Tool: Selectively copy from an image or pattern, using a brush" +msgstr "" +"Kopyalama Aracı: Bir görüntüden ya da desenden, bir fırça kullanıp seçerek " +"kopyalayın" + +#: ../app/tools/gimpclonetool.c:63 +msgid "_Clone" +msgstr "_Kopyala" + +#: ../app/tools/gimpclonetool.c:86 ../app/tools/gimpclonetool.c:89 +msgid "Click to clone" +msgstr "Kopyalama için Tıklayın" + +#: ../app/tools/gimpclonetool.c:87 ../app/tools/gimpclonetool.c:91 +#, c-format +msgid "%s to set a new clone source" +msgstr "Yeni bir kopyalama kaynağı ayarlamak için %s" + +#: ../app/tools/gimpclonetool.c:90 +msgid "Click to set a new clone source" +msgstr "Yeni bir kopyalama aracı ayarlamak için tıklayın" + +#: ../app/tools/gimpclonetool.c:109 +#: ../app/tools/gimpperspectiveclonetool.c:936 +msgid "Source" +msgstr "Kaynak" + +#: ../app/tools/gimpclonetool.c:128 ../app/tools/gimphealtool.c:111 +#: ../app/tools/gimpperspectiveclonetool.c:955 +msgid "Alignment:" +msgstr "Hizalama:" + +#: ../app/tools/gimpcolorbalancetool.c:95 +msgid "Color Balance Tool: Adjust color distribution" +msgstr "Renk Dengesi Aracı: Renk dağılımını ayarlayın" + +#: ../app/tools/gimpcolorbalancetool.c:96 +msgid "Color _Balance..." +msgstr "Renk _Dengesi..." + +#: ../app/tools/gimpcolorbalancetool.c:113 +msgid "Adjust Color Balance" +msgstr "Renk Dengesini Ayarla" + +#: ../app/tools/gimpcolorbalancetool.c:115 +msgid "Import Color Balance Settings" +msgstr "Renk Dengesi Ayarlarını İçe Aktar" + +#: ../app/tools/gimpcolorbalancetool.c:116 +msgid "Export Color Balance Settings" +msgstr "Renk Dengesi Ayarlarını Dışa Aktar" + +#: ../app/tools/gimpcolorbalancetool.c:163 +#, c-format +msgid "Color Balance operates only on RGB color layers." +msgstr "Renk Dengesi sadece RGB renk katmanlarında uygulanabilir." + +#: ../app/tools/gimpcolorbalancetool.c:270 +msgid "Select Range to Adjust" +msgstr "Ayarlamak için Erim Seç" + +#: ../app/tools/gimpcolorbalancetool.c:279 ../app/tools/gimplevelstool.c:172 +msgid "Adjust Color Levels" +msgstr "Renk Seviyelerini Ayarla" + +#: ../app/tools/gimpcolorbalancetool.c:296 +#: ../app/tools/gimphuesaturationtool.c:255 +msgid "Cyan" +msgstr "Turkuaz" + +#: ../app/tools/gimpcolorbalancetool.c:305 +#: ../app/tools/gimphuesaturationtool.c:257 +msgid "Magenta" +msgstr "Pembe" + +#: ../app/tools/gimpcolorbalancetool.c:314 +#: ../app/tools/gimphuesaturationtool.c:253 +msgid "Yellow" +msgstr "Sarı" + +#: ../app/tools/gimpcolorbalancetool.c:325 +msgid "R_eset Range" +msgstr "Aralığı _Sıfırla" + +#: ../app/tools/gimpcolorbalancetool.c:334 +msgid "Preserve _luminosity" +msgstr "Parlaklığı _koru" + +#: ../app/tools/gimpcolorizetool.c:91 +msgid "Colorize Tool: Colorize the image" +msgstr "Renklendirme Aracı: Görüntüyü renklendir" + +#: ../app/tools/gimpcolorizetool.c:92 +msgid "Colori_ze..." +msgstr "_Renklendir..." + +#: ../app/tools/gimpcolorizetool.c:109 +msgid "Colorize the Image" +msgstr "Resmi Renklendir" + +#: ../app/tools/gimpcolorizetool.c:111 +msgid "Import Colorize Settings" +msgstr "Renklendirme Ayarlarını İçe Aktar" + +#: ../app/tools/gimpcolorizetool.c:112 +msgid "Export Colorize Settings" +msgstr "Renklendirme Ayarlarını Dışa Aktar" + +#: ../app/tools/gimpcolorizetool.c:156 +#, c-format +msgid "Colorize operates only on RGB color layers." +msgstr "Renklendirme sadece RGB renk katmanlarında uygulanabilir." + +#: ../app/tools/gimpcolorizetool.c:221 +msgid "Select Color" +msgstr "Rengi Seç" + +#: ../app/tools/gimpcolorizetool.c:238 +#: ../app/tools/gimphuesaturationtool.c:388 +msgid "_Hue:" +msgstr "Renk _Özü:" + +#: ../app/tools/gimpcolorizetool.c:253 +#: ../app/tools/gimphuesaturationtool.c:426 +msgid "_Saturation:" +msgstr "_Doygunluk:" + +#: ../app/tools/gimpcolorizetool.c:268 +#: ../app/tools/gimphuesaturationtool.c:407 +msgid "_Lightness:" +msgstr "_Aydınlanma:" + +#: ../app/tools/gimpcoloroptions.c:161 +msgid "Sample average" +msgstr "Örnek ortalama" + +#: ../app/tools/gimpcoloroptions.c:171 +#: ../app/tools/gimprectangleselectoptions.c:176 +#: ../app/tools/gimpselectionoptions.c:281 +#: ../app/widgets/gimpbrusheditor.c:154 +msgid "Radius:" +msgstr "Yarıçap:" + +#. the pick FG/BG frame +#: ../app/tools/gimpcolorpickeroptions.c:156 +#, c-format +msgid "Pick Mode (%s)" +msgstr "Seçme Kipi (%s)" + +#. the use_info_window toggle button +#: ../app/tools/gimpcolorpickeroptions.c:165 +#, c-format +msgid "Use info window (%s)" +msgstr "Bilgi penceresi kullan (%s)" + +#: ../app/tools/gimpcolorpickertool.c:96 +msgid "Color Picker" +msgstr "Renk Alıcı" + +#: ../app/tools/gimpcolorpickertool.c:97 +msgid "Color Picker Tool: Set colors from image pixels" +msgstr "Renk Seçme Aracı: Görüntü beneklerinden renk seç" + +#: ../app/tools/gimpcolorpickertool.c:98 +msgid "C_olor Picker" +msgstr "_Renk Alıcı" + +#: ../app/tools/gimpcolorpickertool.c:242 +msgid "Click in any image to view its color" +msgstr "Rengini görmek için herhangi bir görüntüye tıklayın" + +#: ../app/tools/gimpcolorpickertool.c:249 ../app/tools/gimppainttool.c:509 +msgid "Click in any image to pick the foreground color" +msgstr "Önalan rengini seçmek için herhangi bir görüntüye tıklayın" + +#: ../app/tools/gimpcolorpickertool.c:257 ../app/tools/gimppainttool.c:515 +msgid "Click in any image to pick the background color" +msgstr "Artalan rengini seçmek için herhangi bir görüntüye tıklayın" + +#: ../app/tools/gimpcolorpickertool.c:265 +msgid "Click in any image to add the color to the palette" +msgstr "Palete renk eklemek için herhangi bir görüntüye tıklayın" + +#. tool->display->shell +#: ../app/tools/gimpcolorpickertool.c:318 +msgid "Color Picker Information" +msgstr "Renk Alıcı Bilgisi" + +#: ../app/tools/gimpcolortool.c:258 ../app/tools/gimpcolortool.c:437 +msgid "Move Sample Point: " +msgstr "Örnek Noktayı Taşı: " + +#: ../app/tools/gimpcolortool.c:430 +msgid "Cancel Sample Point" +msgstr "Örnek Noktadan Vazgeç" + +#: ../app/tools/gimpcolortool.c:438 +msgid "Add Sample Point: " +msgstr "Örnek Nokta Ekle: " + +#: ../app/tools/gimpconvolvetool.c:73 +msgid "Blur / Sharpen" +msgstr "Bulanıklaştır / Keskinleştir" + +#: ../app/tools/gimpconvolvetool.c:74 +msgid "Blur / Sharpen Tool: Selective blurring or unblurring using a brush" +msgstr "" +"Bulanıklaştırma / Keskinleştirme Aracı: Fırça kullanarak seçici " +"bulanıklaştırma ya da tersi" + +#: ../app/tools/gimpconvolvetool.c:75 +msgid "Bl_ur / Sharpen" +msgstr "B_ulanıklaştır / Keskinleştir" + +#: ../app/tools/gimpconvolvetool.c:170 +msgid "Click to blur" +msgstr "Bulanıklaştırmak için tıklayın" + +#: ../app/tools/gimpconvolvetool.c:171 +msgid "Click to blur the line" +msgstr "Çizgiyi bulanıklaştırmak için tıklayın" + +#: ../app/tools/gimpconvolvetool.c:172 +#, c-format +msgid "%s to sharpen" +msgstr "Keskinleştirmek için %s" + +#: ../app/tools/gimpconvolvetool.c:176 +msgid "Click to sharpen" +msgstr "Keskinleştirmek için tıklayın" + +#: ../app/tools/gimpconvolvetool.c:177 +msgid "Click to sharpen the line" +msgstr "Çizgiyi keskinleştirmek için tıklayın" + +#: ../app/tools/gimpconvolvetool.c:178 +#, c-format +msgid "%s to blur" +msgstr "Bulanıklaştırmak için %s" + +#. the type radio box +#: ../app/tools/gimpconvolvetool.c:199 +#, c-format +msgid "Convolve Type (%s)" +msgstr "Evriştime Türü (%s)" + +#: ../app/tools/gimpcropoptions.c:161 +msgid "Current layer only" +msgstr "Sadece etkin katman" + +#: ../app/tools/gimpcropoptions.c:167 +msgid "Allow growing" +msgstr "Büyümeye izin ver" + +#: ../app/tools/gimpcroptool.c:126 +msgid "Crop" +msgstr "Kırp" + +#: ../app/tools/gimpcroptool.c:127 +msgid "Crop Tool: Remove edge areas from image or layer" +msgstr "Kırpma Aracı: Görüntüden ya da katmandan kenar alanlarını kaldır" + +#: ../app/tools/gimpcroptool.c:128 +msgid "_Crop" +msgstr "_Kırp" + +#: ../app/tools/gimpcroptool.c:269 +msgid "Click or press Enter to crop" +msgstr "Kırpma için \"Enter\" tuşuna basın" + +#: ../app/tools/gimpcurvestool.c:141 +msgid "Curves Tool: Adjust color curves" +msgstr "Eğri Aracı: Renk eğrilerini ayarla" + +#: ../app/tools/gimpcurvestool.c:142 +msgid "_Curves..." +msgstr "_Eğriler..." + +#: ../app/tools/gimpcurvestool.c:168 +msgid "Adjust Color Curves" +msgstr "Renk Eğrilerini Ayarla" + +#: ../app/tools/gimpcurvestool.c:170 +msgid "Import Curves" +msgstr "Eğrileri İçe Aktar" + +#: ../app/tools/gimpcurvestool.c:171 +msgid "Export Curves" +msgstr "Eğrileri Dışa Aktar" + +#: ../app/tools/gimpcurvestool.c:221 +#, c-format +msgid "Curves does not operate on indexed layers." +msgstr "Eğriler sıralanmış katmanlarda uygulanamaz." + +#: ../app/tools/gimpcurvestool.c:323 +msgid "Click to add a control point" +msgstr "Bir kontrol noktası eklemek için tıklayın" + +#: ../app/tools/gimpcurvestool.c:328 +msgid "Click to add control points to all channels" +msgstr "Tüm kanallara kontrol noktaları eklemek için tıklayın" + +#: ../app/tools/gimpcurvestool.c:441 ../app/tools/gimplevelstool.c:380 +msgid "Cha_nnel:" +msgstr "_Kanal:" + +#: ../app/tools/gimpcurvestool.c:467 ../app/tools/gimplevelstool.c:404 +msgid "R_eset Channel" +msgstr "Kanalı _Sıfırla" + +#: ../app/tools/gimpcurvestool.c:557 +msgid "Curve _type:" +msgstr "Eğri _tipi:" + +#: ../app/tools/gimpcurvestool.c:632 ../app/tools/gimplevelstool.c:752 +#, c-format +msgid "Could not read header from '%s': %s" +msgstr "'%s' başlığı okunamadı: %s" + +#: ../app/tools/gimpcurvestool.c:705 +msgid "Use _old curves file format" +msgstr "_Eski kavislerin dosya biçimini kullan" + +#: ../app/tools/gimpdesaturatetool.c:78 +msgid "Desaturate Tool: Turn colors into shades of gray" +msgstr "Solgunlaştırma Aracı: Renkleri gri tonlara dönüştür" + +#: ../app/tools/gimpdesaturatetool.c:79 +msgid "_Desaturate..." +msgstr "_Solgunlaştır..." + +#: ../app/tools/gimpdesaturatetool.c:93 +msgid "Desaturate (Remove Colors)" +msgstr "Solgunlaştırma (Renkleri Kaldır)" + +#: ../app/tools/gimpdesaturatetool.c:125 +#, c-format +msgid "Desaturate does only operate on RGB layers." +msgstr "Solgunlaştırma sadece RGB katmanlarında uygulanabilir." + +#: ../app/tools/gimpdesaturatetool.c:191 +msgid "Choose shade of gray based on:" +msgstr "Gri gölgelemeyi seç:" + +#: ../app/tools/gimpdodgeburntool.c:73 +msgid "Dodge / Burn" +msgstr "Temizle / Yak" + +#: ../app/tools/gimpdodgeburntool.c:74 +msgid "Dodge / Burn Tool: Selectively lighten or darken using a brush" +msgstr "" +"Temizleme / Yakma Aracı: Fırça kullanarak seçerek renk aç ya da koyulaştır" + +#: ../app/tools/gimpdodgeburntool.c:75 +msgid "Dod_ge / Burn" +msgstr "Te_mizle / Yak" + +#: ../app/tools/gimpdodgeburntool.c:173 +msgid "Click to dodge" +msgstr "Temizlemek için tıklayın" + +#: ../app/tools/gimpdodgeburntool.c:174 +msgid "Click to dodge the line" +msgstr "Çizgiyi temizlemek için tıklayın" + +#: ../app/tools/gimpdodgeburntool.c:175 +#, c-format +msgid "%s to burn" +msgstr "Yakmak için %s" + +#: ../app/tools/gimpdodgeburntool.c:179 +msgid "Click to burn" +msgstr "Yakmak için tıklayın" + +#: ../app/tools/gimpdodgeburntool.c:180 +msgid "Click to burn the line" +msgstr "Çizgiyi yakmak için tıklayın" + +#: ../app/tools/gimpdodgeburntool.c:181 +#, c-format +msgid "%s to dodge" +msgstr "Temizlemek için %s" + +#. the type (dodge or burn) +#: ../app/tools/gimpdodgeburntool.c:202 +#, c-format +msgid "Type (%s)" +msgstr "Tip (%s)" + +#. mode (highlights, midtones, or shadows) +#: ../app/tools/gimpdodgeburntool.c:213 +msgid "Range" +msgstr "Erim" + +#: ../app/tools/gimpdodgeburntool.c:225 +msgid "Exposure:" +msgstr "Belirlilik:" + +#: ../app/tools/gimpeditselectiontool.c:244 +#: ../app/tools/gimpeditselectiontool.c:1229 +msgid "Move Floating Selection" +msgstr "Yüzen Seçimi Taşı" + +#: ../app/tools/gimpeditselectiontool.c:457 +#: ../app/tools/gimpeditselectiontool.c:726 +msgid "Move: " +msgstr "Taşı: " + +#: ../app/tools/gimpellipseselecttool.c:68 +msgid "Ellipse Select" +msgstr "Eliptik Seçim" + +#: ../app/tools/gimpellipseselecttool.c:69 +msgid "Ellipse Select Tool: Select an elliptical region" +msgstr "Elips Seçim Aracı: Eliptik bir bölge seç" + +#: ../app/tools/gimpellipseselecttool.c:70 +msgid "_Ellipse Select" +msgstr "_Elips Seçimi" + +#: ../app/tools/gimperasertool.c:67 +msgid "Eraser Tool: Erase to background or transparency using a brush" +msgstr "" +"Silme Aracı: Bir fırça kullanarak artalana ya da saydamlığa yönelik sil" + +#: ../app/tools/gimperasertool.c:68 +msgid "_Eraser" +msgstr "_Silgi" + +#: ../app/tools/gimperasertool.c:97 +msgid "Click to erase" +msgstr "Silmek için tıklayın" + +#: ../app/tools/gimperasertool.c:98 +msgid "Click to erase the line" +msgstr "Çizgiyi silmek için tıklayın" + +#: ../app/tools/gimperasertool.c:99 +#, c-format +msgid "%s to pick a background color" +msgstr "Bir artalan rengi seçmek için %s" + +#. the anti_erase toggle +#: ../app/tools/gimperasertool.c:146 +#, c-format +msgid "Anti erase (%s)" +msgstr "Karşı silme (%s)" + +#: ../app/tools/gimpflipoptions.c:130 +msgid "Affect:" +msgstr "Etki:" + +#. tool toggle +#: ../app/tools/gimpflipoptions.c:139 +#, c-format +msgid "Flip Type (%s)" +msgstr "Çevirme Türü (%s)" + +#: ../app/tools/gimpfliptool.c:79 +msgid "Flip" +msgstr "Çevir" + +#: ../app/tools/gimpfliptool.c:80 +msgid "" +"Flip Tool: Reverse the layer, selection or path horizontally or vertically" +msgstr "" +"Çevirme Aracı: Katmanı, seçimi ya da yolu, yatay veya dikey olarak ters çevir" + +#: ../app/tools/gimpfliptool.c:82 +msgid "_Flip" +msgstr "_Çevir" + +#: ../app/tools/gimpforegroundselectoptions.c:79 +#: ../app/tools/gimpselectionoptions.c:79 +msgid "Smooth edges" +msgstr "Kenarları yumuşat" + +#: ../app/tools/gimpforegroundselectoptions.c:85 +msgid "Select a single contiguous area" +msgstr "Tek bir bitişik alan seç" + +#: ../app/tools/gimpforegroundselectoptions.c:96 +msgid "Size of the brush used for refinements" +msgstr "Saflık için kullanılacak fırçanın boyutu" + +#: ../app/tools/gimpforegroundselectoptions.c:102 +msgid "" +"Smaller values give a more accurate selection border but may introduce holes " +"in the selection" +msgstr "" +"Küçük değerler daha doğru bir seçim sınırı verir ama seçim içinde delikler " +"ortaya çıkabilir" + +#: ../app/tools/gimpforegroundselectoptions.c:121 +msgid "Sensitivity for brightness component" +msgstr "Parlaklık bileşeni için duyarlık" + +#: ../app/tools/gimpforegroundselectoptions.c:127 +msgid "Sensitivity for red/green component" +msgstr "Kırmızı/yeşil bileşen için duyarlık" + +#: ../app/tools/gimpforegroundselectoptions.c:133 +msgid "Sensitivity for yellow/blue component" +msgstr "Sarı/mave bileşen için duyarlık" + +#. single / multiple objects +#: ../app/tools/gimpforegroundselectoptions.c:276 +msgid "Contiguous" +msgstr "Sürekli" + +#. foreground / background +#: ../app/tools/gimpforegroundselectoptions.c:281 +#, c-format +msgid "Interactive refinement (%s)" +msgstr "Etkileşimli saflık (%s)" + +#: ../app/tools/gimpforegroundselectoptions.c:285 +msgid "Mark background" +msgstr "Artalanı imle" + +#: ../app/tools/gimpforegroundselectoptions.c:286 +msgid "Mark foreground" +msgstr "Önalanı imle" + +#: ../app/tools/gimpforegroundselectoptions.c:302 +msgid "Small brush" +msgstr "Küçük fırça" + +#: ../app/tools/gimpforegroundselectoptions.c:310 +msgid "Large brush" +msgstr "Geniş fırça" + +#: ../app/tools/gimpforegroundselectoptions.c:334 +msgid "Smoothing:" +msgstr "Yumuşatma:" + +#: ../app/tools/gimpforegroundselectoptions.c:340 +msgid "Preview color:" +msgstr "Renk önizleme:" + +#. granularity +#: ../app/tools/gimpforegroundselectoptions.c:343 +msgid "Color Sensitivity" +msgstr "Renk Duyarlığı" + +#: ../app/tools/gimpforegroundselecttool.c:145 +msgid "Foreground Select" +msgstr "Önalan Seçimi" + +#: ../app/tools/gimpforegroundselecttool.c:146 +msgid "Foreground Select Tool: Select a region containing foreground objects" +msgstr "Önalan Seçim Aracı: Önalan nesnelerini içeren bir bölge seçin" + +#: ../app/tools/gimpforegroundselecttool.c:147 +msgid "F_oreground Select" +msgstr "Önalan Seçimi" + +#: ../app/tools/gimpforegroundselecttool.c:314 +msgid "Add more strokes or press Enter to accept the selection" +msgstr "" +"Daha çok vuruş ekle ve seçimi kabul etmek için \"Enter\" tuşuna basın" + +#: ../app/tools/gimpforegroundselecttool.c:316 +msgid "Mark foreground by painting on the object to extract" +msgstr "Çıkarılacak nesne üzerini boyayarak önalanı imle" + +#: ../app/tools/gimpforegroundselecttool.c:327 +msgid "Rougly outline the object to extract" +msgstr "Kabaca çıkarılacak nesnenin çerçevesini çiz" + +#: ../app/tools/gimpforegroundselecttool.c:766 +msgctxt "command" +msgid "Foreground Select" +msgstr "Önalanı Seç" + +#: ../app/tools/gimpfreeselecttool.c:198 +msgid "" +"Free Select Tool: Select a hand-drawn region with free and polygonal segments" +msgstr "" +"Serbest Seçim Aracı: Serbest ve çok köşeli seçimlerle bir el-çizimi bölgesi " +"seç" + +#: ../app/tools/gimpfreeselecttool.c:199 +msgid "_Free Select" +msgstr "_Serbest Seçim" + +#: ../app/tools/gimpfreeselecttool.c:1117 +msgid "Click to complete selection" +msgstr "Seçimi tamamlamak için tıklayın" + +#: ../app/tools/gimpfreeselecttool.c:1121 +msgid "Click-Drag to move segment vertex" +msgstr "Kesimin tepe noktasına taşımak için sürükleyi tıklayın" + +#: ../app/tools/gimpfreeselecttool.c:1126 +msgid "Return commits, Escape cancels, Backspace removes last segment" +msgstr "" +"\"Return\" üstlenir, \"Escape\" vazgeçer, \"Backspace\" son kesimi kaldırır" + +#: ../app/tools/gimpfreeselecttool.c:1130 +msgid "Click-Drag adds a free segment, Click adds a polygonal segment" +msgstr "" +"Sürükleyi tıklamak serbest bir kesim ekler, tıklamak çok köşeli bir kesim " +"ekler" + +#: ../app/tools/gimpfreeselecttool.c:1582 +msgctxt "command" +msgid "Free Select" +msgstr "Serbest Seçim" + +#: ../app/tools/gimpfuzzyselecttool.c:65 +msgid "Fuzzy Select" +msgstr "Bulanık Seçim" + +#: ../app/tools/gimpfuzzyselecttool.c:66 +msgid "Fuzzy Select Tool: Select a contiguous region on the basis of color" +msgstr "Bulanık Seçim Aracı: Renk olarak sürekli bir bölge seçin" + +#: ../app/tools/gimpfuzzyselecttool.c:67 +msgid "Fu_zzy Select" +msgstr "_Bulanık Seçim" + +#: ../app/tools/gimpgegltool.c:92 ../app/tools/gimpgegltool.c:111 +msgid "GEGL Operation" +msgstr "GEGL İşlemi" + +#: ../app/tools/gimpgegltool.c:93 +msgid "GEGL Tool: Use an arbitrary GEGL operation" +msgstr "GEGL Aracı: İsteğe bağlı bir GEGL işlemi kullan" + +#: ../app/tools/gimpgegltool.c:94 +msgid "_GEGL Operation..." +msgstr "_GEGL İşlemi..." + +#: ../app/tools/gimpgegltool.c:158 +#, c-format +msgid "GEGL operations do not operate on indexed layers." +msgstr "GEGL işlemleri sıralanmış katmanlarda uygulanamaz." + +#: ../app/tools/gimpgegltool.c:339 +msgid "_Operation:" +msgstr "_İşlem:" + +#. The options vbox +#: ../app/tools/gimpgegltool.c:412 +msgid "Operation Settings" +msgstr "İşlem Ayarları" + +#: ../app/tools/gimphealtool.c:54 +msgid "Healing Tool: Heal image irregularities" +msgstr "İyileştirme Aracı: Görüntü düzensizliklerini iyileştir" + +#: ../app/tools/gimphealtool.c:55 +msgid "_Heal" +msgstr "_İyileştir" + +#: ../app/tools/gimphealtool.c:77 ../app/tools/gimphealtool.c:80 +msgid "Click to heal" +msgstr "İyileştirmek için tıklayın" + +#: ../app/tools/gimphealtool.c:78 ../app/tools/gimphealtool.c:82 +#, c-format +msgid "%s to set a new heal source" +msgstr "Yeni bir iyileştirme kaynağı ayarlamak için %s" + +#: ../app/tools/gimphealtool.c:81 +msgid "Click to set a new heal source" +msgstr "Yeni bir iyileştirme kaynağı ayarlamak için tıklayın" + +#: ../app/tools/gimphistogramoptions.c:127 +msgid "Histogram Scale" +msgstr "Histogram Ölçekleme" + +#: ../app/tools/gimphuesaturationtool.c:103 +msgid "Hue-Saturation Tool: Adjust hue, saturation, and lightness" +msgstr "" +"Renk Özü-Doygunluk Aracı: Renk özünü, doygunluğu ve hafifliği ayarlayın" + +#: ../app/tools/gimphuesaturationtool.c:104 +msgid "Hue-_Saturation..." +msgstr "_Renk-Doygunluk..." + +#: ../app/tools/gimphuesaturationtool.c:121 +msgid "Adjust Hue / Lightness / Saturation" +msgstr "Renk Özü / Hafiflik / Doygunluk Ayarı" + +#: ../app/tools/gimphuesaturationtool.c:123 +msgid "Import Hue-Saturation Settings" +msgstr "Renk Özü-Doygunluk Ayarlarını İçe Aktar" + +#: ../app/tools/gimphuesaturationtool.c:124 +msgid "Export Hue-Saturation Settings" +msgstr "Renk Özü-Doygunluk Ayarlarını Dışa Aktar" + +#: ../app/tools/gimphuesaturationtool.c:171 +#, c-format +msgid "Hue-Saturation operates only on RGB color layers." +msgstr "Renk Özü-Doygunluk sadece RGB renk katmanlarında uygulanabilir." + +#: ../app/tools/gimphuesaturationtool.c:251 +msgid "M_aster" +msgstr "_Ana" + +#: ../app/tools/gimphuesaturationtool.c:251 +msgid "Adjust all colors" +msgstr "Tüm renkleri ayarla" + +#: ../app/tools/gimphuesaturationtool.c:252 +msgid "_R" +msgstr "_R" + +#: ../app/tools/gimphuesaturationtool.c:253 +msgid "_Y" +msgstr "_Y" + +#: ../app/tools/gimphuesaturationtool.c:254 +msgid "_G" +msgstr "_G" + +#: ../app/tools/gimphuesaturationtool.c:255 +msgid "_C" +msgstr "_C" + +#: ../app/tools/gimphuesaturationtool.c:256 +msgid "_B" +msgstr "_B" + +#: ../app/tools/gimphuesaturationtool.c:257 +msgid "_M" +msgstr "_M" + +#: ../app/tools/gimphuesaturationtool.c:262 +msgid "Select Primary Color to Adjust" +msgstr "Ayarlanacak Birincil Renk Seçimi" + +#: ../app/tools/gimphuesaturationtool.c:352 +msgid "_Overlap:" +msgstr "_Örtüşme:" + +#: ../app/tools/gimphuesaturationtool.c:371 +msgid "Adjust Selected Color" +msgstr "Seçilen Rengi Ayarla" + +#: ../app/tools/gimphuesaturationtool.c:447 +msgid "R_eset Color" +msgstr "_Rengi Sıfırla" + +#: ../app/tools/gimpimagemaptool-settings.c:81 +msgid "Pre_sets:" +msgstr "Ön_ayarlar:" + +#: ../app/tools/gimpimagemaptool-settings.c:221 +#, c-format +msgid "Settings saved to '%s'" +msgstr "Ayararın kaydedildiği yer, '%s'" + +#: ../app/tools/gimpimagemaptool.c:318 +msgid "_Preview" +msgstr "Öniz_leme" + +#. adjust sliders +#: ../app/tools/gimpinkoptions-gui.c:56 +msgid "Adjustment" +msgstr "Ayarlama" + +#: ../app/tools/gimpinkoptions-gui.c:68 ../app/tools/gimpinkoptions-gui.c:93 +#: ../app/tools/gimprectangleoptions.c:973 ../app/tools/gimptextoptions.c:452 +msgid "Size:" +msgstr "Büyüklük:" + +#: ../app/tools/gimpinkoptions-gui.c:76 ../app/tools/gimpmeasuretool.c:1037 +#: ../app/widgets/gimpbrusheditor.c:208 +msgid "Angle:" +msgstr "Açı:" + +#. sens sliders +#: ../app/tools/gimpinkoptions-gui.c:81 +msgid "Sensitivity" +msgstr "Duyarlılık" + +#: ../app/tools/gimpinkoptions-gui.c:100 +msgid "Tilt:" +msgstr "Yatma:" + +#: ../app/tools/gimpinkoptions-gui.c:107 +msgid "Speed:" +msgstr "Hız:" + +#: ../app/tools/gimpinkoptions-gui.c:118 +msgid "Type" +msgstr "Tip" + +#. Blob shape widget +#: ../app/tools/gimpinkoptions-gui.c:149 +msgid "Shape" +msgstr "Şekil" + +#: ../app/tools/gimpinktool.c:56 +msgid "Ink Tool: Calligraphy-style painting" +msgstr "Mürekkep Aracı: Kaligrafi biçemle boyama" + +#: ../app/tools/gimpinktool.c:57 +msgid "In_k" +msgstr "_Mürekkep" + +#: ../app/tools/gimpiscissorsoptions.c:126 +msgid "Interactive boundary" +msgstr "Etkileşimli sınır" + +#: ../app/tools/gimpiscissorstool.c:278 +msgid "Scissors" +msgstr "Makas" + +#: ../app/tools/gimpiscissorstool.c:279 +msgid "Scissors Select Tool: Select shapes using intelligent edge-fitting" +msgstr "Makas Seçim Aracı:" + +#: ../app/tools/gimpiscissorstool.c:280 +msgid "Intelligent _Scissors" +msgstr "Akıllı _Makaslar" + +#: ../app/tools/gimpiscissorstool.c:940 ../app/tools/gimpmeasuretool.c:609 +msgid "Click-Drag to move this point" +msgstr "Bu noktayı taşımak için Sürükle'yi tıklayın" + +#: ../app/tools/gimpiscissorstool.c:942 ../app/tools/gimpiscissorstool.c:1007 +#, c-format +msgid "%s: disable auto-snap" +msgstr "%s: otomatik yanaştırma aktif değil" + +#: ../app/tools/gimpiscissorstool.c:959 +msgid "Click to close the curve" +msgstr "Eğriyi kapatmak için tıklayın" + +#: ../app/tools/gimpiscissorstool.c:965 +msgid "Click to add a point on this segment" +msgstr "Bu kesim üzerine bir nokta eklemek için tıklayın" + +#: ../app/tools/gimpiscissorstool.c:979 +msgid "Click or press Enter to convert to a selection" +msgstr "Bir seçime dönüştürmek için \"Enter\"a basın ya da tıklayın" + +#: ../app/tools/gimpiscissorstool.c:989 +msgid "Press Enter to convert to a selection" +msgstr "Bir seçime dönüştürmek için \"Enter\"a basın" + +#: ../app/tools/gimpiscissorstool.c:1004 +msgid "Click or Click-Drag to add a point" +msgstr "Bir nokta eklemek için tıklayın ya da Sürükle'ye tıklayın" + +#: ../app/tools/gimplevelstool.c:151 +msgid "Levels Tool: Adjust color levels" +msgstr "Düzey Aracı: Renk düzeylerini ayarla" + +#: ../app/tools/gimplevelstool.c:152 +msgid "_Levels..." +msgstr "_Seviyeler..." + +#: ../app/tools/gimplevelstool.c:174 +msgid "Import Levels" +msgstr "Düzeyleri İçe Aktar" + +#: ../app/tools/gimplevelstool.c:175 +msgid "Export Levels" +msgstr "Düzeyleri Dışa Aktar" + +#: ../app/tools/gimplevelstool.c:228 +#, c-format +msgid "Levels does not operate on indexed layers." +msgstr "Düzeyler sıralanmış katmanlar üzerinde uygulanamaz." + +#: ../app/tools/gimplevelstool.c:310 +msgid "Pick black point" +msgstr "Siyah nokta seç" + +#: ../app/tools/gimplevelstool.c:314 +msgid "Pick gray point" +msgstr "Gri nokta seç" + +#: ../app/tools/gimplevelstool.c:318 +msgid "Pick white point" +msgstr "Beyaz nokta seç" + +#. Input levels frame +#: ../app/tools/gimplevelstool.c:419 +msgid "Input Levels" +msgstr "Giriş Seviyeleri" + +#: ../app/tools/gimplevelstool.c:522 +msgid "Gamma" +msgstr "Gamma" + +#. Output levels frame +#: ../app/tools/gimplevelstool.c:564 +msgid "Output Levels" +msgstr "Çıkış Seviyeleri" + +#. all channels frame +#: ../app/tools/gimplevelstool.c:641 +msgid "All Channels" +msgstr "Tüm Kanallar" + +#: ../app/tools/gimplevelstool.c:655 +msgid "Adjust levels automatically" +msgstr "Seviyeleri otomatik ayarla" + +#: ../app/tools/gimplevelstool.c:682 +msgid "Edit these Settings as Curves" +msgstr "Bu Ayarları Eğri olarak düzenle" + +#: ../app/tools/gimplevelstool.c:825 +msgid "Use _old levels file format" +msgstr "_Eski seviyelerin dosya biçimini kullan" + +#: ../app/tools/gimpmagnifyoptions.c:167 +msgid "Auto-resize window" +msgstr "Pencereyi otomatik boyutlandır" + +#. tool toggle +#: ../app/tools/gimpmagnifyoptions.c:172 ../app/tools/gimpmoveoptions.c:188 +#, c-format +msgid "Tool Toggle (%s)" +msgstr "Araç Geçişi (%s)" + +#: ../app/tools/gimpmagnifytool.c:86 +msgid "Zoom" +msgstr "Yakınlaştır" + +#: ../app/tools/gimpmagnifytool.c:87 +msgid "Zoom Tool: Adjust the zoom level" +msgstr "Yakınlaştırma Aracı: Yakınlaştırma düzeyini ayarla" + +#: ../app/tools/gimpmagnifytool.c:88 +msgid "tool|_Zoom" +msgstr "_Yakınlaştır" + +#: ../app/tools/gimpmeasureoptions.c:124 +msgid "Use info window" +msgstr "Bilgi penceresini kullan" + +#: ../app/tools/gimpmeasuretool.c:121 +msgid "Measure" +msgstr "Ölçüm" + +#: ../app/tools/gimpmeasuretool.c:122 +msgid "Measure Tool: Measure distances and angles" +msgstr "Ölçüm Aracı: Açıları ve uzaklıkları ölç" + +#: ../app/tools/gimpmeasuretool.c:123 +msgid "_Measure" +msgstr "Ö_lçüm" + +#: ../app/tools/gimpmeasuretool.c:241 +msgid "Add Guides" +msgstr "Kılavuz Ekle" + +#: ../app/tools/gimpmeasuretool.c:561 +msgid "Click to place vertical and horizontal guides" +msgstr "Dikey ve yatay kılavuzları yerleştirmek için tıklayın" + +#: ../app/tools/gimpmeasuretool.c:570 +msgid "Click to place a horizontal guide" +msgstr "Yatay bir kılavuz yerleştirmek için tıklayın" + +#: ../app/tools/gimpmeasuretool.c:584 +msgid "Click to place a vertical guide" +msgstr "Dikey bir kılavuz yerleştirmek için tıklayın" + +#: ../app/tools/gimpmeasuretool.c:598 +msgid "Click-Drag to add a new point" +msgstr "Yeni bir nokta eklemek için Sürükle'ye tıklayın" + +#: ../app/tools/gimpmeasuretool.c:628 +msgid "Click-Drag to move all points" +msgstr "Tüm noktaları taşımak için Sürükle'ye tıklayın" + +#. tool->display->shell +#: ../app/tools/gimpmeasuretool.c:989 +msgid "Measure Distances and Angles" +msgstr "Açı ve Uzunlukları Ölç" + +#: ../app/tools/gimpmeasuretool.c:1009 +msgid "Distance:" +msgstr "Uzaklık:" + +#: ../app/tools/gimpmoveoptions.c:140 +msgid "Pick a layer or guide" +msgstr "Bir katman ya da kılavuz seçin" + +#: ../app/tools/gimpmoveoptions.c:141 +msgid "Move the active layer" +msgstr "Etkin katmanı taşı" + +#: ../app/tools/gimpmoveoptions.c:145 +msgid "Move selection" +msgstr "Seçimi taşı" + +#: ../app/tools/gimpmoveoptions.c:149 +msgid "Pick a path" +msgstr "Bir yol seç" + +#: ../app/tools/gimpmoveoptions.c:150 +msgid "Move the active path" +msgstr "Etkin yolu taşı" + +#: ../app/tools/gimpmoveoptions.c:179 +msgid "Move:" +msgstr "Taşı:" + +#: ../app/tools/gimpmovetool.c:127 +msgctxt "tool" +msgid "Move" +msgstr "Taşı" + +#: ../app/tools/gimpmovetool.c:128 +msgid "Move Tool: Move layers, selections, and other objects" +msgstr "Taşıma Aracı: Katmanları, seçimleri ve diğer nesneleri taşı" + +#: ../app/tools/gimpmovetool.c:129 +msgid "_Move" +msgstr "_Taşı" + +#: ../app/tools/gimpmovetool.c:276 ../app/tools/gimpmovetool.c:570 +msgid "Move Guide: " +msgstr "Kılavuzu Taşı: " + +#: ../app/tools/gimpmovetool.c:564 +msgid "Cancel Guide" +msgstr "İptal Et" + +#: ../app/tools/gimpmovetool.c:570 +msgid "Add Guide: " +msgstr "Kılavuz Ekle: " + +#: ../app/tools/gimppaintbrushtool.c:52 +msgid "Paintbrush Tool: Paint smooth strokes using a brush" +msgstr "Boya Fırçası Aracı: Bir fırça kullaranak yumuşak vuruşlarla boya" + +#: ../app/tools/gimppaintbrushtool.c:53 +msgid "_Paintbrush" +msgstr "_Boya Fırçası" + +#: ../app/tools/gimppaintoptions-gui.c:112 +#: ../app/tools/gimpselectionoptions.c:211 +#: ../app/widgets/gimpbrushselect.c:191 ../app/widgets/gimplayertreeview.c:269 +msgid "Mode:" +msgstr "Kip:" + +#: ../app/tools/gimppaintoptions-gui.c:127 +#: ../app/tools/gimptransformoptions.c:348 +#: ../app/widgets/gimpbrushselect.c:178 ../app/widgets/gimplayertreeview.c:284 +msgid "Opacity:" +msgstr "Saydamsızlık:" + +#: ../app/tools/gimppaintoptions-gui.c:137 +msgid "Brush:" +msgstr "Fırça:" + +#: ../app/tools/gimppaintoptions-gui.c:142 +msgid "Scale:" +msgstr "Ölçek:" + +#: ../app/tools/gimppaintoptions-gui.c:150 +msgid "Opacity" +msgstr "Saydamsızlık" + +#: ../app/tools/gimppaintoptions-gui.c:156 +msgid "Hardness" +msgstr "Sertlik" + +#: ../app/tools/gimppaintoptions-gui.c:162 +msgid "Rate" +msgstr "Oran" + +#: ../app/tools/gimppaintoptions-gui.c:168 ../app/tools/tools-enums.c:151 +msgid "Size" +msgstr "Boyut" + +#: ../app/tools/gimppaintoptions-gui.c:186 +msgid "Brush Dynamics" +msgstr "Fırça Dinamikleri" + +#: ../app/tools/gimppaintoptions-gui.c:204 +msgid "Velocity:" +msgstr "Hızlılık:" + +#: ../app/tools/gimppaintoptions-gui.c:210 +msgid "Random:" +msgstr "Rastgele:" + +#: ../app/tools/gimppaintoptions-gui.c:264 +msgid "Incremental" +msgstr "Artımlı" + +#: ../app/tools/gimppaintoptions-gui.c:280 +msgid "Hard edge" +msgstr "Kalın kenar" + +#: ../app/tools/gimppaintoptions-gui.c:565 +msgid "Fade out" +msgstr "Soldurma Uygula" + +#: ../app/tools/gimppaintoptions-gui.c:574 +#: ../app/tools/gimppaintoptions-gui.c:657 +msgid "Length:" +msgstr "Uzunluk:" + +#: ../app/tools/gimppaintoptions-gui.c:601 +msgid "Apply Jitter" +msgstr "Kararsızlık Uygula" + +#: ../app/tools/gimppaintoptions-gui.c:606 +msgid "Amount:" +msgstr "Miktar:" + +#: ../app/tools/gimppaintoptions-gui.c:631 +msgid "Use color from gradient" +msgstr "Renk geçişinden renk kullan" + +#: ../app/tools/gimppainttool.c:136 +msgid "Click to paint" +msgstr "Boyamak için tıklayın" + +#: ../app/tools/gimppainttool.c:137 +msgid "Click to draw the line" +msgstr "Çizgi çekmek için tıklayın" + +#: ../app/tools/gimppainttool.c:138 +#, c-format +msgid "%s to pick a color" +msgstr "Bir renk seçmek için %s" + +#: ../app/tools/gimppainttool.c:662 +#, c-format +msgid "%s for a straight line" +msgstr "Düz bir çizgi için %s" + +#: ../app/tools/gimppenciltool.c:52 +msgid "Pencil Tool: Hard edge painting using a brush" +msgstr "Kalem Aracı:" + +#: ../app/tools/gimppenciltool.c:53 +msgid "Pe_ncil" +msgstr "_Kalem" + +#: ../app/tools/gimpperspectiveclonetool.c:127 +msgid "" +"Perspective Clone Tool: Clone from an image source after applying a " +"perspective transformation" +msgstr "" +"Perspektif Kopyalama Aracı: Bir perspektif dönüşümü uyguladıktan sonra bir " +"görüntü kaynağından kopyala" + +#: ../app/tools/gimpperspectiveclonetool.c:129 +msgid "_Perspective Clone" +msgstr "_Perspektif Kopyalama" + +#: ../app/tools/gimpperspectiveclonetool.c:692 +msgid "Ctrl-Click to set a clone source" +msgstr "Bir kopya kaynağı ayarlamak için \"Ctrl\" ile tıklayın" + +#: ../app/tools/gimpperspectivetool.c:70 +msgid "Perspective Tool: Change perspective of the layer, selection or path" +msgstr "" +"Perspektif Aracı: Katmanın, seçimin ya da yolun perspektifini değiştir" + +#: ../app/tools/gimpperspectivetool.c:72 +msgid "_Perspective" +msgstr "_Perspektif" + +#: ../app/tools/gimpperspectivetool.c:99 +msgctxt "command" +msgid "Perspective" +msgstr "Perspektif" + +#: ../app/tools/gimpperspectivetool.c:100 +msgid "Perspective transformation" +msgstr "Perspektif Dönüşümü" + +#: ../app/tools/gimpperspectivetool.c:115 +msgid "Transformation Matrix" +msgstr "Dönüşüm Dizeyi" + +#: ../app/tools/gimpposterizetool.c:85 +msgid "Posterize Tool: Reduce to a limited set of colors" +msgstr "Posterleştirme Aracı: Sınırlı bir renk grubuna küçült" + +#: ../app/tools/gimpposterizetool.c:86 +msgid "_Posterize..." +msgstr "_Posterleştir.." + +#: ../app/tools/gimpposterizetool.c:103 +msgid "Posterize (Reduce Number of Colors)" +msgstr "Posterleştir (Renk Sayısını Azalt)" + +#: ../app/tools/gimpposterizetool.c:151 +#, c-format +msgid "Posterize does not operate on indexed layers." +msgstr "Posterleştirme indisli katmanlarda çalışmaz." + +#: ../app/tools/gimpposterizetool.c:226 +msgid "Posterize _levels:" +msgstr "Seviyeleri _posterleştir:" + +#: ../app/tools/gimprectangleoptions.c:112 +msgid "Use all visible layers when shrinking the selection" +msgstr "Seçimi küçültürken tüm görünür katmanları kullan" + +#. Current, as in what is currently in use. +#: ../app/tools/gimprectangleoptions.c:729 +msgid "Current" +msgstr "Şimdiki" + +#: ../app/tools/gimprectangleoptions.c:807 +msgid "Expand from center" +msgstr "Merkezden genişlet" + +#: ../app/tools/gimprectangleoptions.c:830 +msgid "Fixed:" +msgstr "Değişmez:" + +#: ../app/tools/gimprectangleoptions.c:963 +msgid "Position:" +msgstr "Konum:" + +#: ../app/tools/gimprectangleoptions.c:981 +msgid "Highlight" +msgstr "Vurgulama" + +#. Auto Shrink +#: ../app/tools/gimprectangleoptions.c:991 +msgid "Auto Shrink" +msgstr "Otomatik Küçült" + +#: ../app/tools/gimprectangleoptions.c:998 +msgid "Shrink merged" +msgstr "Birleştirip küçült" + +#: ../app/tools/gimprectangleselectoptions.c:164 +msgid "Rounded corners" +msgstr "Yuvarlatılmış köşeler" + +#: ../app/tools/gimprectangleselecttool.c:167 +msgid "Rectangle Select" +msgstr "Dikdörtgen Seçimi" + +#: ../app/tools/gimprectangleselecttool.c:168 +msgid "Rectangle Select Tool: Select a rectangular region" +msgstr "Dikdörtgen Seçim Aracı: Dikdörtgen bir bölge seçin" + +#: ../app/tools/gimprectangleselecttool.c:169 +msgid "_Rectangle Select" +msgstr "D_ikdörtgen Seçimi" + +#: ../app/tools/gimprectangletool.c:1085 ../app/tools/gimprectangletool.c:1981 +msgid "Rectangle: " +msgstr "Dikdörtgen: " + +#: ../app/tools/gimpregionselectoptions.c:83 +msgid "Allow completely transparent regions to be selected" +msgstr "Tamamen saydam bölgelerin seçilebilmesine izin ver" + +#: ../app/tools/gimpregionselectoptions.c:90 +msgid "Base region_select on all visible layers" +msgstr "Tüm görünür katmanlar üzerinde taban bölge _seçimi" + +#: ../app/tools/gimpregionselectoptions.c:202 +msgid "Select transparent areas" +msgstr "Şeffaf alanları seç" + +#: ../app/tools/gimpregionselectoptions.c:227 +msgid "Select by:" +msgstr "Seçme göreliği:" + +#: ../app/tools/gimpregionselecttool.c:162 +msgid "Move the mouse to change threshold" +msgstr "Eşiği değiştirmek için fareyi taşıyın" + +#: ../app/tools/gimprotatetool.c:90 +msgid "Rotate" +msgstr "Döndür" + +#: ../app/tools/gimprotatetool.c:91 +msgid "Rotate Tool: Rotate the layer, selection or path" +msgstr "Döndürme Aracı: Katmanı, seçimi ya da yolu döndür" + +#: ../app/tools/gimprotatetool.c:92 +msgid "_Rotate" +msgstr "_Döndür" + +#: ../app/tools/gimprotatetool.c:188 +msgid "_Angle:" +msgstr "_Açı:" + +#: ../app/tools/gimprotatetool.c:204 +msgid "Center _X:" +msgstr "Merkez _X:" + +#: ../app/tools/gimprotatetool.c:213 +msgid "Center _Y:" +msgstr "Merkez _Y:" + +#: ../app/tools/gimpscaletool.c:78 +msgid "Scale" +msgstr "Ölçeklendir" + +#: ../app/tools/gimpscaletool.c:79 +msgid "Scale Tool: Scale the layer, selection or path" +msgstr "Ölçeklendirme Aracı: Katmanı, seçimi ya da yolu ölçeklendir" + +#: ../app/tools/gimpscaletool.c:80 +msgid "_Scale" +msgstr "Ö_lçeklendir" + +#: ../app/tools/gimpscaletool.c:106 +msgctxt "command" +msgid "Scale" +msgstr "Ölçeklendir" + +#: ../app/tools/gimpselectionoptions.c:258 ../app/tools/gimptextoptions.c:473 +msgid "Antialiasing" +msgstr "Yazıtipi yumuşatma" + +#: ../app/tools/gimpselectionoptions.c:273 +msgid "Feather edges" +msgstr "Kenarları yumuşat" + +#: ../app/tools/gimpselectiontool.c:251 +msgid "Click-Drag to replace the current selection" +msgstr "Şimdiki seçimin yerine koymak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:259 +msgid "Click-Drag to create a new selection" +msgstr "Yeni bir seçim oluşturmak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:264 +msgid "Click-Drag to add to the current selection" +msgstr "Şimdiki seçime eklemek için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:273 +msgid "Click-Drag to subtract from the current selection" +msgstr "Şimdiki seçimden çıkartmak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:282 +msgid "Click-Drag to intersect with the current selection" +msgstr "Şimdiki seçimle kesiştirmek için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:292 +msgid "Click-Drag to move the selection mask" +msgstr "Seçim maskesini taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:300 +msgid "Click-Drag to move the selected pixels" +msgstr "Seçilmiş benekleri taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:304 +msgid "Click-Drag to move a copy of the selected pixels" +msgstr "Seçilmiş beneklerin bir kopyasını taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpselectiontool.c:308 +msgid "Click to anchor the floating selection" +msgstr "Yüzen seçimi çapalamak için tıklayın" + +#: ../app/tools/gimpsheartool.c:82 +msgid "Shear" +msgstr "Eğme" + +#: ../app/tools/gimpsheartool.c:83 +msgid "Shear Tool: Shear the layer, selection or path" +msgstr "Eğme Aracı: Katmanı, seçimi ya da yolu eğ" + +#: ../app/tools/gimpsheartool.c:84 +msgid "S_hear" +msgstr "_Eğme" + +#: ../app/tools/gimpsheartool.c:110 +msgctxt "command" +msgid "Shear" +msgstr "Eğ" + +#: ../app/tools/gimpsheartool.c:134 +msgid "Shear magnitude _X:" +msgstr "_X eğme büyüklüğü:" + +#: ../app/tools/gimpsheartool.c:144 +msgid "Shear magnitude _Y:" +msgstr "_Y eğme büyüklüğü:" + +#: ../app/tools/gimpsmudgetool.c:54 +msgid "Smudge Tool: Smudge selectively using a brush" +msgstr "Lekeleme Aracı: Bir fırça kullanıp seçerek lekeleyin" + +#: ../app/tools/gimpsmudgetool.c:55 +msgid "_Smudge" +msgstr "_Lekeleme" + +#: ../app/tools/gimpsmudgetool.c:74 +msgid "Click to smudge" +msgstr "Lekelemek için tıklayın" + +#: ../app/tools/gimpsmudgetool.c:75 +msgid "Click to smudge the line" +msgstr "Çizgiyi lekelemek için tıklayın" + +#: ../app/tools/gimptextoptions.c:127 +msgid "" +"Hinting alters the font outline to produce a crisp bitmap at small sizes" +msgstr "" +"Dokunma, yazıyüzü dış çizgisini, küçük boyutlu canlı bit eşlem oluşturmak " +"için değiştirir" + +#: ../app/tools/gimptextoptions.c:134 +msgid "" +"If available, hints from the font are used but you may prefer to always use " +"the automatic hinter" +msgstr "" +"Eğer kullanılır ise, yazıyüzlerindeki ipuçları kullanılır ama otomatik ipucu " +"vericiyi kullanmayı tercih edebilirsiniz" + +#: ../app/tools/gimptextoptions.c:159 +msgid "Indentation of the first line" +msgstr "İlk satırın girintili yazımı" + +#: ../app/tools/gimptextoptions.c:165 +msgid "Adjust line spacing" +msgstr "Satır boşluğunu ayarla" + +#: ../app/tools/gimptextoptions.c:171 +msgid "Adjust letter spacing" +msgstr "Harf boşluğunu ayarla" + +#: ../app/tools/gimptextoptions.c:445 +msgid "Font:" +msgstr "Yazıtipi:" + +#: ../app/tools/gimptextoptions.c:461 +msgid "Hinting" +msgstr "İpucu Verme" + +#: ../app/tools/gimptextoptions.c:466 +msgid "Force auto-hinter" +msgstr "Otomatik ipucu vermeyi zorla" + +#: ../app/tools/gimptextoptions.c:487 +msgid "Text Color" +msgstr "Metin Rengi" + +#: ../app/tools/gimptextoptions.c:492 +msgid "Color:" +msgstr "Renk:" + +#: ../app/tools/gimptextoptions.c:498 +msgid "Justify:" +msgstr "Hizalama:" + +#. Create a path from the current text +#: ../app/tools/gimptextoptions.c:520 +msgid "Path from Text" +msgstr "Metinden Yola" + +#: ../app/tools/gimptextoptions.c:527 +msgid "Text along Path" +msgstr "Yol boyunca metin" + +#: ../app/tools/gimptexttool.c:162 +msgid "Text Tool: Create or edit text layers" +msgstr "Metin Aracı: Metin katmanları oluştur ya da düzenle" + +#: ../app/tools/gimptexttool.c:163 +msgid "Te_xt" +msgstr "_Metin" + +#: ../app/tools/gimptexttool.c:987 +msgid "GIMP Text Editor" +msgstr "GIMP Metin Düzenleyici" + +#: ../app/tools/gimptexttool.c:1103 ../app/tools/gimptexttool.c:1106 +msgid "Confirm Text Editing" +msgstr "Metin Düzenlemeyi Onayla" + +#: ../app/tools/gimptexttool.c:1110 +msgid "Create _New Layer" +msgstr "_Yeni Katman Oluştur" + +#: ../app/tools/gimptexttool.c:1134 +msgid "" +"The layer you selected is a text layer but it has been modified using other " +"tools. Editing the layer with the text tool will discard these " +"modifications.\n" +"\n" +"You can edit the layer or create a new text layer from its text attributes." +msgstr "" +"Seçtiğiniz katman bir metin katmanı ama başka araçlar kullanılarak " +"değiştirilmiş. Katmanı bir metin aracı ile düzenlemek bu değişikliklerden " +"vazgeçilmesini sağlayacaktır.\n" +"\n" +"Katmanı düzenleyebilirsiniz ya da metin özniteliklerinden yeni bir metin " +"katmanı oluşturabilirsiniz." + +#: ../app/tools/gimptexttool.c:1356 +msgid "Reshape Text Layer" +msgstr "Metin Katmanını Yeniden Şekillendir" + +#: ../app/tools/gimpthresholdtool.c:91 +msgid "Threshold Tool: Reduce image to two colors using a threshold" +msgstr "Eşik Aracı: Bir eşik kullanarak görüntüyü iki renge düşürün" + +#: ../app/tools/gimpthresholdtool.c:92 +msgid "_Threshold..." +msgstr "_Eşik..." + +#: ../app/tools/gimpthresholdtool.c:109 +msgid "Apply Threshold" +msgstr "Sınırı Uygula" + +#: ../app/tools/gimpthresholdtool.c:111 +msgid "Import Threshold Settings" +msgstr "Eşik Ayarlarını İçe Aktar" + +#: ../app/tools/gimpthresholdtool.c:112 +msgid "Export Threshold Settings" +msgstr "Eşik Ayarlarını Dışa Aktar" + +#: ../app/tools/gimpthresholdtool.c:161 +#, c-format +msgid "Threshold does not operate on indexed layers." +msgstr "Alt sınır işlemi indisli katmanlarda çalışamaz." + +#: ../app/tools/gimpthresholdtool.c:266 +msgid "Automatically adjust to optimal binarization threshold" +msgstr "Otomatik olarak en uygun ikili eşiğe göre ayarla" + +#: ../app/tools/gimptransformoptions.c:273 +msgid "Transform:" +msgstr "Dönüştür:" + +#: ../app/tools/gimptransformoptions.c:282 +msgid "Direction" +msgstr "Yön" + +#. the interpolation menu +#: ../app/tools/gimptransformoptions.c:287 +msgid "Interpolation:" +msgstr "Aradeğerleme:" + +#: ../app/tools/gimptransformoptions.c:300 +msgid "Clipping:" +msgstr "Kırpma:" + +#: ../app/tools/gimptransformoptions.c:318 +msgid "Preview:" +msgstr "Önizleme:" + +#: ../app/tools/gimptransformoptions.c:389 +#, c-format +msgid "15 degrees (%s)" +msgstr "15 derece (%s)" + +#: ../app/tools/gimptransformoptions.c:393 +#, c-format +msgid "Keep aspect (%s)" +msgstr "Görünüşü koru (%s)" + +#: ../app/tools/gimptransformtool.c:238 +msgid "Transforming" +msgstr "Dönüştürme" + +#: ../app/tools/gimptransformtool.c:1165 +msgid "There is no layer to transform." +msgstr "Dönüştürmek için hiçbir katman yok." + +#: ../app/tools/gimptransformtool.c:1176 +msgid "There is no path to transform." +msgstr "Dönüştürülecek hiçbir yol yok." + +#: ../app/tools/gimpvectoroptions.c:77 +msgid "Restrict editing to polygons" +msgstr "Düzenlemeyi çokgenlerle kısıtla" + +#: ../app/tools/gimpvectoroptions.c:156 +msgid "Edit Mode" +msgstr "Düzenleme Kipi" + +#: ../app/tools/gimpvectoroptions.c:174 +msgid "Polygonal" +msgstr "Poligonal" + +#: ../app/tools/gimpvectoroptions.c:178 +#, c-format +msgid "" +"Path to Selection\n" +"%s Add\n" +"%s Subtract\n" +"%s Intersect" +msgstr "" +"Seçimden Yola\n" +"%s Ekle\n" +"%s Çıkar\n" +"%s Kesiştir" + +#. Create a selection from the current path +#: ../app/tools/gimpvectoroptions.c:189 +msgid "Selection from Path" +msgstr "Yoldan Seçim" + +#: ../app/tools/gimpvectortool.c:161 +msgid "Paths Tool: Create and edit paths" +msgstr "Yol Aracı: Yol oluştur ve düzenle" + +#: ../app/tools/gimpvectortool.c:162 +msgid "Pat_hs" +msgstr "Y_ollar" + +#: ../app/tools/gimpvectortool.c:322 +msgid "Add Stroke" +msgstr "Darbe Ekle" + +#: ../app/tools/gimpvectortool.c:345 +msgid "Add Anchor" +msgstr "Çıpa Ekle" + +#: ../app/tools/gimpvectortool.c:370 +msgid "Insert Anchor" +msgstr "Çıpayı Araya Ekle" + +#: ../app/tools/gimpvectortool.c:400 +msgid "Drag Handle" +msgstr "Tanıtıcıyı Sürükle" + +#: ../app/tools/gimpvectortool.c:429 +msgid "Drag Anchor" +msgstr "Çıpayı Sürükle" + +#: ../app/tools/gimpvectortool.c:446 +msgid "Drag Anchors" +msgstr "Çıpaları Sürükle" + +#: ../app/tools/gimpvectortool.c:468 +msgid "Drag Curve" +msgstr "Eğriyi Sürükle" + +#: ../app/tools/gimpvectortool.c:496 +msgid "Connect Strokes" +msgstr "Vuruşları Bağla" + +#: ../app/tools/gimpvectortool.c:527 +msgid "Drag Path" +msgstr "Yolu Sürükle" + +#: ../app/tools/gimpvectortool.c:537 +msgid "Convert Edge" +msgstr "Kenarları Dönüştür" + +#: ../app/tools/gimpvectortool.c:567 +msgid "Delete Anchor" +msgstr "Çıpayı Sil" + +#: ../app/tools/gimpvectortool.c:589 +msgid "Delete Segment" +msgstr "Segmenti Sil" + +#: ../app/tools/gimpvectortool.c:807 +msgid "Move Anchors" +msgstr "Çıpaları Taşı" + +#: ../app/tools/gimpvectortool.c:1167 +msgid "Click to pick path to edit" +msgstr "Yolu seçip düzenlemek için tıklayın" + +#: ../app/tools/gimpvectortool.c:1171 +msgid "Click to create a new path" +msgstr "Yeni yol oluşturmak için tıklayın" + +#: ../app/tools/gimpvectortool.c:1175 +msgid "Click to create a new component of the path" +msgstr "Yolun yeni bir bileşenini oluşturmak için tıklayın" + +#: ../app/tools/gimpvectortool.c:1179 +msgid "Click or Click-Drag to create a new anchor" +msgstr "Yeni bir çıpa oluşturmak için tıklayın ya da tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1189 ../app/tools/gimpvectortool.c:1196 +msgid "Click-Drag to move the anchor around" +msgstr "Çıpayı etrafında taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1200 ../app/tools/gimpvectortool.c:1213 +msgid "Click-Drag to move the anchors around" +msgstr "Çıpaları etraflarında taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1204 +msgid "Click-Drag to move the handle around" +msgstr "Tanıtıcıyı etrafında döndürmek için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1218 +msgid "Click-Drag to change the shape of the curve" +msgstr "Eğrinin şeklini değiştirmek için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1221 +#, c-format +msgid "%s: symmetrical" +msgstr "%s: simetrik" + +#: ../app/tools/gimpvectortool.c:1226 +msgid "Click-Drag to move the component around" +msgstr "Bileşeni etrafında taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1234 +msgid "Click-Drag to move the path around" +msgstr "Yolu etrafında taşımak için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1238 +msgid "Click-Drag to insert an anchor on the path" +msgstr "Yol üzerine bir çıpa eklemek için tıklayıp sürükleyin" + +#: ../app/tools/gimpvectortool.c:1246 +msgid "Click to delete this anchor" +msgstr "Bu çıpayı silmek için tıklayın" + +#: ../app/tools/gimpvectortool.c:1250 +msgid "Click to connect this anchor with the selected endpoint" +msgstr "Bu çıpa ile seçilmiş bitim noktasını bağlamak için tıklayın" + +#: ../app/tools/gimpvectortool.c:1255 +msgid "Click to open up the path" +msgstr "Yolu açmak için tıklayın" + +#: ../app/tools/gimpvectortool.c:1259 +msgid "Click to make this node angular" +msgstr "Bu düğümü köşeli yapmak için tıklayın" + +#: ../app/tools/gimpvectortool.c:1766 +msgid "Delete Anchors" +msgstr "Çıpaları Sil" + +#: ../app/tools/gimpvectortool.c:1939 +msgid "There is no active layer or channel to stroke to" +msgstr "Vuruş yapılacak etkin bir katman ya da kanal yok" + +#: ../app/tools/tools-enums.c:58 +msgid "No guides" +msgstr "Kılavuz yok" + +#: ../app/tools/tools-enums.c:59 +msgid "Center lines" +msgstr "Orta çizgiler" + +#: ../app/tools/tools-enums.c:60 +msgid "Rule of thirds" +msgstr "Üçlü Kuralı" + +#: ../app/tools/tools-enums.c:61 +msgid "Golden sections" +msgstr "Altın bölümler" + +#: ../app/tools/tools-enums.c:148 +msgid "Aspect ratio" +msgstr "En boy oranı" + +#: ../app/tools/tools-enums.c:149 ../app/widgets/gimpgrideditor.c:265 +#: ../app/widgets/gimpgrideditor.c:297 +msgid "Width" +msgstr "Genişlik" + +#: ../app/tools/tools-enums.c:150 ../app/widgets/gimpgrideditor.c:267 +#: ../app/widgets/gimpgrideditor.c:299 +msgid "Height" +msgstr "Yükseklik" + +#: ../app/tools/tools-enums.c:179 +msgid "Free select" +msgstr "Serbest seçim" + +#: ../app/tools/tools-enums.c:180 +msgid "Fixed size" +msgstr "Sabit boyut" + +#: ../app/tools/tools-enums.c:181 +msgid "Fixed aspect ratio" +msgstr "Sabit görünüm oranı" + +#: ../app/tools/tools-enums.c:211 ../app/vectors/gimpvectors.c:192 +msgid "Path" +msgstr "Yol" + +#: ../app/tools/tools-enums.c:240 +msgid "Outline" +msgstr "Çerçeve" + +#: ../app/tools/tools-enums.c:243 +msgid "Image + Grid" +msgstr "Görüntü + Izgara" + +#: ../app/tools/tools-enums.c:270 +msgid "Number of grid lines" +msgstr "Izgara çizgilerinin sayısı" + +#: ../app/tools/tools-enums.c:271 +msgid "Grid line spacing" +msgstr "Izgara çizgisi boşluğu" + +#: ../app/tools/tools-enums.c:299 +msgid "Design" +msgstr "Tasarım" + +#: ../app/tools/tools-enums.c:301 +msgid "Move" +msgstr "Taşı" + +#: ../app/vectors/gimpvectors.c:193 +msgid "Rename Path" +msgstr "Yolu Yeniden Adlandır" + +#: ../app/vectors/gimpvectors.c:194 ../app/vectors/gimpvectors.c:316 +msgid "Move Path" +msgstr "Yolu Taşı" + +#: ../app/vectors/gimpvectors.c:195 +msgid "Scale Path" +msgstr "Yolu Ölçeklendir" + +#: ../app/vectors/gimpvectors.c:196 +msgid "Resize Path" +msgstr "Yolu Boyutlandır" + +#: ../app/vectors/gimpvectors.c:197 ../app/vectors/gimpvectors.c:415 +msgid "Flip Path" +msgstr "Yolu Çevir" + +#: ../app/vectors/gimpvectors.c:198 ../app/vectors/gimpvectors.c:446 +msgid "Rotate Path" +msgstr "Yolu Döndür" + +#: ../app/vectors/gimpvectors.c:199 ../app/vectors/gimpvectors.c:476 +msgid "Transform Path" +msgstr "Yolu Dönüştür" + +#: ../app/vectors/gimpvectors-export.c:96 +#, c-format +msgid "Error while writing '%s': %s" +msgstr "'%s' yazılırken hata: %s" + +#: ../app/vectors/gimpvectors-import.c:296 +msgid "Import Paths" +msgstr "Yolları Al" + +#: ../app/vectors/gimpvectors-import.c:307 +msgid "Imported Path" +msgstr "İçe Aktarılmış Yol" + +#: ../app/vectors/gimpvectors-import.c:336 +#, c-format +msgid "No paths found in '%s'" +msgstr "%s içinde yol bulunamadı" + +#: ../app/vectors/gimpvectors-import.c:339 +#, c-format +msgid "No paths found in the buffer" +msgstr "Tamponda yol bulunamadı" + +#: ../app/vectors/gimpvectors-import.c:349 +#, c-format +msgid "Failed to import paths from '%s': %s" +msgstr "%s dosyasından yol okunurken hata: %s" + +#: ../app/widgets/gimpactioneditor.c:71 +msgid "_Search:" +msgstr "_Ara:" + +#: ../app/widgets/gimpactiongroup.c:802 +#, c-format +msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" +msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" + +#: ../app/widgets/gimpactionview.c:346 +#: ../app/widgets/gimpcontrollereditor.c:348 +msgid "Action" +msgstr "Eylem" + +#: ../app/widgets/gimpactionview.c:375 +msgid "Shortcut" +msgstr "Kısayol" + +#: ../app/widgets/gimpactionview.c:401 +msgid "Name" +msgstr "İsim" + +#: ../app/widgets/gimpactionview.c:641 ../app/widgets/gimpactionview.c:846 +msgid "Changing shortcut failed." +msgstr "Kısayol değişimi başarısız oldu." + +#: ../app/widgets/gimpactionview.c:683 +msgid "Conflicting Shortcuts" +msgstr "Çelişen Kısayollar" + +#: ../app/widgets/gimpactionview.c:689 +msgid "_Reassign shortcut" +msgstr "Kısayolu Yeniden A_ta" + +#: ../app/widgets/gimpactionview.c:704 +#, c-format +msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." +msgstr "" +"\"%s\" kısayolu zaten \"%s\" tarafından \"%s\" grubundan alınmış durumda." + +#: ../app/widgets/gimpactionview.c:708 +#, c-format +msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." +msgstr "" +"Kısayolu yeniden atamak \"%s\" üzerinden kaldırılmasına neden olacak." + +#: ../app/widgets/gimpactionview.c:781 +msgid "Invalid shortcut." +msgstr "Geçersiz kısayol." + +#: ../app/widgets/gimpactionview.c:870 +msgid "Removing shortcut failed." +msgstr "Kısayolu kaldırma başarısız oldu." + +#: ../app/widgets/gimpbrusheditor.c:169 +msgid "Spikes:" +msgstr "Artışlar:" + +#: ../app/widgets/gimpbrusheditor.c:182 +msgid "Hardness:" +msgstr "Sertlik:" + +#: ../app/widgets/gimpbrusheditor.c:195 +msgid "Aspect ratio:" +msgstr "Görüntü oranı:" + +#: ../app/widgets/gimpbrusheditor.c:221 +#: ../app/widgets/gimpbrushfactoryview.c:82 +msgid "Spacing:" +msgstr "Boşluk:" + +#: ../app/widgets/gimpbrusheditor.c:224 +#: ../app/widgets/gimpbrushfactoryview.c:85 +msgid "Percentage of width of brush" +msgstr "Fırça genişliğinin yüzdesi" + +#: ../app/widgets/gimpbufferview.c:173 ../app/widgets/gimpbufferview.c:257 +#: ../app/widgets/gimpeditor.c:754 +msgid "(None)" +msgstr "(Hiçbiri)" + +#: ../app/widgets/gimpchanneltreeview.c:119 +msgid "Reorder Channel" +msgstr "Kanalı Yeniden Düzenle" + +#: ../app/widgets/gimpchanneltreeview.c:321 +msgid "Empty Channel" +msgstr "Kanalı Boşalt" + +#: ../app/widgets/gimpcolordialog.c:150 +msgid "Add the current color to the color history" +msgstr "Renk geçmişine şimdiki rengi ekle" + +#: ../app/widgets/gimpcolordisplayeditor.c:152 +msgid "Available Filters" +msgstr "Mevcut Filtreler" + +#: ../app/widgets/gimpcolordisplayeditor.c:213 +msgid "Move the selected filter up" +msgstr "Seçilmiş süzgeci yükselt" + +#: ../app/widgets/gimpcolordisplayeditor.c:222 +msgid "Move the selected filter down" +msgstr "Seçilmiş süzgeci indir" + +#: ../app/widgets/gimpcolordisplayeditor.c:268 +msgid "Active Filters" +msgstr "Etkin Filtreler" + +#: ../app/widgets/gimpcolordisplayeditor.c:319 +msgid "Reset the selected filter to default values" +msgstr "Seçili filtreleri öntanımlı değerlerine geri al" + +#: ../app/widgets/gimpcolordisplayeditor.c:493 +#, c-format +msgid "Add '%s' to the list of active filters" +msgstr "Etkin süzgeçler listesine '%s' ekle" + +#: ../app/widgets/gimpcolordisplayeditor.c:530 +#, c-format +msgid "Remove '%s' from the list of active filters" +msgstr "Etkin süzgeçler listesinden '%s' kaldır" + +#: ../app/widgets/gimpcolordisplayeditor.c:561 +msgid "No filter selected" +msgstr "Seçilmiş süzgeç yok" + +#: ../app/widgets/gimpcoloreditor.c:263 +msgid "" +"Hexadecimal color notation as used in HTML and CSS. This entry also accepts " +"CSS color names." +msgstr "" +"HTML ve CSS içinde kullanılıan onaltılı renk gösterimi. Bu giriş ayrıca CSS " +"renk adlarını da kabul eder." + +#: ../app/widgets/gimpcolorframe.c:501 +msgid "Index:" +msgstr "Sıra:" + +#: ../app/widgets/gimpcolorframe.c:514 ../app/widgets/gimpcolorframe.c:540 +msgid "Red:" +msgstr "Kırmızı:" + +#: ../app/widgets/gimpcolorframe.c:515 ../app/widgets/gimpcolorframe.c:541 +msgid "Green:" +msgstr "Yeşil:" + +#: ../app/widgets/gimpcolorframe.c:516 ../app/widgets/gimpcolorframe.c:542 +msgid "Blue:" +msgstr "Mavi:" + +#: ../app/widgets/gimpcolorframe.c:529 ../app/widgets/gimpcolorframe.c:562 +msgid "Value:" +msgstr "Değer:" + +#: ../app/widgets/gimpcolorframe.c:553 +msgid "Hex:" +msgstr "Onaltılı:" + +#: ../app/widgets/gimpcolorframe.c:560 +msgid "Hue:" +msgstr "Renk Özü:" + +#: ../app/widgets/gimpcolorframe.c:561 +msgid "Sat.:" +msgstr "Doyg.:" + +#: ../app/widgets/gimpcolorframe.c:579 +msgid "Cyan:" +msgstr "Turkuaz:" + +#: ../app/widgets/gimpcolorframe.c:580 +msgid "Magenta:" +msgstr "Magenta:" + +#: ../app/widgets/gimpcolorframe.c:581 +msgid "Yellow:" +msgstr "Sarı:" + +#: ../app/widgets/gimpcolorframe.c:582 +msgid "Black:" +msgstr "Siyah:" + +#: ../app/widgets/gimpcolorframe.c:602 +msgid "Alpha:" +msgstr "Alfa:" + +#: ../app/widgets/gimpcolorframe.c:623 ../app/widgets/gimpcursorview.c:134 +#: ../app/widgets/gimpcursorview.c:140 ../app/widgets/gimpcursorview.c:156 +#: ../app/widgets/gimpcursorview.c:162 ../app/widgets/gimpcursorview.c:444 +#: ../app/widgets/gimpcursorview.c:445 ../app/widgets/gimpcursorview.c:446 +#: ../app/widgets/gimpcursorview.c:447 +msgid "n/a" +msgstr "mevcut değil" + +#: ../app/widgets/gimpcolormapeditor.c:225 +msgid "Color index:" +msgstr "Renk indisi:" + +#: ../app/widgets/gimpcolormapeditor.c:235 +msgid "HTML notation:" +msgstr "HTML gösterim:" + +#: ../app/widgets/gimpcolormapeditor.c:492 +msgid "Only indexed images have a colormap." +msgstr "Sadece sıralanmış görüntülerin bir renk haritası olabilir." + +#: ../app/widgets/gimpcolorselectorpalette.c:59 +msgid "Palette" +msgstr "Palet" + +#: ../app/widgets/gimpcontainerpopup.c:571 +msgid "Smaller Previews" +msgstr "Daha Küçük Önizlemeler" + +#: ../app/widgets/gimpcontainerpopup.c:576 +msgid "Larger Previews" +msgstr "Daha Büyük Önizlemeler" + +#: ../app/widgets/gimpcontrollereditor.c:202 +msgid "_Dump events from this controller" +msgstr "Bu denetleyiciden olayların _dökümünü al" + +#: ../app/widgets/gimpcontrollereditor.c:207 +msgid "_Enable this controller" +msgstr "Bu denetleyiciyi _etkinleştir" + +#: ../app/widgets/gimpcontrollereditor.c:228 +msgid "Name:" +msgstr "İsim:" + +#: ../app/widgets/gimpcontrollereditor.c:234 +msgid "State:" +msgstr "Durum:" + +#: ../app/widgets/gimpcontrollereditor.c:342 +msgid "Event" +msgstr "Olay" + +#: ../app/widgets/gimpcontrollereditor.c:367 +msgid "_Grab event" +msgstr "_Olayı Yakala" + +#: ../app/widgets/gimpcontrollereditor.c:377 +msgid "Select the next event arriving from the controller" +msgstr "Denetleyiciden gelen sonraki olayı seç" + +#: ../app/widgets/gimpcontrollereditor.c:535 +#, c-format +msgid "Remove the action assigned to '%s'" +msgstr "'%s' olayına atanan eylemi kaldır" + +#: ../app/widgets/gimpcontrollereditor.c:540 +#, c-format +msgid "Assign an action to '%s'" +msgstr "'%s' olayına bir eylem ata" + +#: ../app/widgets/gimpcontrollereditor.c:661 +#, c-format +msgid "Select Action for Event '%s'" +msgstr "'%s' Olayı için Eylem Seç" + +#: ../app/widgets/gimpcontrollereditor.c:666 +msgid "Select Controller Event Action" +msgstr "Denetleyici Olayı Eylemi Seç" + +#: ../app/widgets/gimpcontrollerkeyboard.c:70 +#: ../app/widgets/gimpcontrollerkeyboard.c:73 +#: ../app/widgets/gimpcontrollerkeyboard.c:76 +#: ../app/widgets/gimpcontrollerkeyboard.c:79 +#: ../app/widgets/gimpcontrollerkeyboard.c:82 +#: ../app/widgets/gimpcontrollerkeyboard.c:85 +#: ../app/widgets/gimpcontrollerkeyboard.c:88 +#: ../app/widgets/gimpcontrollerkeyboard.c:91 +msgid "Cursor Up" +msgstr "Üst İmleç" + +#: ../app/widgets/gimpcontrollerkeyboard.c:95 +#: ../app/widgets/gimpcontrollerkeyboard.c:98 +#: ../app/widgets/gimpcontrollerkeyboard.c:101 +#: ../app/widgets/gimpcontrollerkeyboard.c:104 +#: ../app/widgets/gimpcontrollerkeyboard.c:107 +#: ../app/widgets/gimpcontrollerkeyboard.c:110 +#: ../app/widgets/gimpcontrollerkeyboard.c:113 +#: ../app/widgets/gimpcontrollerkeyboard.c:116 +msgid "Cursor Down" +msgstr "Alt İmleç" + +#: ../app/widgets/gimpcontrollerkeyboard.c:120 +#: ../app/widgets/gimpcontrollerkeyboard.c:123 +#: ../app/widgets/gimpcontrollerkeyboard.c:126 +#: ../app/widgets/gimpcontrollerkeyboard.c:129 +#: ../app/widgets/gimpcontrollerkeyboard.c:132 +#: ../app/widgets/gimpcontrollerkeyboard.c:135 +#: ../app/widgets/gimpcontrollerkeyboard.c:138 +#: ../app/widgets/gimpcontrollerkeyboard.c:141 +msgid "Cursor Left" +msgstr "Sol İmleç" + +#: ../app/widgets/gimpcontrollerkeyboard.c:145 +#: ../app/widgets/gimpcontrollerkeyboard.c:148 +#: ../app/widgets/gimpcontrollerkeyboard.c:151 +#: ../app/widgets/gimpcontrollerkeyboard.c:154 +#: ../app/widgets/gimpcontrollerkeyboard.c:157 +#: ../app/widgets/gimpcontrollerkeyboard.c:160 +#: ../app/widgets/gimpcontrollerkeyboard.c:163 +#: ../app/widgets/gimpcontrollerkeyboard.c:166 +msgid "Cursor Right" +msgstr "Sağ İmleç" + +#: ../app/widgets/gimpcontrollerkeyboard.c:178 +msgid "Keyboard" +msgstr "Klavye" + +#: ../app/widgets/gimpcontrollerkeyboard.c:222 +msgid "Keyboard Events" +msgstr "Klavye Olayları" + +#: ../app/widgets/gimpcontrollerkeyboard.c:223 +#: ../app/widgets/gimpcontrollerwheel.c:225 +msgid "Ready" +msgstr "Hazır" + +#: ../app/widgets/gimpcontrollerlist.c:182 +msgid "Available Controllers" +msgstr "Mevcut Denetleyiciler" + +#: ../app/widgets/gimpcontrollerlist.c:274 +msgid "Active Controllers" +msgstr "Etkin Denetleyiciler" + +#: ../app/widgets/gimpcontrollerlist.c:290 +msgid "Configure the selected controller" +msgstr "Seçili denetleyiciyi yapılandır" + +#: ../app/widgets/gimpcontrollerlist.c:298 +msgid "Move the selected controller up" +msgstr "Seçili denetleyiciyi yukarı taşı" + +#: ../app/widgets/gimpcontrollerlist.c:306 +msgid "Move the selected controller down" +msgstr "Seçili denetleyiciyi aşağı taşı" + +#: ../app/widgets/gimpcontrollerlist.c:430 +#, c-format +msgid "Add '%s' to the list of active controllers" +msgstr "Etkin denetleyiciler listesine '%s' ekle" + +#: ../app/widgets/gimpcontrollerlist.c:481 +#, c-format +msgid "Remove '%s' from the list of active controllers" +msgstr "Etkin denetleyiciler listesinden '%s' kaldır" + +#: ../app/widgets/gimpcontrollerlist.c:514 +msgid "" +"There can only be one active keyboard controller.\n" +"\n" +"You already have a keyboard controller in your list of active controllers." +msgstr "" +"Etkin sadece bir klavye denetleyicisi olabilir.\n" +"\n" +"Etkin denetleyiciler listenizde zaten bir klavye denetleyiciniz var." + +#: ../app/widgets/gimpcontrollerlist.c:524 +msgid "" +"There can only be one active wheel controller.\n" +"\n" +"You already have a wheel controller in your list of active controllers." +msgstr "" +"Etkin sadece bir teker denetleyicisi olabilir.\n" +"\n" +"Etkin denetleyiciler listenizde zaten bir teker denetleyiciniz var." + +#: ../app/widgets/gimpcontrollerlist.c:551 +msgid "Remove Controller?" +msgstr "Denetleyiciyi Sil?" + +#: ../app/widgets/gimpcontrollerlist.c:556 +msgid "Disable Controller" +msgstr "Denetleyiciyi Kapat" + +#: ../app/widgets/gimpcontrollerlist.c:558 +msgid "Remove Controller" +msgstr "Denetleyiciyi Sil" + +#: ../app/widgets/gimpcontrollerlist.c:569 +#, c-format +msgid "Remove Controller '%s'?" +msgstr "%s Denetleyicisini Sil?" + +#: ../app/widgets/gimpcontrollerlist.c:573 +#, c-format +msgid "" +"Removing this controller from the list of active controllers will " +"permanently delete all event mappings you have configured.\n" +"\n" +"Selecting \"Disable Controller\" will disable the controller without " +"removing it." +msgstr "" +"Bu denetleyicinin etkin denetleyiciler listesinden silinmesi, " +"yapılandırdığınız olay eşlemlerinin tümünü kalıcı olarak silecektir.\n" +"\n" +"\"Denetleyiciyi Kapat\" seçimini yapmak denetleyicinin kaldırmadan " +"kapatılmasını sağlar." + +#: ../app/widgets/gimpcontrollerlist.c:633 +msgid "Configure Input Controller" +msgstr "Girdi Denetleyicisini Yapılandır" + +#: ../app/widgets/gimpcontrollerwheel.c:72 +#: ../app/widgets/gimpcontrollerwheel.c:75 +#: ../app/widgets/gimpcontrollerwheel.c:78 +#: ../app/widgets/gimpcontrollerwheel.c:81 +#: ../app/widgets/gimpcontrollerwheel.c:84 +#: ../app/widgets/gimpcontrollerwheel.c:87 +#: ../app/widgets/gimpcontrollerwheel.c:90 +#: ../app/widgets/gimpcontrollerwheel.c:93 +msgid "Scroll Up" +msgstr "Yukarı Kaydır" + +#: ../app/widgets/gimpcontrollerwheel.c:97 +#: ../app/widgets/gimpcontrollerwheel.c:100 +#: ../app/widgets/gimpcontrollerwheel.c:103 +#: ../app/widgets/gimpcontrollerwheel.c:106 +#: ../app/widgets/gimpcontrollerwheel.c:109 +#: ../app/widgets/gimpcontrollerwheel.c:112 +#: ../app/widgets/gimpcontrollerwheel.c:115 +#: ../app/widgets/gimpcontrollerwheel.c:118 +msgid "Scroll Down" +msgstr "Aşağı Kaydır" + +#: ../app/widgets/gimpcontrollerwheel.c:122 +#: ../app/widgets/gimpcontrollerwheel.c:125 +#: ../app/widgets/gimpcontrollerwheel.c:128 +#: ../app/widgets/gimpcontrollerwheel.c:131 +#: ../app/widgets/gimpcontrollerwheel.c:134 +#: ../app/widgets/gimpcontrollerwheel.c:137 +#: ../app/widgets/gimpcontrollerwheel.c:140 +#: ../app/widgets/gimpcontrollerwheel.c:143 +msgid "Scroll Left" +msgstr "Sola Kaydır" + +#: ../app/widgets/gimpcontrollerwheel.c:147 +#: ../app/widgets/gimpcontrollerwheel.c:150 +#: ../app/widgets/gimpcontrollerwheel.c:153 +#: ../app/widgets/gimpcontrollerwheel.c:156 +#: ../app/widgets/gimpcontrollerwheel.c:159 +#: ../app/widgets/gimpcontrollerwheel.c:162 +#: ../app/widgets/gimpcontrollerwheel.c:165 +#: ../app/widgets/gimpcontrollerwheel.c:168 +msgid "Scroll Right" +msgstr "Sağa Kaydır" + +#: ../app/widgets/gimpcontrollerwheel.c:180 +msgid "Mouse Wheel" +msgstr "Fare Tekerleği" + +#: ../app/widgets/gimpcontrollerwheel.c:224 +msgid "Mouse Wheel Events" +msgstr "Fare Tekerleği Olayları" + +#: ../app/widgets/gimpcursorview.c:137 ../app/widgets/gimpcursorview.c:159 +msgid "X" +msgstr "X" + +#: ../app/widgets/gimpcursorview.c:143 ../app/widgets/gimpcursorview.c:165 +msgid "Y" +msgstr "Y" + +#: ../app/widgets/gimpcursorview.c:146 +msgid "Units" +msgstr "Birim" + +#: ../app/widgets/gimpdataeditor.c:220 +msgid "Save" +msgstr "Kaydet" + +#: ../app/widgets/gimpdataeditor.c:228 +msgid "Revert" +msgstr "Geri al" + +#: ../app/widgets/gimpdataeditor.c:444 +#, c-format +msgid "%s (read only)" +msgstr "%s (sadece oku)" + +#: ../app/widgets/gimpdevicestatus.c:138 +msgid "Save device status" +msgstr "Aygıt durumunu kaydet" + +#: ../app/widgets/gimpdevicestatus.c:448 +#, c-format +msgid "Foreground: %d, %d, %d" +msgstr "Önplan: %d, %d, %d" + +#: ../app/widgets/gimpdevicestatus.c:453 +#, c-format +msgid "Background: %d, %d, %d" +msgstr "Arkaplan: %d, %d, %d" + +#: ../app/widgets/gimpdnd-xds.c:190 +msgid "The given filename does not have any known file extension." +msgstr "Verilen dosya adı bilinen hiçbir dosya uzantısına sahip değil." + +#: ../app/widgets/gimpdnd-xds.c:208 +msgid "File Exists" +msgstr "Dosya Mevcut" + +#: ../app/widgets/gimpdnd-xds.c:213 +msgid "_Replace" +msgstr "_Yerine Koy" + +#: ../app/widgets/gimpdnd-xds.c:224 +#, c-format +msgid "A file named '%s' already exists." +msgstr "'%s' adında bir dosya zaten mevcut." + +#: ../app/widgets/gimpdnd-xds.c:229 +msgid "Do you want to replace it with the image you are saving?" +msgstr "Varolan görüntüyü kaydettiğinizle değiştirmek istiyor musunuz?" + +#: ../app/widgets/gimpdockable.c:194 +msgid "Configure this tab" +msgstr "Bu sekmeyi yapılandır" + +#: ../app/widgets/gimpdockseparator.c:44 +msgid "You can drop dockable dialogs here" +msgstr "Rıhtımlanabilir kutuları buraya bırakabilirsiniz" + +#: ../app/widgets/gimperrordialog.c:151 +msgid "Too many error messages!" +msgstr "Çok fazla hata mesajı!" + +#: ../app/widgets/gimperrordialog.c:152 +msgid "Messages are redirected to stderr." +msgstr "İletiler stderr'e yönlendirilmiş." + +#: ../app/widgets/gimperrordialog.c:171 +#, c-format +msgid "%s Message" +msgstr "%s Mesajı" + +#: ../app/widgets/gimpfiledialog.c:310 +msgid "Automatically Detected" +msgstr "Otomatik Tanıma" + +#: ../app/widgets/gimpfiledialog.c:320 +msgid "By Extension" +msgstr "Uzantıya Göre" + +#: ../app/widgets/gimpfiledialog.c:652 +msgid "All files" +msgstr "Tüm dosyalar" + +#: ../app/widgets/gimpfiledialog.c:657 +msgid "All images" +msgstr "Tüm görüntüler" + +#: ../app/widgets/gimpfiledialog.c:786 +#, c-format +msgid "Select File _Type (%s)" +msgstr "_Dosya Türünü Seç (%s)" + +#: ../app/widgets/gimpfileprocview.c:187 +msgid "File Type" +msgstr "Dosya Türü" + +#: ../app/widgets/gimpfileprocview.c:199 +msgid "Extensions" +msgstr "Uzantılar" + +#. Instant update toggle +#: ../app/widgets/gimpgradienteditor.c:414 +msgid "Instant update" +msgstr "Anında tazeleme" + +#: ../app/widgets/gimpgradienteditor.c:775 +#, c-format +msgid "Zoom factor: %d:1" +msgstr "Odaklama oranı: %d: 1" + +#: ../app/widgets/gimpgradienteditor.c:778 +#, c-format +msgid "Displaying [%0.4f, %0.4f]" +msgstr "Görüntüleme [%0.4f, %0.4f]" + +#: ../app/widgets/gimpgradienteditor.c:997 +#, c-format +msgid "Position: %0.4f" +msgstr "Konum: %0.4f" + +#: ../app/widgets/gimpgradienteditor.c:998 +#, c-format +msgid "RGB (%0.3f, %0.3f, %0.3f)" +msgstr "RGB (%0.3f, %0.3f, %0.3f)" + +#: ../app/widgets/gimpgradienteditor.c:1000 +#, c-format +msgid "HSV (%0.1f, %0.1f, %0.1f)" +msgstr "HSV (%0.1f, %0.1f, %0.1f)" + +#: ../app/widgets/gimpgradienteditor.c:1002 +#, c-format +msgid "Luminance: %0.1f Opacity: %0.1f" +msgstr "Parlaklık: %0.1f Işık Geçirmezlik: %0.1f" + +#: ../app/widgets/gimpgradienteditor.c:1033 +#, c-format +msgid "RGB (%d, %d, %d)" +msgstr "RGB (%d, %d, %d)" + +#: ../app/widgets/gimpgradienteditor.c:1044 +msgid "Foreground color set to:" +msgstr "Önplan rengi değiştirildi:" + +#: ../app/widgets/gimpgradienteditor.c:1051 +msgid "Background color set to:" +msgstr "Arkaplan rengi değiştirildi:" + +#: ../app/widgets/gimpgradienteditor.c:1285 +#: ../app/widgets/gimpgradienteditor.c:1351 +#, c-format +msgid "%s%sDrag: move & compress" +msgstr "%s%sSürükle: taşı ve sıkıştır" + +#: ../app/widgets/gimpgradienteditor.c:1291 +msgid "Drag: move" +msgstr "Sürükle: taşı" + +#: ../app/widgets/gimpgradienteditor.c:1298 +#: ../app/widgets/gimpgradienteditor.c:1312 +#: ../app/widgets/gimpgradienteditor.c:1326 +#: ../app/widgets/gimpgradienteditor.c:1348 +#, c-format +msgid "%s%sClick: extend selection" +msgstr "%s%sTıkla: seçimi genişlet" + +#: ../app/widgets/gimpgradienteditor.c:1304 +#: ../app/widgets/gimpgradienteditor.c:1318 +msgid "Click: select" +msgstr "Tıkla: seç" + +#: ../app/widgets/gimpgradienteditor.c:1332 +#: ../app/widgets/gimpgradienteditor.c:1356 +msgid "Click: select Drag: move" +msgstr "Tıkla: seç Sürükle: taşı" + +#: ../app/widgets/gimpgradienteditor.c:1571 +#: ../app/widgets/gimpgradienteditor.c:1579 +#, c-format +msgid "Handle position: %0.4f" +msgstr "Tanıtıcı konumu: %0.4f" + +#: ../app/widgets/gimpgradienteditor.c:1596 +#, c-format +msgid "Distance: %0.4f" +msgstr "Uzaklık: %0.4f" + +#: ../app/widgets/gimpgrideditor.c:217 +msgid "Line _style:" +msgstr "Çizgi _biçemi:" + +#: ../app/widgets/gimpgrideditor.c:221 +msgid "Change grid foreground color" +msgstr "Izgaranın önalan rengini değiştir" + +#: ../app/widgets/gimpgrideditor.c:228 +msgid "_Foreground color:" +msgstr "Ö_nplan rengi:" + +#: ../app/widgets/gimpgrideditor.c:232 +msgid "Change grid background color" +msgstr "Izgaranın artalan rengini değiştir" + +#: ../app/widgets/gimpgrideditor.c:239 +msgid "_Background color:" +msgstr "_Arkaplan rengi:" + +#: ../app/widgets/gimpgrideditor.c:244 +msgid "Spacing" +msgstr "Boşluk" + +#: ../app/widgets/gimphelp.c:294 +msgid "Help browser is missing" +msgstr "Yardım gezgini kayıp" + +#: ../app/widgets/gimphelp.c:295 +msgid "The GIMP help browser is not available." +msgstr "GIMP yardım gezgini kullanılır durumda değil." + +#: ../app/widgets/gimphelp.c:296 +msgid "" +"The GIMP help browser plug-in appears to be missing from your installation. " +"You may instead use the web browser for reading the help pages." +msgstr "" +"GIMP yardım gezgini eklentisi kurulumunuzda kayıp görünüyor. Bunun yerine " +"yardım sayfalarını okumak için ağ tarayıcınızı kullanabilirsiniz." + +#: ../app/widgets/gimphelp.c:337 +msgid "Help browser doesn't start" +msgstr "Yardım gezgini başlatılamıyor" + +#: ../app/widgets/gimphelp.c:338 +msgid "Could not start the GIMP help browser plug-in." +msgstr "GIMP Yardımcısı başlatılamadı." + +#: ../app/widgets/gimphelp.c:365 +msgid "Use _Web Browser" +msgstr "A_ğ Tarayıcısını Kullan" + +#: ../app/widgets/gimphelp.c:614 +msgid "GIMP user manual is missing" +msgstr "GIMP kullanıcı kılavuzu kayıp" + +#: ../app/widgets/gimphelp.c:621 +msgid "_Read Online" +msgstr "Çevrimiçi _Oku" + +#: ../app/widgets/gimphelp.c:645 +msgid "The GIMP user manual is not installed on your computer." +msgstr "GIMP kullanıcı kılavuzu bilgisayarınızda yüklü değil." + +#: ../app/widgets/gimphelp.c:648 +msgid "" +"You may either install the additional help package or change your " +"preferences to use the online version." +msgstr "" +"Eklenebilir yardım paketini kurabilirsiniz ya da yeğlenenlerinizi " +"değiştirerek çevrimiçi sürümü kullanabilirsiniz." + +#: ../app/widgets/gimphistogrameditor.c:99 +msgid "Mean:" +msgstr "Ortalama:" + +#: ../app/widgets/gimphistogrameditor.c:100 +msgid "Std dev:" +msgstr "Standart Sapma:" + +#: ../app/widgets/gimphistogrameditor.c:101 +msgid "Median:" +msgstr "Ortanca:" + +#: ../app/widgets/gimphistogrameditor.c:102 +msgid "Pixels:" +msgstr "Piksel:" + +#: ../app/widgets/gimphistogrameditor.c:103 +msgid "Count:" +msgstr "Adet:" + +#: ../app/widgets/gimphistogrameditor.c:104 +msgid "Percentile:" +msgstr "Yüzde:" + +#: ../app/widgets/gimphistogrameditor.c:122 +msgid "Channel:" +msgstr "Kanal:" + +#: ../app/widgets/gimpimageprofileview.c:200 +msgid "Querying..." +msgstr "Sorguluyor..." + +#: ../app/widgets/gimpimagepropview.c:122 +msgid "Pixel dimensions:" +msgstr "Piksel ölçüleri:" + +#: ../app/widgets/gimpimagepropview.c:125 +msgid "Print size:" +msgstr "Yazdırma boyutu:" + +#: ../app/widgets/gimpimagepropview.c:128 +msgid "Resolution:" +msgstr "Çözünürlük:" + +#: ../app/widgets/gimpimagepropview.c:131 +msgid "Color space:" +msgstr "Renk uzayı:" + +#: ../app/widgets/gimpimagepropview.c:136 +msgid "File Name:" +msgstr "Dosya Adı:" + +#: ../app/widgets/gimpimagepropview.c:142 +msgid "File Size:" +msgstr "Dosya Boyutu:" + +#: ../app/widgets/gimpimagepropview.c:145 +msgid "File Type:" +msgstr "Dosya Türü:" + +#: ../app/widgets/gimpimagepropview.c:150 +msgid "Size in memory:" +msgstr "Bellekte kapladığı yer:" + +#: ../app/widgets/gimpimagepropview.c:153 +msgid "Undo steps:" +msgstr "Geri alma adımları:" + +#: ../app/widgets/gimpimagepropview.c:156 +msgid "Redo steps:" +msgstr "Yineleme adımları:" + +#: ../app/widgets/gimpimagepropview.c:161 +msgid "Number of pixels:" +msgstr "Benek sayısı:" + +#: ../app/widgets/gimpimagepropview.c:164 +msgid "Number of layers:" +msgstr "Katman sayısı:" + +#: ../app/widgets/gimpimagepropview.c:167 +msgid "Number of channels:" +msgstr "Kanal sayısı:" + +#: ../app/widgets/gimpimagepropview.c:170 +msgid "Number of paths:" +msgstr "Yol sayısı:" + +#: ../app/widgets/gimpimagepropview.c:471 +#, c-format +msgid "pixels/%s" +msgstr "piksel/%s" + +#: ../app/widgets/gimpimagepropview.c:473 +#, c-format +msgid "%g × %g %s" +msgstr "%g × %g %s" + +#: ../app/widgets/gimpimagepropview.c:494 +msgid "colors" +msgstr "renk" + +#: ../app/widgets/gimpitemtreeview.c:980 +msgid "Set Item Exclusive Visible" +msgstr "Öğeyi Özel Görünür Ayarla" + +#: ../app/widgets/gimpitemtreeview.c:988 +msgid "Set Item Exclusive Linked" +msgstr "Öğeyi Özel Bağlanmış Ayarla" + +#: ../app/widgets/gimplayertreeview.c:218 +msgid "Reorder Layer" +msgstr "Katmanı Yeniden Sırala" + +#: ../app/widgets/gimplayertreeview.c:306 +msgid "Lock alpha channel" +msgstr "Görünür kanalını kilitle" + +#: ../app/widgets/gimplayertreeview.c:318 +msgid "Lock:" +msgstr "Kilitle:" + +#: ../app/widgets/gimplayertreeview.c:841 +msgid "Empty Layer" +msgstr "Boş Katman" + +#: ../app/widgets/gimpmenudock.c:159 +msgid "Auto" +msgstr "Otomatik" + +#: ../app/widgets/gimpmenudock.c:170 +msgid "" +"When enabled the dialog automatically follows the image you are working on." +msgstr "" +"Etkinleştirildiğinde iletişim kutusu otomatik olarak çalıştığınız görüntüyü " +"takip eder." + +#: ../app/widgets/gimpmessagebox.c:443 +#, c-format +msgid "Message repeated %d times." +msgstr "İleti %d kere yinelendi." + +#: ../app/widgets/gimpmessagebox.c:445 +msgid "Message repeated once." +msgstr "Mesaj bir kez tekrarlandı." + +#: ../app/widgets/gimppaletteeditor.c:255 +#: ../app/widgets/gimppaletteeditor.c:741 +msgid "Undefined" +msgstr "Tanımsız" + +#: ../app/widgets/gimppaletteeditor.c:263 +msgid "Columns:" +msgstr "Sütunlar:" + +#: ../app/widgets/gimpprofilechooserdialog.c:137 +msgid "ICC color profile (*.icc, *.icm)" +msgstr "ICC renk profili (*.icc, *.icm)" + +#: ../app/widgets/gimpprogressdialog.c:220 +msgid "Progress" +msgstr "İşlem" + +#: ../app/widgets/gimpselectiondata.c:242 +#, c-format +msgid "" +"The filename '%s' couldn't be converted to a valid URI:\n" +"\n" +"%s" +msgstr "" +"'%s' dosya adı geçerli bir adrese dönüştürelemedi:\n" +"\n" +"%s" + +#: ../app/widgets/gimpselectiondata.c:246 +msgid "Invalid UTF-8" +msgstr "Geçersiz UTF-8" + +#: ../app/widgets/gimpsettingsbox.c:239 +msgid "Pick a setting from the list" +msgstr "Listeden bir ayar seçin" + +#: ../app/widgets/gimpsettingsbox.c:260 +msgid "Add settings to favorites" +msgstr "Ayarları favorilerinize ekleyin" + +#: ../app/widgets/gimpsettingsbox.c:288 +msgid "_Import Settings from File..." +msgstr "Dosyadan Ayarları _İçe Aktar..." + +#: ../app/widgets/gimpsettingsbox.c:294 +msgid "_Export Settings to File..." +msgstr "Ayarları (Dosyaya) _Dışa Aktar..." + +#: ../app/widgets/gimpsettingsbox.c:301 +msgid "_Manage Settings..." +msgstr "Ayarları _Yönet..." + +#: ../app/widgets/gimpsettingsbox.c:588 +msgid "Add Settings to Favorites" +msgstr "Ayarları Favorilere Ekle" + +#: ../app/widgets/gimpsettingsbox.c:591 +msgid "Enter a name for the settings" +msgstr "Ayarları için bir ad girin" + +#: ../app/widgets/gimpsettingsbox.c:592 +msgid "Saved Settings" +msgstr "Kaydedilmiş Ayarlar" + +#: ../app/widgets/gimpsettingsbox.c:627 +msgid "Manage Saved Settings" +msgstr "Kaydedilmiş Ayarları Yönet" + +#: ../app/widgets/gimpsettingseditor.c:174 +msgid "Import settings from a file" +msgstr "Bir dosyadan ayarları içe aktar" + +#: ../app/widgets/gimpsettingseditor.c:183 +msgid "Export the selected settings to a file" +msgstr "Seçilmiş ayarları (bir dosyaya) dışa aktar" + +#: ../app/widgets/gimpsettingseditor.c:192 +msgid "Delete the selected settings" +msgstr "Seçilmiş ayarları sil" + +#: ../app/widgets/gimpsizebox.c:464 +#, c-format +msgid "%d × %d ppi" +msgstr "%d × %d ppi" + +#: ../app/widgets/gimpsizebox.c:466 +#, c-format +msgid "%d ppi" +msgstr "%d ppi" + +#: ../app/widgets/gimpstrokeeditor.c:185 +msgid "Line width:" +msgstr "Çizgi genişliği:" + +#: ../app/widgets/gimpstrokeeditor.c:202 +msgid "_Line Style" +msgstr "Çizgi _Biçemi" + +#: ../app/widgets/gimpstrokeeditor.c:221 +msgid "_Cap style:" +msgstr "_Tepe biçemi:" + +#: ../app/widgets/gimpstrokeeditor.c:227 +msgid "_Join style:" +msgstr "_Birleştirme biçemi:" + +#: ../app/widgets/gimpstrokeeditor.c:232 +msgid "_Miter limit:" +msgstr "_Köşe sınırı:" + +#: ../app/widgets/gimpstrokeeditor.c:239 +msgid "Dash pattern:" +msgstr "Çizgi deseni:" + +#: ../app/widgets/gimpstrokeeditor.c:302 +msgid "Dash _preset:" +msgstr "Çizgi _önayarı:" + +#: ../app/widgets/gimpstrokeeditor.c:323 +msgid "_Antialiasing" +msgstr "_Yazıtipi Yumuşatma" + +#: ../app/widgets/gimptemplateeditor.c:180 +#, c-format +msgid "%p" +msgstr "%p" + +#: ../app/widgets/gimptemplateeditor.c:255 +msgid "_Advanced Options" +msgstr "_Gelişmiş Seçenekler" + +#: ../app/widgets/gimptemplateeditor.c:362 +msgid "Color _space:" +msgstr "Renk _uzayı:" + +#: ../app/widgets/gimptemplateeditor.c:370 +msgid "_Fill with:" +msgstr "_Doldur:" + +#: ../app/widgets/gimptemplateeditor.c:380 +msgid "Comme_nt:" +msgstr "_Açıklama:" + +#: ../app/widgets/gimptemplateeditor.c:530 +msgid "_Name:" +msgstr "İsi_m:" + +#: ../app/widgets/gimptemplateeditor.c:543 +msgid "_Icon:" +msgstr "_Simge:" + +#: ../app/widgets/gimptemplateeditor.c:671 +#, c-format +msgid "%d × %d ppi, %s" +msgstr "%d × %d ppi, %s" + +#: ../app/widgets/gimptemplateeditor.c:673 +#, c-format +msgid "%d ppi, %s" +msgstr "%d ppi, %s" + +#: ../app/widgets/gimptexteditor.c:188 +msgid "_Language:" +msgstr "_Dil:" + +#: ../app/widgets/gimptexteditor.c:234 +msgid "_Use selected font" +msgstr "_Seçili yazıtipini kullan" + +#: ../app/widgets/gimpthumbbox.c:344 +#, c-format +msgid "" +"Click to update preview\n" +"%s%sClick to force update even if preview is up-to-date" +msgstr "" +"Görüntüyü güncelleştirmek için tıklayın\n" +"%s%sGörüntü güncel olsa bile hızlı yenileme için tıklayın" + +#: ../app/widgets/gimpthumbbox.c:362 +msgid "Pr_eview" +msgstr "Ön_izleme" + +#: ../app/widgets/gimpthumbbox.c:417 ../app/widgets/gimpthumbbox.c:481 +msgid "No selection" +msgstr "Seçim yok" + +#: ../app/widgets/gimpthumbbox.c:609 ../app/widgets/gimpthumbbox.c:630 +#, c-format +msgid "Thumbnail %d of %d" +msgstr "Küçük Önizleme %d of %d" + +#: ../app/widgets/gimpthumbbox.c:743 ../app/widgets/gimpthumbbox.c:753 +msgid "Creating preview..." +msgstr "Önizleme oluşturuluyor..." + +#: ../app/widgets/gimptoolbox-color-area.c:80 +msgid "" +"Foreground & background colors.\n" +"The black and white squares reset colors.\n" +"The arrows swap colors.\n" +"Click to open the color selection dialog." +msgstr "" +"Önalan ve artalan renkleri.\n" +"Siyah ve beyaz karelerin sıfırlama renkleri.\n" +"Okların takas renkleri.\n" +"Renk seçme kutusunu açmak için tıklayın." + +#: ../app/widgets/gimptoolbox-color-area.c:141 +msgid "Change Foreground Color" +msgstr "Önplan Resmini Değiştir" + +#: ../app/widgets/gimptoolbox-color-area.c:146 +msgid "Change Background Color" +msgstr "Arkaplan Resmini Değiştir" + +#: ../app/widgets/gimptoolbox-image-area.c:112 +#: ../app/widgets/gimptoolbox-image-area.c:117 +msgid "" +"The active image.\n" +"Click to open the Image Dialog." +msgstr "" +"Etkin görüntü.\n" +"Görüntü Kutusunu açmak için tıklayın." + +#: ../app/widgets/gimptoolbox-image-area.c:114 +msgid "Drag to an XDS enabled file-manager to save the image." +msgstr "" +"Etkin XDS olan bir dosya yöneticisine görüntüyü kaydetmek için sürükleyin." + +#: ../app/widgets/gimptoolbox-indicator-area.c:150 +msgid "" +"The active brush.\n" +"Click to open the Brush Dialog." +msgstr "" +"Etkin fırça.\n" +"Fırça Kutusu'nu açmak için tıklayın." + +#: ../app/widgets/gimptoolbox-indicator-area.c:182 +msgid "" +"The active pattern.\n" +"Click to open the Pattern Dialog." +msgstr "" +"Etkin desen.\n" +"Desen Kutusu'nu açmak için tıklayın." + +#: ../app/widgets/gimptoolbox-indicator-area.c:214 +msgid "" +"The active gradient.\n" +"Click to open the Gradient Dialog." +msgstr "" +"Etkin renk geçişi.\n" +"Renk Geçişi Kutusu'nu açmak için tıklayın." + +#: ../app/widgets/gimptooloptionseditor.c:165 +msgid "Save options to..." +msgstr "Seçenekleri kaydet..." + +#: ../app/widgets/gimptooloptionseditor.c:173 +msgid "Restore options from..." +msgstr "Seçenekleri geri yükle..." + +#: ../app/widgets/gimptooloptionseditor.c:181 +msgid "Delete saved options..." +msgstr "Kayıtlı seçenekleri sil..." + +#: ../app/widgets/gimptooloptionseditor.c:480 +#, c-format +msgid "Error saving tool options presets: %s" +msgstr "Araç seçenekleri önayarları kaydedilirken hata: %s" + +#: ../app/widgets/gimpuimanager.c:738 +msgid "Your GIMP installation is incomplete:" +msgstr "GIMP kurulumu tamamlanamadı:" + +#: ../app/widgets/gimpuimanager.c:740 +msgid "Plase make sure the menu XML files are correctly installed." +msgstr "Lütfen XML dosyalarının doğru yüklendiğine emin olun." + +#: ../app/widgets/gimpuimanager.c:746 +#, c-format +msgid "There was an error parsing the menu definition from %s: %s" +msgstr "%s içinden menü tanımı ayrıştırılırken bir hata meydana geldi: %s" + +#: ../app/widgets/gimpundoeditor.c:270 +msgid "[ Base Image ]" +msgstr "[ Temel Resim ]" + +#: ../app/widgets/gimpvectorstreeview.c:110 +msgid "Reorder path" +msgstr "Yolu yeniden düzenle" + +#: ../app/widgets/gimpvectorstreeview.c:253 +msgid "Empty Path" +msgstr "Boş Yol" + +#: ../app/widgets/gimpviewablebox.c:81 +msgid "Open the brush selection dialog" +msgstr "Fırça seçim kutusunu aç" + +#: ../app/widgets/gimpviewablebox.c:138 +msgid "Open the pattern selection dialog" +msgstr "Desen seçim kutusunu aç" + +#: ../app/widgets/gimpviewablebox.c:204 +msgid "Open the gradient selection dialog" +msgstr "Renk geçişi seçim kutusunu aç" + +#: ../app/widgets/gimpviewablebox.c:224 +msgid "Reverse" +msgstr "Ters" + +#: ../app/widgets/gimpviewablebox.c:306 +msgid "Open the palette selection dialog" +msgstr "Palet seçim kutusunu aç" + +#: ../app/widgets/gimpviewablebox.c:364 +msgid "Open the font selection dialog" +msgstr "Yazıtipi seçim penceresini aç" + +#: ../app/widgets/gimpwidgets-utils.c:608 +#, c-format +msgid "%s (try %s)" +msgstr "%s (%s dene)" + +#: ../app/widgets/gimpwidgets-utils.c:608 +#, c-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: ../app/widgets/gimpwidgets-utils.c:612 +#, c-format +msgid "%s (try %s, %s)" +msgstr "%s (%s, %s dene)" + +#: ../app/widgets/gimpwidgets-utils.c:616 +#, c-format +msgid "%s (try %s, %s, %s)" +msgstr "%s (%s, %s, %s dene)" + +#: ../app/widgets/gimpwidgets-utils.c:882 +#, c-format +msgid "Invalid UTF-8 data in file '%s'." +msgstr "'%s' dosyası içinde geçersiz UTF-8 verisi." + +#: ../app/widgets/widgets-enums.c:23 +msgid "Foreground" +msgstr "Önplan" + +#: ../app/widgets/widgets-enums.c:83 +msgid "Pixel" +msgstr "Piksel" + +#: ../app/widgets/widgets-enums.c:85 +msgid "HSV" +msgstr "HSV" + +#: ../app/widgets/widgets-enums.c:86 +msgid "CMYK" +msgstr "CMYK" + +#: ../app/widgets/widgets-enums.c:115 +msgid "Pick only" +msgstr "Sadece al" + +#: ../app/widgets/widgets-enums.c:116 +msgid "Set foreground color" +msgstr "Önplan rengini tanımla" + +#: ../app/widgets/widgets-enums.c:117 +msgid "Set background color" +msgstr "Arkaplan rengini tanımla" + +#: ../app/widgets/widgets-enums.c:118 +msgid "Add to palette" +msgstr "Palete ekle" + +#: ../app/widgets/widgets-enums.c:173 +msgid "Black & white" +msgstr "Siyah ve beyaz" + +#: ../app/widgets/widgets-enums.c:174 +msgid "Fancy" +msgstr "Süslü" + +#: ../app/widgets/widgets-enums.c:201 +msgid "GIMP help browser" +msgstr "GIMP yardım gezgini" + +#: ../app/widgets/widgets-enums.c:202 +msgid "Web browser" +msgstr "Web tarayıcı" + +#: ../app/widgets/widgets-enums.c:229 +msgid "Linear histogram" +msgstr "Doğrusal histogram" + +#: ../app/widgets/widgets-enums.c:230 +msgid "Logarithmic histogram" +msgstr "Logaritmik histogram" + +#: ../app/widgets/widgets-enums.c:263 +msgid "Icon" +msgstr "Simge" + +#: ../app/widgets/widgets-enums.c:264 +msgid "Current status" +msgstr "Geçerli durum" + +#: ../app/widgets/widgets-enums.c:266 +msgid "Description" +msgstr "Açıklama" + +#: ../app/widgets/widgets-enums.c:267 +msgid "Icon & text" +msgstr "Simge ve metin" + +#: ../app/widgets/widgets-enums.c:268 +msgid "Icon & desc" +msgstr "Simge ve açıklama" + +#: ../app/widgets/widgets-enums.c:269 +msgid "Status & text" +msgstr "Durum ve metin" + +#: ../app/widgets/widgets-enums.c:270 +msgid "Status & desc" +msgstr "Durum ve betimleme" + +#: ../app/widgets/widgets-enums.c:298 +msgid "Normal window" +msgstr "Normal pencere" + +#: ../app/widgets/widgets-enums.c:299 +msgid "Utility window" +msgstr "Yardımcı pencere" + +#: ../app/widgets/widgets-enums.c:300 +msgid "Keep above" +msgstr "Üzerinde tut" + +#: ../app/xcf/xcf-load.c:277 +msgid "" +"This XCF file is corrupt! I have loaded as much of it as I can, but it is " +"incomplete." +msgstr "" +"Bu XCF dosyası bozulmuş! Yapabildiğim kadar çok yükledim, ama tamamlanamadı." + +#: ../app/xcf/xcf-load.c:286 +#, c-format +msgid "" +"This XCF file is corrupt! I could not even salvage any partial image data " +"from it." +msgstr "" +"Bu XCF dosyası bozulmuş! Herhangi bir kısmi görüntü verisi kurtaramadım." + +#: ../app/xcf/xcf-load.c:324 +msgid "" +"XCF warning: version 0 of XCF file format\n" +"did not save indexed colormaps correctly.\n" +"Substituting grayscale map." +msgstr "" +"XCF uyarısı: XCF dosya biçiminin 0. sürümü\n" +"indisli renk haritalarını düzgün saklamaz.\n" +"Griölçekli palet ile değiştiriliyor." + +#: ../app/xcf/xcf-read.c:109 +msgid "Invalid UTF-8 string in XCF file" +msgstr "XCF dosyasında geçersiz UTF-8 dizge." + +#: ../app/xcf/xcf-write.c:87 +#, c-format +msgid "Error writing XCF: %s" +msgstr "XCF dosyasına yazılırken bir hata oldu: %s" + +#: ../app/xcf/xcf-seek.c:44 ../app/xcf/xcf-seek.c:61 ../app/xcf/xcf-seek.c:72 +#, c-format +msgid "Could not seek in XCF file: %s" +msgstr "XCF dosyası açılamadı: %s" + +#: ../app/xcf/xcf.c:99 ../app/xcf/xcf.c:167 +msgid "GIMP XCF image" +msgstr "GIMP XCF dosyası" + +#: ../app/xcf/xcf.c:271 +#, c-format +msgid "Opening '%s'" +msgstr "'%s' açılıyor" + +#: ../app/xcf/xcf.c:313 +#, c-format +msgid "XCF error: unsupported XCF file version %d encountered" +msgstr "XCF hatası: desteklenmeyen %d XCF dosya sürümüyle karşılaşıldı" + +#: ../app/xcf/xcf.c:383 +#, c-format +msgid "Saving '%s'" +msgstr "'%s' kaydediliyor" + +#: ../app/xcf/xcf.c:403 +#, c-format +msgid "Error saving XCF file: %s" +msgstr "XCF dosyası kaydedilirken bir hata oldu: %s" + +#: ../desktop/gimp.desktop.in.in.h:1 +msgid "Create images and edit photographs" +msgstr "Resim ya da fotoğrafları oluşturun ve düzenleyin" + +#: ../desktop/gimp.desktop.in.in.h:2 +msgid "GIMP Image Editor" +msgstr "GIMP Görüntü Düzenleyici" + +#: ../desktop/gimp.desktop.in.in.h:3 +msgid "Image Editor" +msgstr "Resim Düzenleyici" + +#: ../tools/gimp-remote.c:65 +msgid "Use a running GIMP only, never start a new one" +msgstr "Sadece bir tane çalışan GIMP kullan, yenisini başlatma" + +#: ../tools/gimp-remote.c:70 +msgid "Only check if GIMP is running, then quit" +msgstr "Sadece GIMP çalışıyor mu diye bak, sonra çık" + +#: ../tools/gimp-remote.c:76 +msgid "Print X window ID of GIMP toolbox window, then quit" +msgstr "" +"GIMP araç kutusu penceresinin X penceresi kimliğini yazdır, sonra çık" + +#: ../tools/gimp-remote.c:82 +msgid "Start GIMP without showing the startup window" +msgstr "GIMP'i başlangıç penceresi olmadan başlat" + +#: ../tools/gimp-remote-x11.c:67 +msgid "Could not connect to GIMP." +msgstr "GIMP'e bağlanılamadı." + +#: ../tools/gimp-remote-x11.c:68 +msgid "Make sure that the Toolbox is visible!" +msgstr "Araç kutusunun görünür olduğundan emin olun!" + +#. if execv and execvp return, there was an error +#: ../tools/gimp-remote-x11.c:248 +#, c-format +msgid "Couldn't start '%s': %s" +msgstr "'%s' başlatılamadı: %s" diff --git a/multimedia/graphics/gimp/gimp/pspec.xml b/multimedia/graphics/gimp/gimp/pspec.xml new file mode 100644 index 0000000000..388797d8ce --- /dev/null +++ b/multimedia/graphics/gimp/gimp/pspec.xml @@ -0,0 +1,1206 @@ + + + + + gimp + http://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 +

GNU Image Manipulation Program + GIMP is a mature image editor with many advanced features and plugin support. + http://download.gimp.org/pub/gimp/v2.8/gimp-2.8.14.tar.bz2 + + gtk-doc + atk-devel + xdg-utils + pkgconfig + tiff-devel + zlib-devel + lcms-devel + gegl-devel + babl-devel + dbus-devel + gtk2-devel + aalib-devel + bzip2-devel + pango-devel + cairo-devel + glib2-devel + libwmf-devel + jasper-devel + libX11-devel + libmng-devel + libpng-devel + libXpm-devel + libXmu-devel + libXext-devel + librsvg-devel + libexif-devel + alsa-lib-devel + freetype-devel + dbus-glib-devel + libXfixes-devel + libgudev1-devel + libXcursor-devel + fontconfig-devel + python-gtk-devel + gdk-pixbuf-devel + ghostscript-devel + webkit-gtk2-devel + poppler-glib-devel + libjpeg-turbo-devel + + + + + gimp-devel + data + data:doc + Development header and documents for GIMP + + gtk2-devel + cairo-devel + gdk-pixbuf-devel + gimp + + + /usr/include + /usr/share/gtk-doc + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + gimp + app:gui + + atk + gegl + babl + dbus + gtk2 + tiff + zlib + lcms + aalib + bzip2 + pango + cairo + glib2 + libwmf + libXpm + libmng + libpng + libXmu + jasper + libX11 + libXext + librsvg + libexif + alsa-lib + freetype + dbus-glib + libXfixes + libgudev1 + xdg-utils + libXcursor + fontconfig + python-gtk + gdk-pixbuf + ghostscript + webkit-gtk2 + poppler-glib + libjpeg-turbo + + + /etc + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/gimp + /usr/share/icons + /usr/share/appdata + /usr/share/mime-info + /usr/share/applications + /usr/share/application-registry + + + gimp-splash-colors.png + + + + + gimp-i18n-tr + locale:tr + multimedia.graphics.gimp.l10n + Gimp translation files for Turkish + + gimp + + + /usr/share/locale/tr + + + + + gimp-i18n-ast + locale:ast + multimedia.graphics.gimp.l10n + Gimp translation files for Asturian + + gimp + + + /usr/share/locale/ast + + + + + gimp-i18n-my + locale:my + multimedia.graphics.gimp.l10n + Gimp translation files for Burmese + + gimp + + + /usr/share/locale/my + + + + + gimp-i18n-nds + locale:nds + multimedia.graphics.gimp.l10n + Gimp translation files for Low Saxon + + gimp + + + /usr/share/locale/nds + + + + + gimp-i18n-el + locale:el + multimedia.graphics.gimp.l10n + Gimp translation files for Greek + + gimp + + + /usr/share/locale/el + + + + + gimp-i18n-gu + locale:gu + multimedia.graphics.gimp.l10n + Gimp translation files for Gujarati + + gimp + + + /usr/share/locale/gu + + + + + gimp-i18n-be + locale:be + multimedia.graphics.gimp.l10n + Gimp translation files for Belarusian + + gimp + + + /usr/share/locale/be + + + + + gimp-i18n-vi + locale:vi + multimedia.graphics.gimp.l10n + Gimp translation files for Vietnamese + + gimp + + + /usr/share/locale/vi + + + + + gimp-i18n-ca + locale:ca + multimedia.graphics.gimp.l10n + Gimp translation files for Catalan + + gimp + + + /usr/share/locale/ca + + + + + gimp-i18n-eo + locale:eo + multimedia.graphics.gimp.l10n + Gimp translation files for Esperanto + + gimp + + + /usr/share/locale/eo + + + + + gimp-i18n-cs + locale:cs + multimedia.graphics.gimp.l10n + Gimp translation files for Czech + + gimp + + + /usr/share/locale/cs + + + + + gimp-i18n-ca_valencia + locale:ca@valencia + multimedia.graphics.gimp.l10n + Gimp translation files for Catalan (Valencia) + + gimp + + + /usr/share/locale/ca@valencia + + + + + gimp-i18n-ar + locale:ar + multimedia.graphics.gimp.l10n + Gimp translation files for Arabic + + gimp + + + /usr/share/locale/ar + + + + + gimp-i18n-km + locale:km + multimedia.graphics.gimp.l10n + Gimp translation files for Khmer + + gimp + + + /usr/share/locale/km + + + + + gimp-i18n-ga + locale:ga + multimedia.graphics.gimp.l10n + Gimp translation files for Irish Gaelic + + gimp + + + /usr/share/locale/ga + + + + + gimp-i18n-fi + locale:fi + multimedia.graphics.gimp.l10n + Gimp translation files for Finnish + + gimp + + + /usr/share/locale/fi + + + + + gimp-i18n-eu + locale:eu + multimedia.graphics.gimp.l10n + Gimp translation files for Basque + + gimp + + + /usr/share/locale/eu + + + + + gimp-i18n-et + locale:et + multimedia.graphics.gimp.l10n + Gimp translation files for Estonian + + gimp + + + /usr/share/locale/et + + + + + gimp-i18n-xh + locale:xh + multimedia.graphics.gimp.l10n + Gimp translation files for Xhosa + + gimp + + + /usr/share/locale/xh + + + + + gimp-i18n-gl + locale:gl + multimedia.graphics.gimp.l10n + Gimp translation files for Galician + + gimp + + + /usr/share/locale/gl + + + + + gimp-i18n-id + locale:id + multimedia.graphics.gimp.l10n + Gimp translation files for Indonesian + + gimp + + + /usr/share/locale/id + + + + + gimp-i18n-es + locale:es + multimedia.graphics.gimp.l10n + Gimp translation files for Spanish + + gimp + + + /usr/share/locale/es + + + + + gimp-i18n-ru + locale:ru + multimedia.graphics.gimp.l10n + Gimp translation files for Russian + + gimp + + + /usr/share/locale/ru + + + + + gimp-i18n-rw + locale:rw + multimedia.graphics.gimp.l10n + Gimp translation files for Kinyarwanda + + gimp + + + /usr/share/locale/rw + + + + + gimp-i18n-nl + locale:nl + multimedia.graphics.gimp.l10n + Gimp translation files for Dutch + + gimp + + + /usr/share/locale/nl + + + + + gimp-i18n-nn + locale:nn + multimedia.graphics.gimp.l10n + Gimp translation files for Norwegian Nynorsk + + gimp + + + /usr/share/locale/nn + + + + + gimp-i18n-nb + locale:nb + multimedia.graphics.gimp.l10n + Gimp translation files for Norwegian Bookmal + + gimp + + + /usr/share/locale/nb + + + + + gimp-i18n-ne + locale:ne + multimedia.graphics.gimp.l10n + Gimp translation files for Nepali + + gimp + + + /usr/share/locale/ne + + + + + gimp-i18n-lt + locale:lt + multimedia.graphics.gimp.l10n + Gimp translation files for Lithuanian + + gimp + + + /usr/share/locale/lt + + + + + gimp-i18n-pa + locale:pa + multimedia.graphics.gimp.l10n + Gimp translation files for Punjabi + + gimp + + + /usr/share/locale/pa + + + + + gimp-i18n-ro + locale:ro + multimedia.graphics.gimp.l10n + Gimp translation files for Romanian + + gimp + + + /usr/share/locale/ro + + + + + gimp-i18n-en_GB + locale:en_GB + multimedia.graphics.gimp.l10n + Gimp translation files for British English + + gimp + + + /usr/share/locale/en_GB + + + + + gimp-i18n-yi + locale:yi + multimedia.graphics.gimp.l10n + Gimp translation files for Yi + + gimp + + + /usr/share/locale/yi + + + + + gimp-i18n-en_CA + locale:en_CA + multimedia.graphics.gimp.l10n + Gimp translation files for Catalan (en) + + gimp + + + /usr/share/locale/en_CA + + + + + gimp-i18n-fr + locale:fr + multimedia.graphics.gimp.l10n + Gimp translation files for French + + gimp + + + /usr/share/locale/fr + + + + + gimp-i18n-bg + locale:bg + multimedia.graphics.gimp.l10n + Gimp translation files for Bulgarian + + gimp + + + /usr/share/locale/bg + + + + + gimp-i18n-ms + locale:ms + multimedia.graphics.gimp.l10n + Gimp translation files for Malay + + gimp + + + /usr/share/locale/ms + + + + + gimp-i18n-pt_BR + locale:pt_BR + multimedia.graphics.gimp.l10n + Gimp translation files for Brazilian Portuguese + + gimp + + + /usr/share/locale/pt_BR + + + + + gimp-i18n-hr + locale:hr + multimedia.graphics.gimp.l10n + Gimp translation files for Croatian (Hrvatski) + + gimp + + + /usr/share/locale/hr + + + + + gimp-i18n-zh_TW + locale:zh_TW + multimedia.graphics.gimp.l10n + Gimp translation files for Chinese Traditional + + gimp + + + /usr/share/locale/zh_TW + + + + + gimp-i18n-ko + locale:ko + multimedia.graphics.gimp.l10n + Gimp translation files for Korean + + gimp + + + /usr/share/locale/ko + + + + + gimp-i18n-it + locale:it + multimedia.graphics.gimp.l10n + Gimp translation files for Italian + + gimp + + + /usr/share/locale/it + + + + + gimp-i18n-fa + locale:fa + multimedia.graphics.gimp.l10n + Gimp translation files for Farsi (Persian) + + gimp + + + /usr/share/locale/fa + + + + + gimp-i18n-dz + locale:dz + multimedia.graphics.gimp.l10n + Gimp translation files for Dzongkha + + gimp + + + /usr/share/locale/dz + + + + + gimp-i18n-sr_Latn + locale:sr@Latn + multimedia.graphics.gimp.l10n + Gimp translation files for Serbian Latin + + gimp + + + /usr/share/locale/sr@latin + + + + + gimp-i18n-da + locale:da + multimedia.graphics.gimp.l10n + Gimp translation files for Danish + + gimp + + + /usr/share/locale/da + + + + + gimp-i18n-ja + locale:ja + multimedia.graphics.gimp.l10n + Gimp translation files for Japanese + + gimp + + + /usr/share/locale/ja + + + + + gimp-i18n-he + locale:he + multimedia.graphics.gimp.l10n + Gimp translation files for Hebrew + + gimp + + + /usr/share/locale/he + + + + + gimp-i18n-pt + locale:pt + multimedia.graphics.gimp.l10n + Gimp translation files for Portuguese + + gimp + + + /usr/share/locale/pt + + + + + gimp-i18n-zh_CN + locale:zh_CN + multimedia.graphics.gimp.l10n + Gimp translation files for Chinese Simplified + + gimp + + + /usr/share/locale/zh_CN + + + + + gimp-i18n-sr + locale:sr + multimedia.graphics.gimp.l10n + Gimp translation files for Serbian + + gimp + + + /usr/share/locale/sr + + + + + gimp-i18n-oc + locale:oc + multimedia.graphics.gimp.l10n + Gimp translation files for Occitan + + gimp + + + /usr/share/locale/oc + + + + + gimp-i18n-sv + locale:sv + multimedia.graphics.gimp.l10n + Gimp translation files for Swedish + + gimp + + + /usr/share/locale/sv + + + + + gimp-i18n-mk + locale:mk + multimedia.graphics.gimp.l10n + Gimp translation files for Macedonian + + gimp + + + /usr/share/locale/mk + + + + + gimp-i18n-sk + locale:sk + multimedia.graphics.gimp.l10n + Gimp translation files for Slovak + + gimp + + + /usr/share/locale/sk + + + + + gimp-i18n-de + locale:de + multimedia.graphics.gimp.l10n + Gimp translation files for German + + gimp + + + /usr/share/locale/de + + + + + gimp-i18n-pl + locale:pl + multimedia.graphics.gimp.l10n + Gimp translation files for Polish + + gimp + + + /usr/share/locale/pl + + + + + gimp-i18n-uk + locale:uk + multimedia.graphics.gimp.l10n + Gimp translation files for Ukrainian + + gimp + + + /usr/share/locale/uk + + + + + gimp-i18n-sl + locale:sl + multimedia.graphics.gimp.l10n + Gimp translation files for Slovenian + + gimp + + + /usr/share/locale/sl + + + + + gimp-i18n-hu + locale:hu + multimedia.graphics.gimp.l10n + Gimp translation files for Hungarian + + gimp + + + /usr/share/locale/hu + + + + + gimp-i18n-tt + locale:tt + multimedia.graphics.gimp.l10n + Gimp translation files for Tatarish + + gimp + + + /usr/share/locale/tt + + + + + gimp-i18n-az + locale:az + multimedia.graphics.gimp.l10n + Gimp translation files for Azerbaijani + + gimp + + + /usr/share/locale/az + + + + + gimp-i18n-am + locale:am + multimedia.graphics.gimp.l10n + Gimp translation files for Amharic + + gimp + + + /usr/share/locale/am + + + + + gimp-i18n-is + locale:is + multimedia.graphics.gimp.l10n + Gimp translation files for Icelandic + + gimp + + + /usr/share/locale/is + + + + + gimp-i18n-lv + locale:lv + multimedia.graphics.gimp.l10n + Gimp translation files for Latvia + + gimp + + + /usr/share/locale/lv + + + + + gimp-i18n-th + locale:th + multimedia.graphics.gimp.l10n + Gimp translation files for Thai + + gimp + + + /usr/share/locale/th + + + + + gimp-i18n-ka + locale:ka + multimedia.graphics.gimp.l10n + Gimp translation files for Georgian + + gimp + + + /usr/share/locale/ka + + + + + gimp-i18n-hi + locale:hi + multimedia.graphics.gimp.l10n + Gimp translation files for Hindi + + gimp + + + /usr/share/locale/hi + + + + + gimp-i18n-zh_HK + locale:zh_HK + multimedia.graphics.gimp.l10n + Gimp translation files for Chinese Hong Kong + + gimp + + + /usr/share/locale/zh_HK + + + + + gimp-i18n-ml + locale:ml + multimedia.graphics.gimp.l10n + Gimp translation files for Malayalam + + gimp + + + /usr/share/locale/ml + + + + + gimp-i18n-ta + locale:ta + multimedia.graphics.gimp.l10n + Gimp translation files for Tamil + + gimp + + + /usr/share/locale/ta + + + + + gimp-i18n-kn + locale:kn + multimedia.graphics.gimp.l10n + Gimp translation files for Kannada + + gimp + + + /usr/share/locale/kn + + + + + gimp-i18n-si + locale:si + multimedia.graphics.gimp.l10n + Gimp translation files for Sinhala + + gimp + + + /usr/share/locale/si + + + + + gimp-i18n-kk + locale:kk + multimedia.graphics.gimp.l10n + Gimp translation files for Kazakh + + gimp + + + /usr/share/locale/kk + + + + + gimp-i18n-br + locale:br + multimedia.graphics.gimp.l10n + Gimp translation files for Breton + + gimp + + + /usr/share/locale/br + + + + gimp-i18n-te + locale:te + multimedia.graphics.gimp.l10n + Gimp translation files for Telugu + + gimp + + + /usr/share/locale/te + + + + gimp-i18n-csb + locale:csb + multimedia.graphics.gimp.l10n + Gimp translation files for Kashubian + + gimp + + + /usr/share/locale/csb + + + + gimp-i18n-gd + locale:gd + multimedia.graphics.gimp.l10n + Gimp translation files for Scottish Gaelic + + gimp + + + /usr/share/locale/gd + + + + + + 2015-02-21 + 2.8.14 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-19 + 2.8.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-27 + 2.8.10 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-13 + 2.8.10 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-17 + 2.8.6 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-23 + 2.8.6 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-16 + 2.8.4 + Updated + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-25 + 2.8.2 + First release + Fatih Turgel + admins@pisilinux.org + + + diff --git a/multimedia/graphics/gimp/gimp/translations.xml b/multimedia/graphics/gimp/gimp/translations.xml new file mode 100644 index 0000000000..53e41f6046 --- /dev/null +++ b/multimedia/graphics/gimp/gimp/translations.xml @@ -0,0 +1,317 @@ + + + + gimp + Bir resim işleme programı + Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı + Programme de Manipulation d'Image GNU. + + + + gimp-devel + GIMP için geliştirme belgeleri ve başlık dosyaları + Documents et entêtes de développement pour GIMP. + + + + gimp-i18n-tr + Türkçe için GIMP yerelleştirme dosyaları + + + gimp-i18n-ast + Asturya dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-my + Burmese dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-nds + Aşağı Saxon dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-el + Yunanca için GIMP yerelleştirme dosyaları + + + gimp-i18n-gu + Gujarati dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-be + Belarusça için GIMP yerelleştirme dosyaları + + + gimp-i18n-vi + Viyetnamca için GIMP yerelleştirme dosyaları + + + gimp-i18n-ca + Katalanca için GIMP yerelleştirme dosyaları + + + gimp-i18n-eo + Esperanto için GIMP yerelleştirme dosyaları + + + gimp-i18n-cs + Çekçe için GIMP yerelleştirme dosyaları + + + gimp-i18n-ca_valencia + Valensiya Katalancası için GIMP yerelleştirme dosyaları + + + gimp-i18n-ar + Arapça için GIMP yerelleştirme dosyaları + + + gimp-i18n-km + Khmer dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-ga + Gaelik İrlandacası için GIMP yerelleştirme dosyaları + + + gimp-i18n-fi + Fince için GIMP yerelleştirme dosyaları + + + gimp-i18n-eu + Baskça için GIMP yerelleştirme dosyaları + + + gimp-i18n-et + Estonyaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-xh + Xhosa dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-gl + Galiçya dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-id + Endonezyaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-es + İspanyolca için GIMP yerelleştirme dosyaları + + + gimp-i18n-ru + Rusça için GIMP yerelleştirme dosyaları + + + gimp-i18n-rw + Kinyarwanda dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-nl + Hollandaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-nn + Norveç Nynorsk dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-nb + Norveç Bookmal dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-ne + Nepali dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-lt + Litvanyaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-pa + Punjabi dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-ro + Rumence için GIMP yerelleştirme dosyaları + + + gimp-i18n-en_GB + İngiliz İngilizcesi için GIMP yerelleştirme dosyaları + + + gimp-i18n-yi + Yi dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-en_CA + Katalanca için GIMP yerelleştirme dosyaları + + + gimp-i18n-fr + Fransızca için GIMP yerelleştirme dosyaları + + + gimp-i18n-bg + Bulgarca için GIMP yerelleştirme dosyaları + + + gimp-i18n-ms + Malay dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-pt_BR + Brezilya Portekizcesi için GIMP yerelleştirme dosyaları + + + gimp-i18n-hr + Hırvatça için GIMP yerelleştirme dosyaları + + + gimp-i18n-zh_TW + Geleneksel Çince için GIMP yerelleştirme dosyaları + + + gimp-i18n-ko + Korece için GIMP yerelleştirme dosyaları + + + gimp-i18n-it + İtalyanca için GIMP yerelleştirme dosyaları + + + gimp-i18n-fa + Farsça için GIMP yerelleştirme dosyaları + + + gimp-i18n-dz + Dzongkha dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-sr_Latn + Latin sırpça için GIMP yerelleştirme dosyaları + + + gimp-i18n-da + Danimarkaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-ja + Japonca için GIMP yerelleştirme dosyaları + + + gimp-i18n-he + İbranice için GIMP yerelleştirme dosyaları + + + gimp-i18n-pt + Portekizce için GIMP yerelleştirme dosyaları + + + gimp-i18n-zh_CN + Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları + + + gimp-i18n-sr + Sırpça için GIMP yerelleştirme dosyaları + + + gimp-i18n-oc + Occitan dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-sv + İsveççe için GIMP yerelleştirme dosyaları + + + gimp-i18n-mk + Makedonyaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-sk + Slovakça için GIMP yerelleştirme dosyaları + + + gimp-i18n-de + Almanca için GIMP yerelleştirme dosyaları + + + gimp-i18n-pl + Lehçe için GIMP yerelleştirme dosyaları + + + gimp-i18n-uk + Ukraynaca için GIMP yerelleştirme dosyaları + + + gimp-i18n-sl + Slovence için GIMP yerelleştirme dosyaları + + + gimp-i18n-hu + Macarca için GIMP yerelleştirme dosyaları + + + gimp-i18n-tt + Tatarca için GIMP yerelleştirme dosyaları + + + gimp-i18n-az + Azerice için GIMP yerelleştirme dosyaları + + + gimp-i18n-am + Amharic dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-is + İzlanda dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-lv + Latvia dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-th + Thai dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-ka + Gürcüce için GIMP yerelleştirme dosyaları + + + gimp-i18n-hi + Hindi dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-zh_HK + Hong Kong Çincesi için GIMP yerelleştirme dosyaları + + + gimp-i18n-ml + Malayalam dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-ta + Tamil dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-kn + Kannada dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-si + Sinhala dili için GIMP yerelleştirme dosyaları + + + gimp-i18n-kk + Kazakça için GIMP yerelleştirme dosyaları + + + gimp-i18n-br + Breton dili için GIMP yerelleştirme dosyaları + + + From 499ee3aa5b3df629abd86b3dbeb15220cba06ca1 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:07:23 +0300 Subject: [PATCH 18/22] liblqr:moved into main repo for pisi 2.0 --- multimedia/misc/liblqr/actions.py | 24 ++++++++++ multimedia/misc/liblqr/pspec.xml | 62 +++++++++++++++++++++++++ multimedia/misc/liblqr/translations.xml | 13 ++++++ 3 files changed, 99 insertions(+) create mode 100644 multimedia/misc/liblqr/actions.py create mode 100644 multimedia/misc/liblqr/pspec.xml create mode 100644 multimedia/misc/liblqr/translations.xml diff --git a/multimedia/misc/liblqr/actions.py b/multimedia/misc/liblqr/actions.py new file mode 100644 index 0000000000..3dbc0069e1 --- /dev/null +++ b/multimedia/misc/liblqr/actions.py @@ -0,0 +1,24 @@ +#!/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 pisitools +from pisi.actionsapi import get + +WorkDir = "%s-1-%s" % (get.srcNAME(), get.srcVERSION()) + +def setup(): + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.install() + + pisitools.removeDir("/usr/share/man") + + pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "README", "NEWS") diff --git a/multimedia/misc/liblqr/pspec.xml b/multimedia/misc/liblqr/pspec.xml new file mode 100644 index 0000000000..750e05d35d --- /dev/null +++ b/multimedia/misc/liblqr/pspec.xml @@ -0,0 +1,62 @@ + + + + + liblqr + http://liblqr.wikidot.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + An easy to use C/C++ seam carving library + liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. + http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 + + + + liblqr + + /usr/lib + /usr/share/doc + + + + + liblqr-devel + Development files for liblqr + + liblqr + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2014-05-24 + 0.4.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 0.4.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/multimedia/misc/liblqr/translations.xml b/multimedia/misc/liblqr/translations.xml new file mode 100644 index 0000000000..c3002a4c1b --- /dev/null +++ b/multimedia/misc/liblqr/translations.xml @@ -0,0 +1,13 @@ + + + + liblqr + Görüntü boyutlandırma kütüphanesi + liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. + + + + liblqr-devel + liblqr için geliştirme dosyaları + + From 18d9611c8c6a643f95bd666ae28c05e8a77bc8bb Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:08:04 +0300 Subject: [PATCH 19/22] openexr:moved into main repo for pisi 2.0 --- multimedia/misc/openexr/actions.py | 28 ++++++++ multimedia/misc/openexr/pspec.xml | 90 ++++++++++++++++++++++++ multimedia/misc/openexr/translations.xml | 24 +++++++ 3 files changed, 142 insertions(+) create mode 100644 multimedia/misc/openexr/actions.py create mode 100644 multimedia/misc/openexr/pspec.xml create mode 100644 multimedia/misc/openexr/translations.xml diff --git a/multimedia/misc/openexr/actions.py b/multimedia/misc/openexr/actions.py new file mode 100644 index 0000000000..80932f975f --- /dev/null +++ b/multimedia/misc/openexr/actions.py @@ -0,0 +1,28 @@ +#!/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(): + pisitools.flags.add("-pthread -I/usr/include/OpenEXR -I/usr/include/libdrm") + pisitools.ldflags.add("-lImath -lHalf -lIex -lIexMath -lIlmThread -lpthread") + shelltools.system("./bootstrap") + autotools.configure("--enable-shared \ + --disable-static") + +def build(): + autotools.make() + +def install(): + # documents and examples go to "/usr/share/OpenEXR" without these parameters + docdir = "/usr/share/doc/%s" % get.srcNAME() + examplesdir = "%s/examples" % docdir + autotools.rawInstall("DESTDIR=%s docdir=%s examplesdir=%s" % (get.installDIR(), docdir, examplesdir)) + + pisitools.dodoc("AUTHORS", "ChangeLog","NEWS", "README","LICENSE") diff --git a/multimedia/misc/openexr/pspec.xml b/multimedia/misc/openexr/pspec.xml new file mode 100644 index 0000000000..c6fbfad9cb --- /dev/null +++ b/multimedia/misc/openexr/pspec.xml @@ -0,0 +1,90 @@ + + + + + openexr + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + library + A high dynamic-range (HDR) image file format library + OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. + http://download.savannah.nongnu.org/releases/openexr/openexr-2.1.0.tar.gz + + ilmbase-devel + + + + + openexr + + ilmbase + openexr-libs + + + /usr/bin + + + + + openexr-libs + OpenEXR runtime libraries + + ilmbase + + + /usr/lib/lib* + /usr/share/doc + + + + + openexr-docs + OpenEXR example files + + /usr/share/doc/openexr/examples + + + + + openexr-devel + Development files for openexr + + openexr + ilmbase-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + + 2014-05-25 + 2.1.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 1.7.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/multimedia/misc/openexr/translations.xml b/multimedia/misc/openexr/translations.xml new file mode 100644 index 0000000000..5c87c8c370 --- /dev/null +++ b/multimedia/misc/openexr/translations.xml @@ -0,0 +1,24 @@ + + + + openexr + OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması + OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. + OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. + + + + openexr-devel + OpenEXR için geliştirme dosyaları + + + + openexr-libs + OpenEXR çalışma zamanı kitaplıkları + + + + openexr-docs + OpenEXR örnek dosyalar + + From d986ed269491e31390635d90961f4b9e6f609d9a Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:08:37 +0300 Subject: [PATCH 20/22] science:moved into main repo for pisi 2.0 --- science/misc/ilmbase/actions.py | 25 ++++ .../files/ilmbase-1.0.3-pkgconfig.patch | 8 ++ .../files/ilmbase-2.0.1-no_undefined.patch | 24 ++++ .../misc/ilmbase/files/ilmbase-IexMath.patch | 12 ++ science/misc/ilmbase/pspec.xml | 68 ++++++++++ science/misc/ilmbase/translations.xml | 18 +++ science/robotics/component.xml | 3 + science/robotics/opencv/actions.py | 66 ++++++++++ science/robotics/opencv/pspec.xml | 120 ++++++++++++++++++ science/robotics/opencv/translations.xml | 16 +++ 10 files changed, 360 insertions(+) create mode 100644 science/misc/ilmbase/actions.py create mode 100644 science/misc/ilmbase/files/ilmbase-1.0.3-pkgconfig.patch create mode 100644 science/misc/ilmbase/files/ilmbase-2.0.1-no_undefined.patch create mode 100644 science/misc/ilmbase/files/ilmbase-IexMath.patch create mode 100644 science/misc/ilmbase/pspec.xml create mode 100644 science/misc/ilmbase/translations.xml create mode 100644 science/robotics/component.xml create mode 100644 science/robotics/opencv/actions.py create mode 100644 science/robotics/opencv/pspec.xml create mode 100644 science/robotics/opencv/translations.xml diff --git a/science/misc/ilmbase/actions.py b/science/misc/ilmbase/actions.py new file mode 100644 index 0000000000..f2f348b5bd --- /dev/null +++ b/science/misc/ilmbase/actions.py @@ -0,0 +1,25 @@ +#!/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("./bootstrap") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def check(): + autotools.make("check") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "LICENSE", "README") diff --git a/science/misc/ilmbase/files/ilmbase-1.0.3-pkgconfig.patch b/science/misc/ilmbase/files/ilmbase-1.0.3-pkgconfig.patch new file mode 100644 index 0000000000..bbc704fc4f --- /dev/null +++ b/science/misc/ilmbase/files/ilmbase-1.0.3-pkgconfig.patch @@ -0,0 +1,8 @@ +diff -up ilmbase-1.0.3/IlmBase.pc.in.pkgconfig ilmbase-1.0.3/IlmBase.pc.in +--- ilmbase-1.0.3/IlmBase.pc.in.pkgconfig 2012-07-17 18:27:25.000000000 -0500 ++++ ilmbase-1.0.3/IlmBase.pc.in 2012-09-08 11:11:15.913468312 -0500 +@@ -9,3 +9,4 @@ Description: Base math and exception lib + Version: @ILMBASE_VERSION@ + Libs: -L${libdir} -lImath -lHalf -lIex -lIexMath -lIlmThread @PTHREAD_LIBS@ + Cflags: @PTHREAD_CFLAGS@ -I${OpenEXR_includedir} ++Requires.private: gl glu diff --git a/science/misc/ilmbase/files/ilmbase-2.0.1-no_undefined.patch b/science/misc/ilmbase/files/ilmbase-2.0.1-no_undefined.patch new file mode 100644 index 0000000000..87a35c9d75 --- /dev/null +++ b/science/misc/ilmbase/files/ilmbase-2.0.1-no_undefined.patch @@ -0,0 +1,24 @@ +diff -up ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined ilmbase-2.0.1/IlmThread/Makefile.am +--- ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined 2013-06-18 14:51:38.000000000 -0500 ++++ ilmbase-2.0.1/IlmThread/Makefile.am 2013-08-28 21:04:25.793391766 -0500 +@@ -14,7 +14,7 @@ libIlmThread_la_LDFLAGS = -version-info + if LIB_SUFFIX_EXISTS + libIlmThread_la_LDFLAGS += -release @LIB_SUFFIX@ + endif +-libIlmThread_la_LIBADD = ../Iex/libIex.la ++libIlmThread_la_LIBADD = ../Iex/libIex.la $(PTHREAD_LIBS) + + libIlmThreadincludedir = $(includedir)/OpenEXR + +diff -up ilmbase-2.0.1/IlmThread/Makefile.in.no_undefined ilmbase-2.0.1/IlmThread/Makefile.in +--- ilmbase-2.0.1/IlmThread/Makefile.in.no_undefined 2013-06-18 14:55:24.000000000 -0500 ++++ ilmbase-2.0.1/IlmThread/Makefile.in 2013-08-28 21:04:55.395049371 -0500 +@@ -253,7 +253,7 @@ libIlmThread_la_SOURCES = IlmThreadPool. + + libIlmThread_la_LDFLAGS = -version-info @LIBTOOL_VERSION@ \ + -no-undefined $(am__append_1) +-libIlmThread_la_LIBADD = ../Iex/libIex.la ++libIlmThread_la_LIBADD = ../Iex/libIex.la $(PTHREAD_LIBS) + libIlmThreadincludedir = $(includedir)/OpenEXR + libIlmThreadinclude_HEADERS = IlmThreadPool.h IlmThread.h \ + IlmThreadSemaphore.h IlmThreadMutex.h \ diff --git a/science/misc/ilmbase/files/ilmbase-IexMath.patch b/science/misc/ilmbase/files/ilmbase-IexMath.patch new file mode 100644 index 0000000000..5460349667 --- /dev/null +++ b/science/misc/ilmbase/files/ilmbase-IexMath.patch @@ -0,0 +1,12 @@ +--- IexMath/IexMathFpu.cpp.orig 2012-07-26 20:51:55.000000000 +0200 ++++ IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.000000000 +0200 +@@ -27,8 +27,7 @@ + #endif + + +-#ifdef HAVE_UCONTEXT_H +- ++#if defined(HAVE_UCONTEXT_H) && (defined(x86_64) || defined(i386_)) + + #include + #include diff --git a/science/misc/ilmbase/pspec.xml b/science/misc/ilmbase/pspec.xml new file mode 100644 index 0000000000..cda3640dde --- /dev/null +++ b/science/misc/ilmbase/pspec.xml @@ -0,0 +1,68 @@ + + + + + ilmbase + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR + IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). + http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz + + ilmbase-2.0.1-no_undefined.patch + ilmbase-IexMath.patch + ilmbase-1.0.3-pkgconfig.patch + + + + + ilmbase + + /usr/lib + /usr/share/doc + + + + + ilmbase-devel + Development files for ilmbase + + ilmbase + mesa-glu-devel + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2014-05-25 + 2.0.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.0.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-13 + 1.0.2 + First release + Gökcen Eraslan + admins@pisilinux.org + + + diff --git a/science/misc/ilmbase/translations.xml b/science/misc/ilmbase/translations.xml new file mode 100644 index 0000000000..dbaf17257a --- /dev/null +++ b/science/misc/ilmbase/translations.xml @@ -0,0 +1,18 @@ + + + + ilmbase + ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar + IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. + + + + ilmbase-devel + ilmbase için geliştirme dosyaları + + + + ilmbase-devel + ilmbase için geliştirme dosyaları + + diff --git a/science/robotics/component.xml b/science/robotics/component.xml new file mode 100644 index 0000000000..8f17ce2ba6 --- /dev/null +++ b/science/robotics/component.xml @@ -0,0 +1,3 @@ + + science.robotics + diff --git a/science/robotics/opencv/actions.py b/science/robotics/opencv/actions.py new file mode 100644 index 0000000000..18ceff541f --- /dev/null +++ b/science/robotics/opencv/actions.py @@ -0,0 +1,66 @@ +#!/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 cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +shelltools.export("PYTHONDONTWRITEBYTECODE", "") + +def setup(): + + #temporary workaround for error: "'UINT64_C' was not declared in this scope" + shelltools.export("CXXFLAGS", "%s -D__STDC_CONSTANT_MACROS" % get.CXXFLAGS()) + + cmaketools.configure("-D CMAKE_BUILD_TYPE=Release \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_SKIP_RPATH=ON \ + DESTDIR=%s \ + -DBUILD_EXAMPLES=1 \ + -DBUILD_SWIG_PYTHON_SUPPORT=1 \ + -DINSTALL_C_EXAMPLES=1 \ + -DINSTALL_PYTHON_EXAMPLES=1 \ + -DINSTALL_OCTAVE_EXAMPLES=1 \ + -DWITH_FFMPEG=0 \ + -DWITH_UNICAP=0 \ + -DENABLE_OPENMP=0 \ + -DNEW_PYTHIN_SUPPORT=1 \ + -DOCTAVE_SUPPORT=0 \ + -DUSE_MMX=1 \ + -DUSE_SSE2=1 \ + -DUSE_SSE3=0 \ + -DUSE_SSE=1 \ + -DWITH_TBB=ON \ + -DWITH_EIGEN=ON \ + -DWITH_1394=1 \ + -DWITH_GSTREAMER=1 \ + -DWITH_GTK=1 \ + -DWITH_JASPER=1 \ + -DWITH_JPEG=1 \ + -DWITH_PNG=1 \ + -DWITH_TIFF=1 \ + -DWITH_V4L=1 \ + -DWITH_XINE=1 \ + -DCMAKE_SKIP_RPATH=1" % get.installDIR()) + # -DUSE_O3=OFF + # -DUSE_OMIT_FRAME_POINTER=OFF + + +def build(): + cmaketools.make("VERBOSE=1") + +def install(): + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + # Move other docs and samples under standart doc dir + #doc_dir = "usr/share/doc/" + get.srcNAME() + + #pisitools.domove("usr/share/opencv/doc", doc_dir) + #pisitools.domove("usr/share/opencv/samples", doc_dir) + + pisitools.dodoc("README.md", "LICENSE", ) + diff --git a/science/robotics/opencv/pspec.xml b/science/robotics/opencv/pspec.xml new file mode 100644 index 0000000000..14e06cfa5a --- /dev/null +++ b/science/robotics/opencv/pspec.xml @@ -0,0 +1,120 @@ + + + + + opencv + http://opencv.willowgarage.com/wiki + + PisiLinux Community + admins@pisilinux.org + + BSD + library + Computer vision library + opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics. + https://github.com/Itseez/opencv/archive/2.4.9.tar.gz + + eigen + gtk2-devel + tiff-devel + libv4l-devel + openexr-libs + jasper-devel + lapack-devel + ilmbase-devel + openexr-devel + lapack-devel + xine-lib-devel + xine-lib-devel + libdc1394-devel + gstreamer-devel + intel-tbb-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + + + + opencv + + gtk2 + tiff + jasper + libv4l + ilmbase + openexr + xine-lib + libdc1394 + intel-tbb + gstreamer + openexr-libs + gst-plugins-base + libjpeg-turbo + + + /usr/lib + /usr/bin + /usr/share/OpenCV + /usr/share/opencv + + + + + opencv-docs + Computer vision library documents and examples + + /usr/share/doc/opencv + /usr/share/doc/opencv/samples + + + + + opencv-devel + Development files for opencv + + opencv + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2014-05-15 + 2.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 2.4.7 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-08-20 + 2.4.6.1 + ignore xine-lib + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-13 + 2.4.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-08 + 2.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + diff --git a/science/robotics/opencv/translations.xml b/science/robotics/opencv/translations.xml new file mode 100644 index 0000000000..cac2bf2ba9 --- /dev/null +++ b/science/robotics/opencv/translations.xml @@ -0,0 +1,16 @@ + + + + opencv + Bilgisayarla görme kütüphanesi + Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym + opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. + OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. + + + + opencv-devel + opencv için geliştirme dosyaları + Pliki naglowkowe do opencv + + From 554af71490a23e1852e59de44dd2b680aeda943c Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 03:09:16 +0300 Subject: [PATCH 21/22] moved into main repo for pisi 2.0 --- system/base/component.xml | 3 + system/base/udev/actions.py | 157 +++++++++++++++ system/base/udev/comar/package.py | 29 +++ system/base/udev/files/tmpfiles.conf | 1 + system/base/udev/pspec.xml | 284 +++++++++++++++++++++++++++ system/base/udev/translations.xml | 35 ++++ 6 files changed, 509 insertions(+) create mode 100644 system/base/component.xml create mode 100644 system/base/udev/actions.py create mode 100644 system/base/udev/comar/package.py create mode 100644 system/base/udev/files/tmpfiles.conf create mode 100644 system/base/udev/pspec.xml create mode 100644 system/base/udev/translations.xml diff --git a/system/base/component.xml b/system/base/component.xml new file mode 100644 index 0000000000..f190047625 --- /dev/null +++ b/system/base/component.xml @@ -0,0 +1,3 @@ + + system.base + diff --git a/system/base/udev/actions.py b/system/base/udev/actions.py new file mode 100644 index 0000000000..e188082fdc --- /dev/null +++ b/system/base/udev/actions.py @@ -0,0 +1,157 @@ +#!/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 get +from pisi.actionsapi import libtools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +suffix = "32" if get.buildTYPE() == "emul32" else "" + +def setup(): + pisitools.flags.add("-fno-lto") + #shelltools.echo("docs/gtk-doc.make", "EXTRA_DIST=") + autotools.autoreconf("-fi") + libtools.libtoolize("--force") + + options = " ac_cv_header_sys_capability_h=yes \ + --bindir=/sbin%s \ + --sbindir=/sbin%s \ + --docdir=/usr/share/doc/udev \ + --libdir=/usr/lib%s \ + --libexecdir=/lib%s/udev \ + --with-firmware-path=/lib%s/firmware/updates:/lib%s/firmware \ + --with-html-dir=/usr/share/doc/udev/html \ + --with-rootlibdir=/lib%s \ + --with-rootprefix= \ + --without-python \ + --disable-xz \ + --disable-nls \ + --disable-pam \ + --disable-dbus \ + --disable-audit \ + --disable-gcrypt \ + --disable-gnutls \ + --disable-logind \ + --disable-polkit \ + --disable-seccomp \ + --disable-selinux \ + --disable-qrencode \ + --disable-readahead \ + --disable-microhttpd \ + --disable-myhostname \ + --disable-quotacheck \ + --disable-python-devel \ + --disable-libcryptsetup \ + --enable-gudev \ + --enable-split-usr \ + " % ((suffix, )*7) + + options += "\ + --disable-acl \ + --disable-kmod \ + --disable-static \ + --disable-manpages \ + --disable-gtk-doc \ + --disable-introspection \ + " if get.buildTYPE() == "emul32" else \ + "\ + --enable-acl \ + --enable-kmod \ + --enable-static \ + --enable-introspection \ + " + + shelltools.system("sed -i -e '/--enable-static is not supported by systemd/s:as_fn_error:echo:' configure") + autotools.configure(options) + +def build(): + shelltools.echo("Makefile.extra", "BUILT_SOURCES: $(BUILT_SOURCES)") + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + autotools.make("-f Makefile -f Makefile.extra") + + targets = " \ + libudev.la \ + libgudev-1.0.la \ + systemd-udevd \ + udevadm \ + ata_id \ + cdrom_id \ + collect \ + scsi_id \ + v4l_id \ + accelerometer \ + mtd_probe \ + " + + autotools.make(targets) + + autotools.make("-C docs/libudev") + autotools.make("-C docs/gudev") + +#~ def check(): + #~ autotools.make("check") +#~ + +def install(): + targets = " install-libLTLIBRARIES \ + install-includeHEADERS \ + install-libgudev_includeHEADERS \ + install-rootbinPROGRAMS \ + install-rootlibexecPROGRAMS \ + install-udevlibexecPROGRAMS \ + install-dist_udevconfDATA \ + install-dist_udevrulesDATA \ + install-girDATA \ + install-pkgconfiglibDATA \ + install-sharepkgconfigDATA \ + install-typelibsDATA \ + install-dist_docDATA \ + libudev-install-hook \ + install-directories-hook \ + install-dist_bashcompletionDATA \ + install-dist_networkDATA \ + rootlibexec_PROGRAMS='systemd-udevd' \ + rootbin_PROGRAMS='udevadm' \ + lib_LTLIBRARIES='libudev.la \ + libgudev-1.0.la' \ + pkgconfiglib_DATA='src/libudev/libudev.pc \ + src/gudev/gudev-1.0.pc' \ + dist_bashcompletion_DATA='shell-completion/bash/udevadm' \ + dist_network_DATA='network/99-default.link' \ + pkginclude_HEADERS='src/libudev/libudev.h' \ + " + + autotools.make("-j1 DESTDIR=%s%s %s" % (get.installDIR(), suffix, targets)) + if get.buildTYPE() == "emul32": + shelltools.move("%s%s/lib%s" % (get.installDIR(), suffix, suffix), "%s/lib%s" % (get.installDIR(), suffix)) + shelltools.move("%s%s/usr/lib%s" % (get.installDIR(), suffix, suffix), "%s/usr/lib%s" % (get.installDIR(), suffix)) + for f in shelltools.ls("%s/usr/lib32/pkgconfig" % get.installDIR()): + pisitools.dosed("%s/usr/lib32/pkgconfig/%s" % (get.installDIR(), f), "emul32", "usr") + #shelltools.unlinkDir("%s%s" % (get.installDIR(), suffix)) + return + # Create needed directories + #for d in ("", "net", "pts", "shm", "hugepages"): + #pisitools.dodir("/lib/udev/devices/%s" % d) + + # Create vol_id and scsi_id symlinks in /sbin probably needed by multipath-tools + pisitools.dosym("/lib/udev/scsi_id", "/sbin/scsi_id") + + # Create /sbin/systemd-udevd -> /sbin/udevd sysmlink, we need it for MUDUR, do not touch this sysmlink. + pisitools.dosym("/sbin/systemd-udevd", "/sbin/udevd") + pisitools.dosym("/lib/systemd/systemd-udevd", "/sbin/systemd-udevd") + # Mudur needs this symlink as well + pisitools.dosym("/bin/udevadm", "/sbin/udevadm") + + # Create /etc/udev/rules.d for backward compatibility + pisitools.dodir("/etc/udev/rules.d") + + pisitools.dodir("/run/udev") + pisitools.dodoc("README", "TODO") + + # Add man files + pisitools.doman("man/systemd.link.5", "man/udev.7", "man/udevadm.8", "man/systemd-udevd.service.8") diff --git a/system/base/udev/comar/package.py b/system/base/udev/comar/package.py new file mode 100644 index 0000000000..e81903334f --- /dev/null +++ b/system/base/udev/comar/package.py @@ -0,0 +1,29 @@ +#!/usr/bin/python + +import os + +def createNode(mode, uid, gid, minor, major, path): + os.system("/bin/mknod --mode=%d %s c %d %d" % (mode, path, minor, major)) + os.system("/bin/chown %s:%s %s" % (uid, gid, path)) + +def postInstall(fromVersion, fromRelease, toVersion, toRelease): + createNode(600, "root", "root", 1, 11, "/lib/udev/devices/kmsg") + createNode(666, "root", "root", 1, 3, "/lib/udev/devices/null") + createNode(666, "root", "root", 1, 5, "/lib/udev/devices/zero") + createNode(600, "root", "root", 10, 130, "/lib/udev/devices/watchdog") + createNode(666, "root", "root", 10, 229, "/lib/udev/devices/fuse") + createNode(600, "root", "tty", 5, 1, "/lib/udev/devices/console") + createNode(666, "root", "tty", 5, 2, "/lib/udev/devices/ptmx") + createNode(666, "root", "tty", 5, 0, "/lib/udev/devices/tty") + createNode(620, "root", "tty", 4, 1, "/lib/udev/devices/tty1") + createNode(600, "root", "root", 10, 200, "/lib/udev/devices/net/tun") + createNode(600, "root", "root", 36, 0, "/lib/udev/devices/route") + createNode(600, "root", "root", 10, 200, "/lib/udev/devices/skip") + createNode(660, "root", "dialout", 108, 0, "/lib/udev/devices/ppp") + + if os.path.exists("/lib/udev/devices/rtc"): + os.unlink("/lib/udev/devices/rtc") + + # Migrate UDEV database + if fromVersion and int(fromVersion) < 165: + os.system("/sbin/udevadm info --convert-db &> /dev/null") diff --git a/system/base/udev/files/tmpfiles.conf b/system/base/udev/files/tmpfiles.conf new file mode 100644 index 0000000000..9a7ad93d58 --- /dev/null +++ b/system/base/udev/files/tmpfiles.conf @@ -0,0 +1 @@ +D /run/udev 0755 root root diff --git a/system/base/udev/pspec.xml b/system/base/udev/pspec.xml new file mode 100644 index 0000000000..439be79e58 --- /dev/null +++ b/system/base/udev/pspec.xml @@ -0,0 +1,284 @@ + + + + + udev + http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + Linux dynamic and persistent device naming support + udev allows Linux users to have a dynamic /dev directory and it provides the ability to have persistent device names. + http://www.freedesktop.org/software/systemd/systemd-214.tar.xz + + glib2 + gperf + acl-devel + libkmod-devel + libblkid-devel + + + + + udev + + libudev + acl + libkmod + libblkid + util-linux + + + /bin + /sbin + /usr/bin + /usr/sbin + /lib/udev + /lib + /usr/lib + /etc + /usr/lib/tmpfiles.d/udev.conf + /run/udev + /lib/systemd + /etc/udev/rules.d + /lib/udev/rules.d + /usr/share/dbus-1/services + /usr/share/bash-completion/completions + /usr/share/doc + /usr/share/man + + + tmpfiles.conf + + + + System.Package + + + + + udev-devel + system.devel + Development files for udev + + udev + + + /usr/include/systemd/sd-daemon.h + /usr/lib32/pkgconfig/libsystemd-daemon.pc + /usr/lib/pkgconfig/libsystemd-daemon.pc + /usr/share/pkgconfig/udev.pc + + + + + libudev + Dynamic library to access udev device information + + udev + + + /usr/lib/libudev* + /lib/libudev* + + + + + libudev-devel + system.devel + Development files for libudev + + udev + libudev + + + /usr/include/libudev.h + /usr/lib/pkgconfig/libudev.pc + /usr/lib32/pkgconfig/libudev.pc + /usr/share/gtk-doc/html/libudev + + + + + libgudev1 + Libraries for adding libudev support to applications that use glib + + glib2 + libudev + > + + /usr/lib/libgudev* + + + + + libgudev1-devel + system.devel + Development files for libgudev1 + + libudev-devel + libgudev1 + + + /usr/include/gudev-1.0 + /usr/lib/pkgconfig/gudev-1.0* + /usr/lib32/pkgconfig/gudev-1.0* + /usr/share/gir-1.0/GUdev-1.0.gir + /usr/share/gtk-doc/html/gudev + + + + + libudev-32bit + emul32 + 32-bit shared libraries for libudev + emul32 + + libkmod-32bit + libblkid-32bit + + + libudev + + + /usr/lib32/libudev* + /lib32/libudev* + + + + + libgudev1-32bit + emul32 + 32-bit shared libraries for libgudev1 + emul32 + + glib2-32bit + + + libgudev1 + libudev-32bit + glib2-32bit + + + /usr/lib32/libgudev* + + + + + + 2014-07-01 + 214 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 212 + Add upstream patches. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-28 + 212 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-12 + 211 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 210 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-26 + 210 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-20 + 209 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-11 + 208 + Add tmpfiles.conf, git updates. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-30 + 208 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-10 + 206 + Add /run/udev directory. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-13 + 206 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-28 + 204 + Fix pc files for emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-13 + 204 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-30 + 200 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-24 + 197 + Version bump, add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 194 + First release + Erdem Artan + admins@pisilinux.org + + + diff --git a/system/base/udev/translations.xml b/system/base/udev/translations.xml new file mode 100644 index 0000000000..5535e5820b --- /dev/null +++ b/system/base/udev/translations.xml @@ -0,0 +1,35 @@ + + + + udev + Linux dinamik ve sürekli aygıt isimlendirme desteği (kernel dışındaki devfs) + udev linux kullanıcılarının dinamik /dev dizinine sahip olmalarına olanek verir ve tutarlı cihaz isimleri almasını sağlar. + udev permet aux utilisateurs Linux d'avoir un répertoire /dev dynamique et donne la possibilité d'avoir des noms de périphériques persistants. + udev ermöglicht Linux Benutzern ein dynamisches /dev Verzeichnis und beständige Gerätenamen + + + + libudev + udev aygıt bilgilerini sunan kitaplık + + + + libudev-32bit + udev için 32-bit paylaşımlı kitaplıklar + + + + libudev-devel + libudev için geliştirme dosyaları + + + + libgudev1 + glib kullanan uygulamalara libudev desteği eklemek için kullanılan kitaplık + + + + libgudev1-devel + libgudev1 için geliştirme dosyaları + + From c65910901bd2b9fadddccc00f4351b8b0e73e302 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Sun, 5 Jul 2015 07:59:32 +0300 Subject: [PATCH 22/22] atk and gdk-pixbuf removed --- desktop/toolkit/gtk/atk/actions.py | 26 --- desktop/toolkit/gtk/atk/pspec.xml | 121 ------------ desktop/toolkit/gtk/atk/translations.xml | 19 -- desktop/toolkit/gtk/gdk-pixbuf/actions.py | 43 ----- .../gtk/gdk-pixbuf/comar/pakhandler-32.py | 23 --- .../gtk/gdk-pixbuf/comar/pakhandler.py | 23 --- desktop/toolkit/gtk/gdk-pixbuf/pspec.xml | 177 ------------------ .../toolkit/gtk/gdk-pixbuf/translations.xml | 23 --- 8 files changed, 455 deletions(-) delete mode 100644 desktop/toolkit/gtk/atk/actions.py delete mode 100644 desktop/toolkit/gtk/atk/pspec.xml delete mode 100644 desktop/toolkit/gtk/atk/translations.xml delete mode 100644 desktop/toolkit/gtk/gdk-pixbuf/actions.py delete mode 100644 desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py delete mode 100644 desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py delete mode 100644 desktop/toolkit/gtk/gdk-pixbuf/pspec.xml delete mode 100644 desktop/toolkit/gtk/gdk-pixbuf/translations.xml diff --git a/desktop/toolkit/gtk/atk/actions.py b/desktop/toolkit/gtk/atk/actions.py deleted file mode 100644 index ec9ba2d284..0000000000 --- a/desktop/toolkit/gtk/atk/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 get -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - pisitools.dosed(".", "^(SUBDIRS =.*)tests(.*)$", "\\1\\2", filePattern="^Makefile.(am|in)", level=0) - autotools.autoreconf("-fiv") - autotools.configure("\ - --disable-static \ - --enable-introspection=%s \ - " % ("no" if get.buildTYPE() == "emul32" else "yes")) - -def build(): - autotools.make() - -def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.removeDir("/usr/share/gtk-doc") - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/desktop/toolkit/gtk/atk/pspec.xml b/desktop/toolkit/gtk/atk/pspec.xml deleted file mode 100644 index b2ea252763..0000000000 --- a/desktop/toolkit/gtk/atk/pspec.xml +++ /dev/null @@ -1,121 +0,0 @@ - - - - - atk - http://developer.gnome.org/atk - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - GTK+ and GNOME Accessibility Toolkit - These libraries provide tools for making software for people with disabilities. - mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz - - gobject-introspection-devel - gnome-common - - - - - atk - - /usr/lib/libatk* - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/doc - - - - - atk-devel - Development files for atk - - atk - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - atk-32bit - emul32 - 32-bit shared libraries for atk - emul32 - - glib2-32bit - - - atk - glib2-32bit - - - /usr/lib32 - - - - - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 2.12.0 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.12.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-21 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-24 - 2.7.91 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-22 - 2.7.2 - First release - PisiLinux Community - admins@pisilinux.org - - - diff --git a/desktop/toolkit/gtk/atk/translations.xml b/desktop/toolkit/gtk/atk/translations.xml deleted file mode 100644 index 1c5014a9a5..0000000000 --- a/desktop/toolkit/gtk/atk/translations.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - atk - GTK+ ve GNOME erişilebilirlik kitaplığı - Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. - Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. - - - - atk-devel - atk için geliştirme dosyaları - - - - atk-32bit - atk için 32-bit paylaşımlı kitaplıklar - - diff --git a/desktop/toolkit/gtk/gdk-pixbuf/actions.py b/desktop/toolkit/gtk/gdk-pixbuf/actions.py deleted file mode 100644 index bc00299dba..0000000000 --- a/desktop/toolkit/gtk/gdk-pixbuf/actions.py +++ /dev/null @@ -1,43 +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 get -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools - -def setup(): - options = "\ - --disable-static \ - --disable-silent-rules \ - --with-libjasper \ - --with-x11 \ - --with-included-loaders=png \ - " - - options += "\ - --bindir=/_emul32/bin \ - --disable-introspection \ - " if get.buildTYPE() == "emul32" else \ - "\ - --enable-introspection \ - " - autotools.configure(options) - - 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()) - if get.buildTYPE() == "emul32": - pisitools.domove("/_emul32/bin/gdk-pixbuf-query-loaders", "/usr/bin", "gdk-pixbuf-query-loaders-32") - pisitools.removeDir("/_emul32") - return - pisitools.dosym("/usr/bin/gdk-pixbuf-query-loaders", "/usr/bin/gdk-pixbuf-query-loaders-64") - pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") diff --git a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py deleted file mode 100644 index 6edaa81706..0000000000 --- a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler-32.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -import piksemel -import os - -def updateData(filepath): - parse = piksemel.parse(filepath) - - for icon in parse.tags("File"): - path = icon.getTagData("Path") - if path.startswith("usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders"): - os.system("/usr/bin/gdk-pixbuf-query-loaders-32 --update-cache") - return - -def setupPackage(metapath, filepath): - updateData(filepath) - -def cleanupPackage(metapath, filepath): - pass - -def postCleanupPackage(metapath, filepath): - updateData(filepath) diff --git a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py b/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py deleted file mode 100644 index 0e2637d6b0..0000000000 --- a/desktop/toolkit/gtk/gdk-pixbuf/comar/pakhandler.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -import piksemel -import os - -def updateData(filepath): - parse = piksemel.parse(filepath) - - for icon in parse.tags("File"): - path = icon.getTagData("Path") - if path.startswith("usr/lib/gdk-pixbuf-2.0/2.10.0/loaders"): - os.system("/usr/bin/gdk-pixbuf-query-loaders --update-cache") - return - -def setupPackage(metapath, filepath): - updateData(filepath) - -def cleanupPackage(metapath, filepath): - pass - -def postCleanupPackage(metapath, filepath): - updateData(filepath) diff --git a/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml b/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml deleted file mode 100644 index 3ae3292f1d..0000000000 --- a/desktop/toolkit/gtk/gdk-pixbuf/pspec.xml +++ /dev/null @@ -1,177 +0,0 @@ - - - - - gdk-pixbuf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - GDK pixbuf library - gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications - mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.3.tar.xz - - gtk-doc - glib2-devel - libX11-devel - tiff-devel - libjpeg-turbo-devel - libpng-devel - jasper-devel - gobject-introspection-devel - - - - - gdk-pixbuf - - tiff - jasper - libjpeg-turbo - > - - /etc - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - System.PackageHandler - - - - - gdk-pixbuf-devel - Development files for gdk-pixbuf - - gdk-pixbuf - libpng-devel - - - /usr/bin/gdk-pixbuf-csource - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/gir-1.0 - - - - - gdk-pixbuf-docs - Reference documents for gdk-pixbuf - - /usr/share/gtk-doc - - - - - gdk-pixbuf-32bit - emul32 - 32-bit shared libraries for gdk-pixbuf - emul32 - - tiff-32bit - libjpeg-turbo-32bit - glib2-32bit - libX11-32bit - libpng-32bit - jasper-32bit - libX11-32bit - - - gdk-pixbuf - tiff-32bit - glib2-32bit - libpng-32bit - libX11-32bit - jasper-32bit - libjpeg-turbo-32bit - - - /usr/bin/gdk-pixbuf-query-loaders-32 - /usr/lib32 - - - System.PackageHandler - - - - - - 2015-04-27 - 2.31.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 2.30.7 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.30.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.30.0 - Add missing method and fix pakhandler.py - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-05 - 2.28.2 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 2.28.2 - Fix build emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-11 - 2.28.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.28.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-24 - 2.27.1 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-11-25 - 2.26.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - diff --git a/desktop/toolkit/gtk/gdk-pixbuf/translations.xml b/desktop/toolkit/gtk/gdk-pixbuf/translations.xml deleted file mode 100644 index b2815ba5ad..0000000000 --- a/desktop/toolkit/gtk/gdk-pixbuf/translations.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - gdk-pixbuf - GDK pixbuf kitaplığı - gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. - - - - gdk-pixbuf-devel - gdk-pixbuf için geliştirme dosyaları - - - - gdk-pixbuf-docs - gdk-pixbuf için başvuru belgeleri - - - - gdk-pixbuf-32bit - gdk-pixbuf için 32-bit paylaşımlı kitaplıklar - -