1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
|
# Turkish translation for gimp-help.
# Copyright (C) 2019-2025 gimp-help's COPYRIGHT HOLDER
# This file is distributed under the same license as the gimp-help package.
#
# Sabri Ünal <yakushabb@gmail.com>, 2019, 2025.
# Emin Tufan Çetin <etcetin@gmail.com>, 2025.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-help master\n"
"POT-Creation-Date: 2022-02-18 12:55+0100\n"
"PO-Revision-Date: 2023-08-23 00:30+0300\n"
"Last-Translator: Sabri Ünal <yakushabb@gmail.com>\n"
"Language-Team: Türkçe <takim@gnome.org.tr>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.2.2\n"
#: gimp-keys.xml:2(title)
msgid "GIMP Quickreference"
msgstr "GIMP Hızlı Başvuru"
#: gimp-keys.xml:5(title)
msgid "File"
msgstr "Dosya "
#: gimp-keys.xml:8(key)
msgid "<ctrl/>N"
msgstr "<ctrl/>N"
#: gimp-keys.xml:9(action)
msgid "New image"
msgstr "Yeni görüntü"
#: gimp-keys.xml:12(key)
msgid "<ctrl/>O"
msgstr "<ctrl/>O"
#: gimp-keys.xml:13(action)
msgid "Open image"
msgstr "Görüntü aç"
#: gimp-keys.xml:16(key) gimp-keys.xml:125(key)
msgid "<shift/><ctrl/>V"
msgstr "<shift/><ctrl/>V"
#: gimp-keys.xml:17(action)
msgid "Create From Clipboard"
msgstr "Panodan Oluştur"
#: gimp-keys.xml:20(key)
msgid "<ctrl/><alt/>O"
msgstr "<ctrl/><alt/>O"
#: gimp-keys.xml:21(action)
msgid "Open image as layers"
msgstr "Görüntüyü katman olarak aç"
#: gimp-keys.xml:24(key)
msgid "<ctrl/>1"
msgstr "<ctrl/>1"
#: gimp-keys.xml:24(action)
msgid "Open recent image 01"
msgstr "Son kullanılan 1. görüntüyü aç"
#: gimp-keys.xml:27(key)
msgid "<ctrl/>2"
msgstr "<ctrl/>2"
#: gimp-keys.xml:27(action)
msgid "Open recent image 02"
msgstr "Son kullanılan 2. görüntüyü aç"
#: gimp-keys.xml:30(key)
msgid "<ctrl/>3"
msgstr "<ctrl/>3"
#: gimp-keys.xml:30(action)
msgid "Open recent image 03"
msgstr "Son kullanılan 3. görüntüyü aç"
#: gimp-keys.xml:33(key)
msgid "<ctrl/>4"
msgstr "<ctrl/>4"
#: gimp-keys.xml:33(action)
msgid "Open recent image 04"
msgstr "Son kullanılan 4. görüntüyü aç"
#: gimp-keys.xml:36(key)
msgid "<ctrl/>5"
msgstr "<ctrl/>5"
#: gimp-keys.xml:36(action)
msgid "Open recent image 05"
msgstr "Son kullanılan 5. görüntüyü aç"
#: gimp-keys.xml:39(key)
msgid "<ctrl/>6"
msgstr "<ctrl/>6"
#: gimp-keys.xml:39(action)
msgid "Open recent image 06"
msgstr "Son kullanılan 6. görüntüyü aç"
#: gimp-keys.xml:42(key)
msgid "<ctrl/>7"
msgstr "<ctrl/>7"
#: gimp-keys.xml:42(action)
msgid "Open recent image 07"
msgstr "Son kullanılan 7. görüntüyü aç"
#: gimp-keys.xml:45(key)
msgid "<ctrl/>8"
msgstr "<ctrl/>8"
#: gimp-keys.xml:45(action)
msgid "Open recent image 08"
msgstr "Son kullanılan 8. görüntüyü aç"
#: gimp-keys.xml:48(key)
msgid "<ctrl/>9"
msgstr "<ctrl/>9"
#: gimp-keys.xml:48(action)
msgid "Open recent image 09"
msgstr "Son kullanılan 9. görüntüyü aç"
#: gimp-keys.xml:51(key)
msgid "<ctrl/>0"
msgstr "<ctrl/>0"
#: gimp-keys.xml:51(action)
msgid "Open recent image 10"
msgstr "Son kullanılan 10. görüntüyü aç"
#: gimp-keys.xml:54(key)
msgid "<ctrl/>S"
msgstr "<ctrl/>S"
#: gimp-keys.xml:54(action)
msgid "Save the XCF image"
msgstr "XCF görüntüsünü kaydet"
#: gimp-keys.xml:57(key)
msgid "<shift/><ctrl/>S"
msgstr "<shift/><ctrl/>S"
#: gimp-keys.xml:58(action)
msgid "Save as... : Save image with a different name"
msgstr "Farklı Kaydet... : Görüntüyü farklı adla kaydet"
#: gimp-keys.xml:61(key)
msgid "<ctrl/>E"
msgstr "<ctrl/>E"
#: gimp-keys.xml:61(action)
msgid "Export"
msgstr "Dışa Aktar"
#: gimp-keys.xml:64(key)
msgid "<shift/><ctrl/>E"
msgstr "<shift/><ctrl/>E"
#: gimp-keys.xml:65(action)
msgid "Export As...: export image to various file formats"
msgstr "Dışa Farklı Aktar...: görüntüyü çeşitli dosya biçimlerinde dışa aktar"
#: gimp-keys.xml:68(key)
msgid "<ctrl/>P"
msgstr "<ctrl/>P"
#: gimp-keys.xml:68(action)
msgid "Print..."
msgstr "Yazdır..."
#: gimp-keys.xml:71(key)
msgid "<ctrl/><alt/>F"
msgstr "<ctrl/><alt/>F"
#: gimp-keys.xml:72(action)
msgid "Show the image in file manager"
msgstr "Görüntüyü dosya yöneticisinde göster"
#: gimp-keys.xml:75(key) gimp-keys.xml:195(key)
msgid "<ctrl/>W"
msgstr "<ctrl/>W"
#: gimp-keys.xml:75(action)
msgid "Close Window"
msgstr "Pencereyi Kapat"
#: gimp-keys.xml:78(key)
msgid "<shift/><ctrl/>W"
msgstr "<shift/><ctrl/>W"
#: gimp-keys.xml:78(action)
msgid "Close All"
msgstr "Tümünü Kapat"
#: gimp-keys.xml:81(key)
msgid "<ctrl/>Q"
msgstr "<ctrl/>Q"
#: gimp-keys.xml:81(action)
msgid "Quit"
msgstr "Çık"
#: gimp-keys.xml:87(title)
msgid "Edit"
msgstr "Düzenle"
#: gimp-keys.xml:89(title)
msgid "Undo/redo"
msgstr "Geri al/Yinele"
#: gimp-keys.xml:91(key)
msgid "<ctrl/>Z"
msgstr "<ctrl/>Z"
#: gimp-keys.xml:91(action)
msgid "Undo"
msgstr "Geri Al"
#: gimp-keys.xml:94(key)
msgid "<ctrl/>Y"
msgstr "<ctrl/>Y"
#: gimp-keys.xml:94(action)
msgid "Redo"
msgstr "Yinele"
#: gimp-keys.xml:99(title)
msgid "Clipboard"
msgstr "Pano"
#: gimp-keys.xml:101(key)
msgid "<ctrl/>C"
msgstr "<ctrl/>C"
#: gimp-keys.xml:101(action)
msgid "Copy selection"
msgstr "Seçimi kopyala"
#: gimp-keys.xml:103(note)
msgid "This places a copy of the selection to the GIMP clipboard."
msgstr "Bu, seçimin bir kopyasını GIMP panosuna yerleştirir."
#: gimp-keys.xml:107(key)
msgid "<shift/><ctrl/>C"
msgstr "<shift/><ctrl/>C"
#: gimp-keys.xml:107(action)
msgid "Copy visible"
msgstr "Görünür kısmı kopyala"
#: gimp-keys.xml:110(key)
msgid "<ctrl/>X"
msgstr "<ctrl/>X"
#: gimp-keys.xml:110(action)
msgid "Cut selection"
msgstr "Seçimi kes"
#: gimp-keys.xml:112(note)
msgid ""
"This works the same as “Copy” the selection followed by “Clear” the "
"selection."
msgstr ""
"Bu, seçimi “Kopyala” ve ardından seçimi “Temizle” ile aynı şekilde "
"çalışır."
#: gimp-keys.xml:116(key)
msgid "<ctrl/>V"
msgstr "<ctrl/>V"
#: gimp-keys.xml:116(action)
msgid "Paste clipboard"
msgstr "Panoyu yapıştır"
#: gimp-keys.xml:118(note)
msgid "This places the clipboard objects as a floating selection"
msgstr "Bu, pano nesnelerini yüzen seçim olarak yerleştirir"
#: gimp-keys.xml:122(key)
msgid "<ctrl/><alt/>V"
msgstr "<ctrl/><alt/>V"
#: gimp-keys.xml:122(action)
msgid "Paste in place"
msgstr "Konumuna yapıştır"
#: gimp-keys.xml:125(action)
msgid "Paste as new image"
msgstr "Yeni görüntü olarak yapıştır"
#: gimp-keys.xml:130(title)
msgid "Fill"
msgstr "Doldur"
#: gimp-keys.xml:132(action)
msgid "Clear"
msgstr "Temizle"
#: gimp-keys.xml:135(key)
msgid "<ctrl/>,"
msgstr "<ctrl/>,"
#: gimp-keys.xml:135(action)
msgid "Fill with FG Color"
msgstr "ÖP Rengi İle Doldur"
#: gimp-keys.xml:138(key)
msgid "<ctrl/>."
msgstr "<ctrl/>."
#: gimp-keys.xml:138(action)
msgid "Fill with BG Color"
msgstr "AP Rengi İle Doldur"
#: gimp-keys.xml:141(key)
msgid "<ctrl/>;"
msgstr "<ctrl/>;"
#: gimp-keys.xml:141(action)
msgid "Fill with Pattern"
msgstr "Örüntü İle Doldur"
#: gimp-keys.xml:147(title)
msgid "Select"
msgstr "Seçim"
#: gimp-keys.xml:150(key)
msgid "<ctrl/>T"
msgstr "<ctrl/>T"
#: gimp-keys.xml:150(action)
msgid "Toggle selections"
msgstr "Seçimi değiştir"
#: gimp-keys.xml:153(key)
msgid "<ctrl/>A"
msgstr "<ctrl/>A"
#: gimp-keys.xml:153(action)
msgid "Select all"
msgstr "Tümünü seç"
#: gimp-keys.xml:156(key)
msgid "<shift/><ctrl/>A"
msgstr "<shift/><ctrl/>A"
#: gimp-keys.xml:156(action)
msgid "Select none"
msgstr "Hiçbirini seçme"
#: gimp-keys.xml:159(key)
msgid "<ctrl/>I"
msgstr "<ctrl/>I"
#: gimp-keys.xml:159(action)
msgid "Invert selection"
msgstr "Seçimi tersine çevir"
#: gimp-keys.xml:162(key)
msgid "<shift/><ctrl/>L"
msgstr "<shift/><ctrl/>L"
#: gimp-keys.xml:162(action)
msgid "Float selection"
msgstr "Seçimi yüzdür"
#: gimp-keys.xml:165(key)
msgid "<shift/>V"
msgstr "<shift/>V"
#: gimp-keys.xml:165(action)
msgid "Path to selection"
msgstr "Yoldan seçime"
#: gimp-keys.xml:171(title)
msgid "View"
msgstr "Görünüm"
#: gimp-keys.xml:173(title)
msgid "Window"
msgstr "Pencere"
#: gimp-keys.xml:174(note)
msgid ""
"Menus can also be activated by Alt with the letter underscored in the menu "
"name."
msgstr ""
"Menüler, menü adında altı çizili harfle Alt kullanılarak da "
"etkinleştirilebilir."
#: gimp-keys.xml:178(action)
msgid "Main Menu"
msgstr "Ana Menü"
#: gimp-keys.xml:182(action)
msgid "Drop-down Menu"
msgstr "Açılır Menü"
#: gimp-keys.xml:185(action)
msgid "Toggle fullscreen"
msgstr "Tam ekranı aç/kapat"
#: gimp-keys.xml:189(action)
msgid "Toggle the visibility of toolbox and dialogs docks"
msgstr "Araç kutusu ve iletişim pencerelerinin görünürlüğünü değiştir"
#: gimp-keys.xml:192(key)
msgid "<shift/>Q"
msgstr "<shift/>Q"
#: gimp-keys.xml:192(action)
msgid "Toggle quickmask"
msgstr "Hızlı maskeyi değiştir"
#: gimp-keys.xml:195(action)
msgid "Close document window"
msgstr "Belge penceresini kapat"
#: gimp-keys.xml:198(key)
msgid "<shift/>J"
msgstr "<shift/>J"
#: gimp-keys.xml:198(action)
msgid "Center image in window"
msgstr "Görüntüyü pencerede ortala"
#: gimp-keys.xml:201(key)
msgid "<shift/><ctrl/>J"
msgstr "<shift/><ctrl/>J"
#: gimp-keys.xml:201(action)
msgid "Fit image in window"
msgstr "Görüntüyü pencereye uydur"
#: gimp-keys.xml:206(title) gimp-keys.xml:226(action) gimp-keys.xml:463(action)
msgid "Zoom"
msgstr "Yakınlaştırma"
#: gimp-keys.xml:208(key)
msgid "+"
msgstr "+"
#: gimp-keys.xml:208(action)
msgid "Zoom In"
msgstr "Yakınlaştır"
#: gimp-keys.xml:211(key)
msgid "-"
msgstr "-"
#: gimp-keys.xml:211(action)
msgid "Zoom Out"
msgstr "Uzaklaştır"
#: gimp-keys.xml:214(key)
msgid "1"
msgstr "1"
#: gimp-keys.xml:214(action)
msgid "Zoom 1:1"
msgstr "1:1 Yakınlaştır"
#: gimp-keys.xml:217(key)
msgid "`"
msgstr "`"
#: gimp-keys.xml:217(action)
msgid "Revert zoom"
msgstr "Yakınlaştırmayı geri al"
#: gimp-keys.xml:220(key)
msgid "<ctrl/>J"
msgstr "<ctrl/>J"
#: gimp-keys.xml:220(action)
msgid "Shrink wrap"
msgstr "Daralt ve bük"
#: gimp-keys.xml:222(note)
msgid "This fits the window to the image size."
msgstr "Bu, pencereyi görüntü boyutuna sığdırır."
#: gimp-keys.xml:231(title)
msgid "Flip and Rotate (0°)"
msgstr "Çevir ve Döndür (0°)"
#: gimp-keys.xml:233(key)
msgid "!"
msgstr "!"
#: gimp-keys.xml:233(action)
msgid "Reset Flip and Rotate"
msgstr "Çevir ve Döndürü Sıfırla"
#: gimp-keys.xml:238(title)
msgid "Scrolling (panning)"
msgstr "Kaydırma"
#: gimp-keys.xml:240(action) gimp-keys.xml:246(action)
msgid "Scroll canvas"
msgstr "Tuvali kaydır"
#: gimp-keys.xml:242(note)
msgid ""
"Scrolling by keys is accelerated, i.e. it speeds up when you press "
"Shift+arrows."
msgstr ""
"Tuşlarla kaydırma hızlandırılır, yani Shift+ok tuşlarına bastığınızda "
"hızlanır."
#: gimp-keys.xml:249(action)
msgid "Scroll canvas vertically"
msgstr "Tuvali dikey kaydır"
#: gimp-keys.xml:252(action)
msgid "Scroll canvas horizontally"
msgstr "Tuvali yatay kaydır"
#: gimp-keys.xml:257(title)
msgid "Rulers and Guides"
msgstr "Cetveller ve Kılavuzlar"
#: gimp-keys.xml:259(action)
msgid "Drag off a ruler to create guide"
msgstr "Kılavuz oluşturmak için cetveli sürükleyin"
#: gimp-keys.xml:261(note)
msgid ""
"Drag off the horizontal or vertical ruler to create a new guide line. Drag a "
"guide line onto the ruler to delete it."
msgstr ""
"Yeni kılavuz çizgisi oluşturmak için yatay ya da dikey cetveli sürükleyin. "
"Silmek için kılavuz çizgisini cetvelin üzerine sürükleyin."
#: gimp-keys.xml:265(action)
msgid "Drag a sample point out of the rulers"
msgstr "Örnek bir noktayı cetvellerin dışına sürükleyin"
#: gimp-keys.xml:268(key)
msgid "<shift/><ctrl/>R"
msgstr "<shift/><ctrl/>R"
#: gimp-keys.xml:268(action)
msgid "Toggle rulers"
msgstr "Cetvelleri değiştir"
#: gimp-keys.xml:271(key)
msgid "<shift/><ctrl/>T"
msgstr "<shift/><ctrl/>T"
#: gimp-keys.xml:271(action)
msgid "Toggle guides"
msgstr "Kılavuzları değiştir"
#: gimp-keys.xml:279(title)
msgid "Image"
msgstr "Görüntü"
#: gimp-keys.xml:282(key)
msgid "<ctrl/>D"
msgstr "<ctrl/>D"
#: gimp-keys.xml:282(action)
msgid "Duplicate image"
msgstr "Görüntüyü çoğalt"
#: gimp-keys.xml:286(action)
msgid "Image properties"
msgstr "Görüntü özellikleri"
#: gimp-keys.xml:292(title) gimp-keys.xml:507(action)
msgid "Layers"
msgstr "Katmanlar"
#: gimp-keys.xml:295(key)
msgid "<shift/><ctrl/>N"
msgstr "<shift/><ctrl/>N"
#: gimp-keys.xml:295(action)
msgid "New layer"
msgstr "Yeni katman"
#: gimp-keys.xml:298(key)
msgid "<shift/><ctrl/>D"
msgstr "<shift/><ctrl/>D"
#: gimp-keys.xml:298(action)
msgid "Duplicate layer"
msgstr "Katmanı çoğalt"
#: gimp-keys.xml:302(action)
msgid "Select the layer above"
msgstr "Üstteki katmanı seç"
#: gimp-keys.xml:306(action)
msgid "Select the layer below"
msgstr "Alttaki katmanı seç"
#: gimp-keys.xml:309(key)
msgid "<ctrl/>M"
msgstr "<ctrl/>M"
#: gimp-keys.xml:309(action)
msgid "Merge visible layers"
msgstr "Görünen katmanları birleştir"
#: gimp-keys.xml:312(key)
msgid "<ctrl/>H"
msgstr "<ctrl/>H"
#: gimp-keys.xml:312(action)
msgid "Anchor layer"
msgstr "Katmanı çıpala"
#: gimp-keys.xml:318(title) gimp-keys.xml:474(action)
msgid "Toolbox"
msgstr "Araç kutusu"
#: gimp-keys.xml:320(title)
msgid "Tools"
msgstr "Araçlar"
#: gimp-keys.xml:322(key)
msgid "R"
msgstr "R"
#: gimp-keys.xml:323(action)
msgid "Rectangle Select"
msgstr "Dikdörtgen Seçim"
#: gimp-keys.xml:326(key)
msgid "E"
msgstr "E"
#: gimp-keys.xml:327(action)
msgid "Ellipse Select"
msgstr "Elips Seçim"
#: gimp-keys.xml:330(key)
msgid "F"
msgstr "F"
#: gimp-keys.xml:331(action)
msgid "Free Select"
msgstr "Serbest Seçim"
#: gimp-keys.xml:334(key) gimp-keys.xml:462(key)
msgid "Z"
msgstr "Z"
#: gimp-keys.xml:335(action)
msgid "Fuzzy Select"
msgstr "Bulanık Seçim"
#: gimp-keys.xml:338(key)
msgid "<shift/>O"
msgstr "<shift/>O"
#: gimp-keys.xml:339(action)
msgid "Select By Color"
msgstr "Renge Göre Seçim"
#: gimp-keys.xml:342(key)
msgid "I"
msgstr "I"
#: gimp-keys.xml:343(action)
msgid "Scissors Select"
msgstr "Makas Seçimi"
#: gimp-keys.xml:346(key)
msgid "<shift/>B"
msgstr "<shift/>B"
#: gimp-keys.xml:347(action)
msgid "Bucket Fill"
msgstr "Kovadan Dolum"
#: gimp-keys.xml:350(key)
msgid "G"
msgstr "G"
#: gimp-keys.xml:351(action)
msgid "Gradient"
msgstr "Renk Geçişi"
#: gimp-keys.xml:354(key)
msgid "N"
msgstr "N"
#: gimp-keys.xml:355(action)
msgid "Pencil"
msgstr "Kalem"
#: gimp-keys.xml:358(key)
msgid "P"
msgstr "P"
#: gimp-keys.xml:359(action)
msgid "Paintbrush"
msgstr "Boya Fırçası"
#: gimp-keys.xml:362(key)
msgid "<shift/>E"
msgstr "<shift/>E"
#: gimp-keys.xml:363(action)
msgid "Eraser"
msgstr "Silgi"
#: gimp-keys.xml:366(key)
msgid "A"
msgstr "A"
#: gimp-keys.xml:367(action)
msgid "Airbrush"
msgstr "Hava Fırçası"
#: gimp-keys.xml:370(key)
msgid "K"
msgstr "K"
#: gimp-keys.xml:371(action)
msgid "Ink"
msgstr "Mürekkep"
#: gimp-keys.xml:374(key)
msgid "Y"
msgstr "Y"
#: gimp-keys.xml:375(action)
msgid "MyPaint Brush"
msgstr "MyPaint Fırçası"
#: gimp-keys.xml:378(key)
msgid "C"
msgstr "C"
#: gimp-keys.xml:379(action)
msgid "Clone"
msgstr "Kopyala"
#: gimp-keys.xml:382(key)
msgid "H"
msgstr "H"
#: gimp-keys.xml:383(action)
msgid "Heal"
msgstr "İyileştir"
#: gimp-keys.xml:386(key)
msgid "<shift/>U"
msgstr "<shift/>U"
#: gimp-keys.xml:387(action)
msgid "Blur/Sharpen"
msgstr "Bulanıklaştır/Keskinleştir"
#: gimp-keys.xml:390(key)
msgid "S"
msgstr "S"
#: gimp-keys.xml:391(action)
msgid "Smudge"
msgstr "Lekele"
#: gimp-keys.xml:394(key)
msgid "<shift/>D"
msgstr "<shift/>D"
#: gimp-keys.xml:395(action)
msgid "Dodge/Burn"
msgstr "Soldurma/Yakma"
#: gimp-keys.xml:398(key)
msgid "Q"
msgstr "Q"
#: gimp-keys.xml:399(action)
msgid "Alignment"
msgstr "Hizala"
#: gimp-keys.xml:402(key)
msgid "M"
msgstr "M"
#: gimp-keys.xml:403(action)
msgid "Move"
msgstr "Taşı"
#: gimp-keys.xml:406(key)
msgid "<shift/>C"
msgstr "<shift/>C"
#: gimp-keys.xml:407(action)
msgid "Crop"
msgstr "Kırp"
#: gimp-keys.xml:410(key)
msgid "<shift/>R"
msgstr "<shift/>R"
#: gimp-keys.xml:411(action)
msgid "Rotate"
msgstr "Döndür"
#: gimp-keys.xml:414(key)
msgid "<shift/>S"
msgstr "<shift/>S"
#: gimp-keys.xml:415(action)
msgid "Scale"
msgstr "Ölçekle"
#: gimp-keys.xml:418(key)
msgid "<shift/>H"
msgstr "<shift/>H"
#: gimp-keys.xml:419(action)
msgid "Shear"
msgstr "Eğ"
#: gimp-keys.xml:422(key)
msgid "<shift/>P"
msgstr "<shift/>P"
#: gimp-keys.xml:423(action)
msgid "Perspective"
msgstr "Perspektif"
#: gimp-keys.xml:426(key)
msgid "<shift/>T"
msgstr "<shift/>T"
#: gimp-keys.xml:427(action)
msgid "Unified Transform"
msgstr "Birleştirilmiş Dönüşüm"
#: gimp-keys.xml:430(key)
msgid "<shift/>L"
msgstr "<shift/>L"
#: gimp-keys.xml:431(action)
msgid "Handle Transform"
msgstr "Kulp Dönüşüm"
#: gimp-keys.xml:434(key)
msgid "<shift/>F"
msgstr "<shift/>F"
#: gimp-keys.xml:435(action)
msgid "Flip"
msgstr "Çevir"
#: gimp-keys.xml:438(key)
msgid "<shift/>G"
msgstr "<shift/>G"
#: gimp-keys.xml:439(action)
msgid "Cage Transform"
msgstr "Kafes Dönüşüm"
#: gimp-keys.xml:442(key)
msgid "W"
msgstr "W"
#: gimp-keys.xml:443(action)
msgid "Warp Transform"
msgstr "Bükme Dönüşümü"
#: gimp-keys.xml:446(key)
msgid "B"
msgstr "B"
#: gimp-keys.xml:447(action)
msgid "Paths"
msgstr "Yollar"
#: gimp-keys.xml:450(key)
msgid "T"
msgstr "T"
#: gimp-keys.xml:451(action)
msgid "Text"
msgstr "Metin"
#: gimp-keys.xml:454(key)
msgid "O"
msgstr "O"
#: gimp-keys.xml:455(action)
msgid "Color Picker"
msgstr "Renk Seçici"
#: gimp-keys.xml:458(key)
msgid "<shift/>M"
msgstr "<shift/>M"
#: gimp-keys.xml:459(action)
msgid "Measure"
msgstr "Ölçüm"
#: gimp-keys.xml:465(note)
msgid "Double click on the tool buttons opens the Tool Options dialog."
msgstr ""
"Araç düğmelerine çift tıklamak Araç Seçenekleri iletişim kutusunu açar."
#: gimp-keys.xml:471(title)
msgid "Context"
msgstr "İçerik"
#: gimp-keys.xml:473(key)
msgid "<Ctrl/>B"
msgstr "<Ctrl/>B"
#: gimp-keys.xml:477(key)
msgid "D"
msgstr "D"
#: gimp-keys.xml:478(action)
msgid "Default Colors"
msgstr "Öntanımlı Renkler"
#: gimp-keys.xml:481(key)
msgid "X"
msgstr "X"
#: gimp-keys.xml:482(action)
msgid "Swap Colors"
msgstr "Renkleri Değiştir"
#: gimp-keys.xml:484(note)
msgid "Click on the colors to change the colors."
msgstr "Renkleri değiştirmek için renklere tıklayın."
#: gimp-keys.xml:492(title)
msgid "Filters"
msgstr "Süzgeçler"
#: gimp-keys.xml:495(key)
msgid "<ctrl/>F"
msgstr "<ctrl/>F"
#: gimp-keys.xml:495(action)
msgid "Repeat last filter"
msgstr "Son süzgeci yinele"
#: gimp-keys.xml:498(key)
msgid "<shift/><ctrl/>F"
msgstr "<shift/><ctrl/>F"
#: gimp-keys.xml:498(action)
msgid "Reshow last filter"
msgstr "Son süzgeci yeniden göster"
#: gimp-keys.xml:504(title)
msgid "Windows"
msgstr "Pencereler"
#: gimp-keys.xml:507(key)
msgid "<ctrl/>L"
msgstr "<ctrl/>L"
#: gimp-keys.xml:510(key)
msgid "<shift/><ctrl/>B"
msgstr "<shift/><ctrl/>B"
#: gimp-keys.xml:510(action)
msgid "Brushes"
msgstr "Fırçalar"
#: gimp-keys.xml:513(key)
msgid "<shift/><ctrl/>P"
msgstr "<shift/><ctrl/>P"
#: gimp-keys.xml:513(action)
msgid "Patterns"
msgstr "Örüntüler"
#: gimp-keys.xml:516(key)
msgid "<ctrl/>G"
msgstr "<ctrl/>G"
#: gimp-keys.xml:516(action)
msgid "Gradients"
msgstr "Renk Geçişleri"
#: gimp-keys.xml:518(note)
msgid ""
"These open a new dialog window if it wasn't open yet, otherwise the "
"corresponding dialog gets focus."
msgstr ""
"Bunlar, henüz açık değilse yeni iletişim kutusu açar, aksi takdirde ilgili "
"iletişim kutusu odaklanır."
#: gimp-keys.xml:524(title)
msgid "Within a Dialog"
msgstr "Bir İletişim Kutusuyla"
#: gimp-keys.xml:526(action)
msgid "Set the new value"
msgstr "Yeni değer ata"
#: gimp-keys.xml:528(note)
msgid ""
"This accepts the new value you typed in a text field and returns focus to "
"canvas."
msgstr ""
"Bu, metin alanına yazdığınız yeni değeri kabul eder ve odağı tuvale döndürür."
#: gimp-keys.xml:533(action)
msgid "Activate current button or list"
msgstr "Geçerli düğmeyi ya da listeyi etkinleştir"
#: gimp-keys.xml:537(title)
msgid "Within a multi-tab dialog"
msgstr "Çok sekmeli iletişim kutusuyla"
#: gimp-keys.xml:540(action)
msgid "Switch tabs up"
msgstr "Yukarıdaki sekmeye geç"
#: gimp-keys.xml:544(action)
msgid "Switch tabs down"
msgstr "Aşağıdaki sekmeye geç"
#: gimp-keys.xml:549(title)
msgid "Within a File Dialog"
msgstr "Dosya İletişim Kutusu İçinde"
#: gimp-keys.xml:551(action)
msgid "Up-Folder"
msgstr "Üst Klasör"
#: gimp-keys.xml:554(action)
msgid "Down-Folder"
msgstr "Alt Klasör"
#: gimp-keys.xml:557(action)
msgid "Home-Folder"
msgstr "Ev Klasörü"
#: gimp-keys.xml:560(action)
msgid "Close Dialog"
msgstr "İletişim Kutusunu Kapat"
#: gimp-keys.xml:565(title) gimp-keys.xml:569(action)
msgid "Help"
msgstr "Yardım"
#: gimp-keys.xml:573(action)
msgid "Context Help"
msgstr "Bağlam Yardımı"
#: gimp-keys.xml:576(key)
msgid "/"
msgstr "/"
#: gimp-keys.xml:577(action)
msgid "Search and run a command"
msgstr "Komut ara ve çalıştır"
#: gimp-keys.xml:585(title)
msgid "Zoom tool"
msgstr "Yakınlaştırma araçları"
#: gimp-keys.xml:588(action)
msgid "Zoom in"
msgstr "Yakınlaştır"
#: gimp-keys.xml:591(action)
msgid "Zoom out"
msgstr "Uzaklaştır"
#: gimp-keys.xml:595(action)
msgid "Zoom in inside the area"
msgstr "Alanın içinde yakınlaştır"
#: gimp-keys.xml:599(action)
msgid "Zoom out inside the area"
msgstr "Alanın içinde uzaklaştır"
#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
#: gimp-keys.xml:0(None)
msgid "translator-credits"
msgstr "Sabri Ünal <yakushabb@gmail.com>, 2019, 2025."
|