File size: 244,210 Bytes
19e217c |
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 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 |
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KashubianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Prancis@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 6 - ShortName \t ShrIndian National month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 10 - LongNamePossessive \t GenbotEthiopian month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ email/ plain \t & lt;% 1 gt; @ email/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Կարգավորել ցանցի պարամետրերըName \t Atur Pengaturan JaringanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԵստոներենName \t AsturiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inlistbox Spell checker \t Aspell @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Spanyol@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ժամ և ԱմսաթիվComment \t Waktu & TanggalComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Menggabungkan Tanda DiakritikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 2 - ShortNamePossessive \t ChaIndian National month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol- B Matematika LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t LGPL v2@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi Publik Umum GNU Versi 3@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ placeholder/ plain \t % 1 @ placeholder/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 12 - ShortNamePossessive \t MāgIndian National month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "digit set \t Devenagaridigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AvestanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code AlreadyCreated \t socket telah diikatSocket error code AlreadyCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Time zone \t AreaTime zone"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Չափեր:% 1x% 2 \t Dimensi:% 1x% 2"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t DzongkhaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Define an area in the time zone, like a town area \t % 1Define an area in the time zone, like a town area"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 12 - LongName \t EpepCoptic month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t kecildictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Returnkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Garis CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Menggabungkan Tambahan Tanda DiakritikaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MoldavianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^50 bytes \t % 1 PBmemory size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Dalam desimal: KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 7 - LongNamePossessive \t MeshirCoptic month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t MyanmarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 2 - ShortDayName \t SegEthiopian weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t DenmarkName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t HausaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChinaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KoreaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 2 - LongName \t ChaitraIndian National month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Masehi (Proleptik) @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan EthiopicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Vardan Gevorgyan \t Andhika PadmawanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan- C LatinKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t SamaritaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Sunday \t SabSunday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "September \t AguSeptember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ interface/ rich \t _BAR_% 1_BAR_@ interface/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of August \t Julof August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BelandaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Subskrip@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Menggabungkan Tanda Diakritika untuk SimbolKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t JepangName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t * Warna Terkini * palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof April \t Marof April"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 8 - LongName \t ĀshwinIndian National month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t GeorgiaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարThe source url of a job \t & JedaThe source url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Portugis BrazilName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi Publik Umum GNU Versi 2@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 days \t % 1 YiB@ item: intext% 1 is a real number, e. g. 1. 23 days"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Shiftkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Գործողություն@ action \t Simpan Opsi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 1 - LongName \t PhāIndian National month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BulgariaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TatarName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TagbanwaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Syloti NagriKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 7 - LongName \t BhādrapadIndian National month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Meetei MayekKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Hapus Kata Maju@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "December \t NovDecember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Program ini didistribusikan di bawah perjanjian% 1. @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 9 - ShortNamePossessive \t PamCoptic month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ envar/ rich \t $% 1@ envar/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t GurmukhiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t IndonesiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "home page \t Jalan pintas ambigu terdeteksihome page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t LepchaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary:% 1 dictionary name,% 2 file name \t Standar ISpell @ item Spelling dictionary:% 1 dictionary name,% 2 file name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t KurawalOtomatisComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Akhir@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TifinaghKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t & Klien: @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 1 - LongDayName \t TkyCoptic weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t Lisensi Publik Umum Lebih Kecil Versi 3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin untuk Dialog Ganti NamaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Church SlavicName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Modul Jurik KSSLComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Surogat Penggunaan Privat TinggiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t 40dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 5 - LongNamePossessive \t TahsasEthiopian month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Low SaxonName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 12 - ShortNamePossessive \t EpeCoptic month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ShonaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font \t Oblique@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Email receiver address \t Alamat email tempat laporan kutu ini dikirim. Email receiver address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Radikal YiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk Setengah Panjang dan Panjang PenuhKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Delkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Reload KDE configuration messagebox \t Anda ingin memuat ulang konfigurasi KDE? Reload KDE configuration messagebox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Cari@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Esperanto@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Kata Mundur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 6 - ShortDayName \t SukIndian National weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChuvashName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Hijriah@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tahan% 1, lalu tekan% 2@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադար@ action \t Sesuai Halaman@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t akhiran - an dan dengan aksendictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Valencia (Catalan bagian selatan) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t MongoliaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ warning/ plain \t % 1:% 2@ warning/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԵստոներենName \t EstoniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Tir short \t Khoof Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Simbol MatematisKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AssameseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարJumee short \t 5shJumee short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name_BAR_standard desktop component \t Layanan Teks- ke- Percakapan dengan antarmuka D- BusName_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ email- with- name/ plain% 1 is name,% 2 is address \t & lt;% 1 gt; @ email- with- name/ plain% 1 is name,% 2 is address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Custom color \t - tak bernama- Custom color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Altkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 9 - LongNamePossessive \t KārtikIndian National month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tambahan bahasa skrip untuk PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip Asia SelatanKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Կարգավորել TCP/ IP ՊարամետրերըName \t Atur Pengaturan TCP/ IPName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 6 - LongDayName \t PsoouCoptic weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ideograf Kompatibilitas CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inlistbox Spell checker \t & Penyandian: @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Berkas tes metadata paketComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 6 - LongNamePossessive \t TerEthiopian month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk- B Presentasi Bahasa ArabKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Yunani@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 4 - ShortName \t HedEthiopian month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t & Sorot Teks... @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t varian 2dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tambah Penanda@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Di sini anda dapat memilih keluarga fonta yang akan digunakan. @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip FilipinaKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pembesaran@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Ceko@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ tag/ modifier/ modifier@ title/ plain \t % 1 (% 2) @ tag/ modifier/ modifier@ title/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Gambar belakang PlasmaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 9 - LongNamePossessive \t MiyazyaEthiopian month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ resource/ plain \t % 1 (% 2) @ resource/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item/ rich \t *% 1@ item/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Inskeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^40 bytes \t % 1 GBmemory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ընդհանուր@ item Text character set \t Universal@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 6 - ShortName \t TobCoptic month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Մտցրեք ընթացիք Ժամը և ԱմսաթիվըName \t Masukkan Waktu & Tanggal saat iniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԳերմաներենName \t JermanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Slovenia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Denmark@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Cyrillic Diperluas- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t HanunooKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BamumKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ warning- with- label/ rich% 1 is the warning label,% 2 is the text \t % 1:% 2@ warning- with- label/ rich% 1 is the warning label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Shanbe short \t JomShanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 12 - ShortNamePossessive \t HamEthiopian month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Lithuania@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t filemoduleComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "short \t % 1 [% 2] short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ link- with- description/ rich% 1 is the URL,% 2 is the descriptive text \t % 2 (% 1) @ link- with- description/ rich% 1 is the URL,% 2 is the descriptive text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Numbers and characters \t abcdefghijklmnopqrstuvwxyzNumbers and characters"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 2 - LongNamePossessive \t ChaitraIndian National month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t ArabKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SangoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "vgevorgyan@ debian. am \t andhika. padmawan@ gmail. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Apakah Ini@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label stroke color \t Warna & Teks... @ label stroke color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MongoliaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TibetKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "toolbar position string \t Atastoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t China Tradisional@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Kurangi Alinea@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu uppercase abc lists \t abc@ item: inmenu uppercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 2 - LongDayName \t SegnoEthiopian weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 9 - ShortName \t PamCoptic month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t JawaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 10 - ShortName \t AgrIndian National month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code NoError \t Keluarga tak diketahui% 1Socket error code NoError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat tidak ditandatangani oleh otoritas sertifikat terpercaya manapunSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 5 - ShortNamePossessive \t TahEthiopian month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "No border line \t Atas ke Bawah, Kanan ke KiriNo border line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t PrtScrkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk NomorKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t IbraniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label Action tooltip in toolbar editor, below the action list \t SenaraiAksi:% 1@ label Action tooltip in toolbar editor, below the action list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BashkirName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu Text Completion \t Senarai Taruh Bawah & & Otomatis@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action Opposite to Prior \t Sebelumnya@ action Opposite to Prior"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 11 - ShortName \t PauIndian National month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 1 - ShortDayName \t Kouji nabotCoptic weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of March \t Febof March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t PgDownkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 10 - ShortNamePossessive \t GenEthiopian month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Salin@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Yunani dan KoptikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TwiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t 60dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KalaallisutName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԻտալերենName \t ItaliaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Աշխատացնել միայն HTML տեստերը \t Hanya Menjalankan Tes HTML"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t RundiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip AfrikaKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Ganti Bahasa Aplikasi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t YiddishName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ message/ plain \t $% 1 @ message/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk GeometrikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "1: the unknown socket address family number \t Operasi tak didukung1: the unknown socket address family number"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Elemen BlokKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ZhuangName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inlistbox Spell checker \t Ispell Internasional@ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tidak Pilih@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 1 - ShortName \t PagumenEthiopian month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Konfigurasi Proxy OtomatisName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "նՇել khtml- ի թղթապանակը... \t Tentukan Direktori khtml..."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Tak Diketahui@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՖրանսերենName \t PrancisName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KhmerName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pembersih Tembolok HTTPComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Sesuai Lebar@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tema Emoticon PidginComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t PgUpkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t sedangdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 13 - ShortNamePossessive \t NehEthiopian month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Penampil Citra Dapat DibenamkanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: button Restart find & replace \t Anda ingin start ulang pencarian dari awal? @ action: button Restart find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 3 - ShortName \t TeqEthiopian month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page at start \t Halaman PanjiBanner page at start"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MalteseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարFebruary \t JanFebruary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ subtitle/ plain \t % 1 @ subtitle/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 1 - ShortDayName \t PhālgunIndian National weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code AddressInUse \t pencarian nama telah gagalSocket error code AddressInUse"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "All letters of the alphabet (in upper/ lower case pairs), followed by numbers \t AaAll letters of the alphabet (in upper/ lower case pairs), followed by numbers"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 1 - LongNamePossessive \t PhāIndian National month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MalayalamName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Enter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes \t SpesialEnter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi BSD@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof May short \t Aprof May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of May long \t Aprilof May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Khordad short \t Ordof Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Pengenal Karakter OptikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BosniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Description \t AplikasiDescription"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 3 - ShortDayName \t MañIndian National weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t & Garis Bawah@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t PushtoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Pengubah Tona HurufKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարDo shanbe short \t EsfandDo shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Dei long \t Azarof Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu Text Completion \t Penyelesai Teks@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t host jarak jauh menutup koneksiSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Cari Berikutnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Ekspor dokumen tersorot ke HTMLName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 9 - LongName \t ParmouteCoptic month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 13 - ShortNamePossessive \t MeoCoptic month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: listbox \t Zemberek @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ envar/ plain \t % 1 @ envar/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font \t Di sini anda dapat memilih gaya fonta yang akan digunakan. @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 11 - ShortName \t SenEthiopian month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ emphasis/ rich \t *% 1 * @ emphasis/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t CherokeeKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Pengelola PenggunaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian weekday 5 - LongDayName \t HamusEthiopian weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu disc list style \t Tak Ada@ item: inmenu disc list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KScanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 3 - ShortName \t PaoCoptic month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t LaoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MarathiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t LuxembourgishName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Yahudi@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code NetFailure \t operasi telah berjalanSocket error code NetFailure"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Document/ application separator in titlebar \t dimodifikasiDocument/ application separator in titlebar"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 6 - LongDayName \t SukravãraIndian National weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՀատկությունShahrivar short \t MorShahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Բրիտանական ԱնգլերենName \t Inggris BritaniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t PolandiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk VertikalKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t ABC@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Crimean TatarName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 1 - LongName \t PagEthiopian month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Jerman (ejaan baru) @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 7 - LongDayName \t SanivãraIndian National weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 2 - LongDayName \t PesnauCoptic weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: button \t Ingat aksi untuk berkas tipe ini@ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t SundaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "PBMName \t PNMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sami Bagian UtaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Turki@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu Icon size \t Ukuran Ikon@ item: inmenu Icon size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip LainnyaKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 1 - LongDayName \t RavIndian National weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SwahiliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk- A Presentasi Bahasa ArabKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t dengan yeyodictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t SimbolKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof July \t Junof July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol dan Tanda Baca CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ shortcut/ plain \t % 1 @ shortcut/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Opposite to Back \t & MundurOpposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary name.% 1- language,% 2- country and% 3 variant name \t diperpanjangdictionary name.% 1- language,% 2- country and% 3 variant name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t HiraganaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "August \t JulAugust"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Controlkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t AltGrkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KirghizName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 4 - LongName \t HedarEthiopian month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Silabel Diperluas Aboriginal Canadian BersatuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t PengeksporComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 8 - LongNamePossessive \t ĀshwinIndian National month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Պիտակ@ item: inmenu Text Completion \t Pengurutan Otomatis@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 13 - ShortName \t NehEthiopian month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Մաքրել@ title: menu \t Hapus teks@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t SyriacKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu circle list style \t Cakram@ item: inmenu circle list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելCoptic month 7 - LongName \t MeshirCoptic month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Norwegian NynorskName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t China DisederhanakanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Shahrivar short \t Morof Shahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GuaraniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 10 - LongName \t AgrahayanaIndian National month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ note- with- label/ plain% 1 is the note label,% 2 is the text \t Catatan:% 1@ note- with- label/ plain% 1 is the note label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Jerman@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info \t Buka & dengan% 1@ info"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: shell% 1 is cmdoption name \t Opsi '% 1' tak diketahui. @ info: shell% 1 is cmdoption name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Font name \t Monospace@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ekstensi Fonetik KatakanaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "go back \t Kembalikan semua item ke nilai standar merekago back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pandu ProxyComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Mundur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Superkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Devanagari DiperluasKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Description \t Simpan kebijakan widget jarak jauhDescription"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Uzbek (Cyrillic) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "May long \t AprilMay long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t GlagoliticKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t InuktitutName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol dan Panah LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan ArabKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code WouldBlock \t socket belum dibuatSocket error code WouldBlock"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t dengan aksendictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "First letter of the alphabet (in upper then lower case) \t Tak DiketahuiFirst letter of the alphabet (in upper then lower case)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Wednesday \t SelWednesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t CorsicanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Protokol Microsoft Media ServerComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 2 - ShortNamePossessive \t ThoCoptic month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font \t Reguler@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu lowercase abc lists \t 123@ item: inmenu lowercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t 80dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Penampil Applet Java TerbenamName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Operator Matematika LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tai Lue BaruKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Latin Diperluas- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 7 - ShortName \t BhāIndian National month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԼատիներենName \t LatinName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Applet popup skrip PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Eropa Barat@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat tidak mengajukan ke host yang diberikanSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Aktifkan Tab Sebelumnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Silabel Aboriginal Canadian BersatuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t CyrillicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Gaya fonta: @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t NavajoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 7 - ShortNamePossessive \t YakEthiopian month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 11 - LongName \t PaushIndian National month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Mode Layar Penuh@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 9 - LongNamePossessive \t ParmouteCoptic month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t XhosaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Ke Baris@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Koptik@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "1, 27Numeric IDs of scripts for font previews \t The Quick Brown Fox Jumps Over The Lazy Dog1, 27Numeric IDs of scripts for font previews"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 6 - LongDayName \t ArbEthiopian weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t NKoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Potong@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Gaya fonta@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 6 - ShortNamePossessive \t TobCoptic month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 hours \t % 1 hari@ item: intext% 1 is a real number, e. g. 1. 23 hours"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t OromoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan GeorgiaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action boldify selected text \t & Ukuran Fonta@ action boldify selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MaithiliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Penyelesai Cocok Sebelumnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^40 bytes \t % 1 TBmemory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: listbox \t Pertimbangkan & kata berjalan bersama sebagai galat pengejaan@ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary:% 1 dictionary name \t Standar ASpell @ item Spelling dictionary:% 1 dictionary name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TswanaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 8 - ShortNamePossessive \t MagEthiopian month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChechenName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pilih Semua@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելCoptic month 13 - ShortName \t MeoCoptic month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարOrdibehesht short \t FarOrdibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Penggambar Format@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Penyunting Teks Canggih TerbenamName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Tir short \t KhoTir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 7 - LongNamePossessive \t YakatitEthiopian month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 minutes \t % 1 jam@ item: intext% 1 is a real number, e. g. 1. 23 minutes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 12 - LongName \t MāghIndian National month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^20 bytes \t % 1 KBmemory size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՀինդիName \t HindiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t CekoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 1 - ShortNamePossessive \t TkyriakēEthiopian month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: checkbox \t Tipe:% 1@ label: checkbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t akhiran - an dan tanpa aksendictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t FrisianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Latin Diperluas- DKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ցանցային պարամետրերComment \t Pengaturan jaringanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t IcelandicName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t WalloonName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Ke Teks Biasa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t varian 0dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tema Emoticon KdeComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 1 - LongDayName \t EhuEthiopian weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: button filter- yes \t Sangat Rahasia@ action: button filter- yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Աշխատացնել միայն JS տեստերը \t Hanya Menjalankan Tes JS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 4 - LongNamePossessive \t JyaishthaIndian National month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Ijekavian SerbiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Seleksi Tempel@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Statistik RPMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 4 - LongName \t HathorCoptic month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MalagasyName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "replace this with information about your translation team \t Tak ditentukanreplace this with information about your translation team"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "digit set \t Arab- Indiadigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pemeriksa/ penambah penyandian PythonComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "All of the letters of the alphabet, uppercase \t The quick brown fox jumps over the lazy dogAll of the letters of the alphabet, uppercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "March long \t FebruariMarch long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "May short \t AprMay short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Nama:% 1@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t KannadaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AmharicName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Ukuran@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Yahudi@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ManxName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԼիտվերենName \t LithuaniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 1 - ShortNamePossessive \t MingguIndian National month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Jadi Lagi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code ConnectionRefused \t operasi akan menghalangiSocket error code ConnectionRefused"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: tooltip \t Aktifkan kotak cek untuk mengubah pengaturan ukuran fonta. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of Farvardin short \t Yaum al- Ahadof Farvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելEthiopian month 2 - LongName \t MeskeremEthiopian month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: listbox Font size \t Ubah ukuran fonta? @ label: listbox Font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BengaliKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tai ThamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 6 - ShortNamePossessive \t ShrIndian National month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Komponen Menampilkan Citra Dapat DibenamkanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ note/ plain \t % 1 @ note/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pilih hari ini@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Simpan"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code NotSupported \t kegagalan jaringan terjadiSocket error code NotSupported"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GeorgiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 4 - LongDayName \t PeftoouCoptic weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Modul Jar Kuki KDEDComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Dei short \t AzaDei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat telah dibatalkanSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Alfabet EropaKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 3 - LongNamePossessive \t TequemtEthiopian month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Inisialisasi Konfigurasi KDEComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AbkhazianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Jamo Kompabilitas HangulKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t SaurashtraKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Ordibehesht short \t Farof Ordibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t PaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item/ plain \t % 1 @ item/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Modul Berkas KIOComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "vgevorgyan@ vtgsoftware. com \t andhika. padmawan@ gmail. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat tidak validSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՀայերենName \t ArmeniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԷսպերանտոName \t EsperantoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 1024 bytes \t % 1 YBsize in 1024 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Pembaca catatan sistemName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t FijianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 12 - LongNamePossessive \t MāghIndian National month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol Seperti HurufKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Author name in about dialog \t Silakan laporkan kutu ke% 2. @ item Author name in about dialog"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChamorroName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 12 - ShortName \t MāgIndian National month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 1 - LongNamePossessive \t KouCoptic month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tai LeKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t China (Hong Kong) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "NAME OF TRANSLATORS \t Modul konfigurasi untuk dijalankanNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՀատկությունCoptic month 3 - LongName \t PaopeCoptic month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page \t RahasiaBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t EthiopicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Program name followed by 'Add On Installer' \t Dapatkan Barang Baru Yang KerenProgram name followed by 'Add On Installer'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "toolbar position string \t Kanantoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "subtraction \t ACsubtraction"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code UnknownError \t waktu operasi berjangka waktu habisSocket error code UnknownError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t InterlinguaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Muat Ulang@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SysV- Init խմբագրիչComment \t Penyunting SysV- InitComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Atur dan jadwal tugasName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: button Stop find & replace \t Start Ulang@ action: button Stop find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Esfand \t BahEsfand"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Program name followed by 'Add On Uploader' \t BebanProgram name followed by 'Add On Uploader'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 2 - LongNamePossessive \t MeskeremEthiopian month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action underline selected text \t & Miring@ action underline selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Գործիքների հիմնական վահանակ@ action \t Tampilkan Batang Alat@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: intoolbar Text label of toolbar button \t Kunci Posisi Batang Alat@ action: intoolbar Text label of toolbar button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name_BAR_standard desktop component \t Pesan Instan dengan antarmuka D- BusName_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարChahar shanbe short \t 3shChahar shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Norwegia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BislamaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Latin Ijekavian SerbiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GujaratiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 4 - ShortNamePossessive \t HatCoptic month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BopomofoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip Asia TimurKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t OssetianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 1 - LongNamePossessive \t PagEthiopian month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BelarusiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t SinhalaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t KFileModuleComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 3 - LongName \t VaishākhIndian National month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Penggambaran KotakKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: inmenu \t & Buka dengan% 1@ action: inmenu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Downkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KashmiriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t CopticKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ստուգել@ item Font name \t Serif@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SamoaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "right mouse button \t tombol tengahright mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MacedoniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SwediaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SundaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intext \t % 1 detik@ item: intext"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Plugin Data Meta KFileComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t WolofName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip Asia TengahKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "3D Պարամետրեր \t Opsi 3D"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t UrduName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 9 - ShortNamePossessive \t KārIndian National month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 4 - ShortName \t HatCoptic month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարApril \t MarApril"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Portugis Brasil@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելEthiopian month 2 - ShortName \t MesEthiopian month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: button \t Buka '% 1'? @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Cetak@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 9 - LongName \t MiyazyaEthiopian month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Hyperkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title: menu HTML frame/ iframe \t & Salin Alamat Tautan@ title: menu HTML frame/ iframe"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 4 - LongDayName \t RobEthiopian weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t NepaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AlbaniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "No shortcut defined \t Standar: No shortcut defined"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t RumaniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Silabel HangulKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 5 - LongName \t KiahkCoptic month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Dock this window \t BekuDock this window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Myanmar Diperluas- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Galat Unduh SkripComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t ThaiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TsongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Bengali (India) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu numbered lists \t Kotak@ item: inmenu numbered lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 11 - ShortNamePossessive \t PauIndian National month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 7 - ShortDayName \t QedEthiopian weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KikuyuName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 1000 bytes \t % 1 Bsize in 1000 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Show the author of this item in a list \t Memuat pratilik... Show the author of this item in a list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 8 - ShortName \t ĀswIndian National month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Rusia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Fonta Diminta@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Root sertifikat milik otoritas tidak dipercaya untuk tujuan iniSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t QuechuaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 5 - LongNamePossessive \t KiahkCoptic month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t tanpa aksendictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "1: the i18n' ed system error code, from errno \t galat tak diketahui1: the i18n' ed system error code, from errno"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof September \t Aguof September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 2 - LongName \t ThooutCoptic month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Plguin KRunnerComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tak Jadi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Menggabungkan Tanda SetengahKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Karakter Deskripsi IdeografikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tai VietKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TahitiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱրժեքEthiopian weekday 5 - ShortDayName \t HamEthiopian weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Galat Evaluasi SkripComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Backend penyimpanan untuk KConfigName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "HTML գործիքներ \t Batang Alat HTML"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Jepang@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t GujaratiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title/ rich \t ==% 1 ==@ title/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 10 - ShortName \t GenEthiopian month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Surogat RendahKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi Publik Q@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page \t DirahasiakanBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "digit set \t Arab- India Timurdigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 5 - LongName \t TahsasEthiopian month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Meta RekaanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "addition \t Kalkulator JSaddition"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol KhmerKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t ChamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t & Fonta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Laporkan Kutu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Definisi struktur paket PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t OriyaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Notepad (contoh) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 3 - LongNamePossessive \t PaopeCoptic month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TagalogKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Aktifkan Tab Berikutnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "July \t JunJuly"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Verb \t Atur ulang konfigurasiVerb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sorbian BawahName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 10 - ShortName \t PasCoptic month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TamilName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t RomanyName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pembesaran ke Dalam@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t UkrainiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Masukkan berkasComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label Type of file \t & Cari@ label Type of file"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TeluguName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BugisKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t NdongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Goes to previous character \t Masukkan term atau karakter pencarian di siniGoes to previous character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 10 - LongNamePossessive \t AgrahayanaIndian National month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SardinianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "middle mouse button \t tombol kirimiddle mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Operator MatematikaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Penyelesai Subtali@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of November \t Oktof November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ekstensi Ideograf CJK Dipersatukan AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Swedia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t LingalaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Tak ada galatSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ subtitle/ rich \t ~% 1 ~@ subtitle/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MaoriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Warna@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t FaroeseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Argument is application name \t Pratilik CetakArgument is application name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof December \t Novof December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SindhiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Opposite to Previous \t & Tampilkan tip pada mulai hidupkanOpposite to Previous"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Buat kombinasi & root/ afiks bukan di kamus@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Plasma- ի աշխատանքային տարածք \t Ruang Kerja Plasma"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 4 - LongNamePossessive \t HathorCoptic month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելCoptic month 13 - LongName \t MesoreCoptic month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in bytes \t % 1 (% 2) size in bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Sesuai Tinggi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t MalayalamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Panah- B TambahanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Konfigurasi Init yang tersimpanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t China TradisionalName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարYek- shanbe short \t shnYek- shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 7 - LongDayName \t QedameEthiopian weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text encoding:% 1 character set,% 2 encoding \t Penyandian lain (% 1) @ item Text encoding:% 1 character set,% 2 encoding"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t LimbuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pembuat bookmark otomatisComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intable Action name in shortcuts configuration \t Atur@ item: intable Action name in shortcuts configuration"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 12 - ShortName \t EpeCoptic month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Hangul JamoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Unicode@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Item Berikutnya di Senarai@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Մաքրել@ action \t Bersihkan@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SinhalaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Latin Diperluas- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title: window \t Desktop% 1@ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Friday \t KamFriday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SloveniaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^70 bytes \t % 1 ZBmemory size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 3 - ShortNamePossessive \t PaoCoptic month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Akhir Baris@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Արտածումը դիտել HTML տեսքով \t Tampilkan Keluaran HTML"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Mehr short \t ShaMehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 3 - ShortNamePossessive \t TeqEthiopian month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "the price of a download item, parameter 1 is the currency, 2 is the price \t Tak dapat mendapatkan akun rekening. the price of a download item, parameter 1 is the currency, 2 is the price"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip Timur TengahKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "State of the notified event \t Atur NotifikasiState of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "& Խմբագրել@ title: menu Game move \t & Sunting@ title: menu Game move"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t EnchantName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Aban short \t MehAban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Baltik@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 1 - ShortName \t Kouji nabotCoptic month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 8 - LongNamePossessive \t MagabitEthiopian month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BaliKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t Warna Oksigenpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ icode/ rich \t “% 1 ” @ icode/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 2 - ShortDayName \t SomIndian National weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "go forward \t Mundur satu langkahgo forward"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AfarName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 5 - LongNamePossessive \t ĀshādhaIndian National month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^40 bytes \t % 1 TiBsize in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 6 - LongName \t ShrāvanaIndian National month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Diagnonis Akselerator Dr. Klash@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Hangul Jamo Diperluas- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Alat Data KDEName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t OriyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "show help \t Bersihkan masukan di ruang suntingshow help"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action End of document \t Awal@ action End of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Fonta@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Applet PlasmaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաշվի չառնելCoptic month 13 - LongNamePossessive \t MesoreCoptic month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Չօգտագործել Xvfb \t Jangan gunakan Xvfb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Gaelic IrlandiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Julian@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof February \t Janof February"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TeluguKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SerbiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SwatiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 2 - ShortNamePossessive \t MesEthiopian month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 5 - ShortName \t ĀshIndian National month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 5 - ShortName \t KiaCoptic month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t ArmeniaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Konfigurasi proxy otomatisComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Korea@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 3 - ShortDayName \t MakEthiopian weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t InterlingueName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "a nonexistent value of mouse button \t tombol kanana nonexistent value of mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t China Disederhanakan@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t HereroName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action italicize selected text \t Tebal@ action italicize selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Buka Terkini@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t OghamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title: menu \t Rata Kanan- Kiri@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Huruf Pengubah SpasiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Komponen menampilkan HTML dapat dibenamkanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Hangul Jamo Diperluas- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t PauseBreakkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Kayah LiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Eropa Tenggara@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National weekday 7 - ShortDayName \t SanIndian National weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 5 - LongDayName \t GuruvãraIndian National weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Penyelesai Cocok Berikutnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 9 - LongName \t KārtikIndian National month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu no list style \t Senarai Gaya@ item: inmenu no list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action Go to main page \t Ganti@ action Go to main page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 7 - LongDayName \t PsabbatonCoptic weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 9 - ShortNamePossessive \t MiyEthiopian month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ emphasis- strong/ rich \t **% 1 ** @ emphasis- strong/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Item Sebelumnya di Senarai@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 4 - LongNamePossessive \t HedarEthiopian month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ընդհանուր@ action \t Tengah@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Go to Settings - > Advanced - > Core tab. gui- path- delimiter/ plain \t +Go to Settings - > Advanced - > Core tab. gui- path- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հաղորդագրությունը ստացված էComment \t Pesan DiterimaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Pilih Fonta@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 11 - ShortNamePossessive \t SenEthiopian month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Lakukan Pemeriksa Ejaan@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Պիտակ% 1 is the number of ambigious shortcut clashes (hidden) \t Jalan pintas '% 1' untuk aksi '% 2'% 1 is the number of ambigious shortcut clashes (hidden)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Standar -% 1 [% 2] @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat milik otoritas tidak validSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Ukraina@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Goes to next character \t Karakter Sebelumnya di RiwayatGoes to next character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 5 - ShortName \t TahEthiopian month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 5 - ShortDayName \t PtiCoptic weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu Text Completion \t Otomatis@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱդրբեջաներենName \t AzerbaijaniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Penjadwal TugasComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t YorubaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 4 - ShortNamePossessive \t JyaIndian National month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^70 bytes \t % 1 ZiBsize in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sotho, Bagian SelatanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BasqueName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 7 - LongName \t YakatitEthiopian month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 3 - LongName \t TequemtEthiopian month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code AlreadyBound \t alamat telah digunakanSocket error code AlreadyBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GalicianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Informasi Plugin KDEComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Huruf dan Bulan CJK DisertakanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GrupName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk Nomor Indic UmumKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Spacekeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 3 - LongDayName \t MañgalvãIndian National weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: whatsthis \t Ukuran: @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Masehi@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KroatiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱրաբերենName \t ArabName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu Text Completion \t Manual@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi Publik Umum Lebih Kecil Versi 2@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "vardangevorgyan@ yahoo. com \t andhika. padmawan@ gmail. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Character \t Titik kode unicode: Character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "The destination url of a job \t Sumber: The destination url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ email- with- name/ rich% 1 is name,% 2 is address \t % 1 & lt;% 2gt; @ email- with- name/ rich% 1 is name,% 2 is address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 2 - ShortName \t ThoCoptic month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t BuhidKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t JawaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t PrintScreenkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KomiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^20 bytes \t % 1 KiBsize in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 6 - LongNamePossessive \t ShrāvanaIndian National month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: tooltip \t Aktifkan kotak cek ini untuk mengubah pengaturan keluarga fonta. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t UzbekName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t GPL v3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 4 - ShortDayName \t BudIndian National weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Azar short \t Abaof Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font \t Tebal@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "% 1 is the label, we add a ':' to it \t % 1/ d% 1 is the label, we add a ':' to it"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t QPL v1. 0@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pengaturan PrinterComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "GenericName \t Alat pembaca Catatan sistemGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Latin SerbiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KinyarwandaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tingkatkan Alinea@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 4 - ShortName \t JyaIndian National month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Phags- paKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "shortcut- key- delimiter/ plain \t % 1 shortcut- key- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Jerman Swiss@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SomaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin KTextEditorName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tema Emoticon XMPPComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Hal Teknis LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 5 - ShortDayName \t GurIndian National weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t Warna Royalpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pengelola Boot (LILO) Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "November \t OktNovember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat tidak cocok untuk tujuan iniSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Mehr short \t Shaof Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Polandia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Baru@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^60 bytes \t % 1 EiBsize in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Modul Konfigurasi KDEName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 10 - LongName \t GenbotEthiopian month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t VietnamName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Punjabi/ PanjabiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tema Emoticon AdiumComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Plasma Aksi BerisiComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t KSystemLogComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "% 1 is the number of paths,% 2 is the list of paths (with newlines between them) \t Warna Bernama% 1 is the number of paths,% 2 is the list of paths (with newlines between them)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Տվյալների գործիքներComment \t Alat DataComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TibetName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin Peramban DipercanggihName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code RemotelyDisconnected \t galat tak diketahui/ tak diharapkan telah terjadiSocket error code RemotelyDisconnected"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Skrip Proxy Tidak SahComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t KoleksiComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱրժեքEthiopian month 12 - LongNamePossessive \t HamleEthiopian month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ message/ rich \t /% 1 / @ message/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code Timeout \t operasi tidak didukungSocket error code Timeout"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Komponen KDEName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 13 - LongNamePossessive \t NehaseEthiopian month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ note/ rich \t Catatan:% 1@ note/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tanda Baca TambahanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "October \t SepOctober"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Program name, version and KDE platform version; do not translate 'Development Platform' \t % 1 Versi% 2 nbsp; Program name, version and KDE platform version; do not translate 'Development Platform'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 5 - ShortNamePossessive \t ĀshIndian National month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AfrikaansName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Masukan Sandi@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 12 - LongNamePossessive \t EpepCoptic month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Klien Eja SonnetComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action Beginning of document \t Rumah@ action Beginning of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: tooltip \t Aktifkan kotak cek ini untuk mengubah pengaturan gaya fonta. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Hungaria@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tentang Aplikasi@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Kata Maju@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title: group \t Cari Teks@ title: group"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ filename/ plain \t % 2 @ filename/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SanskertaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Աշխատեցնել տեստերը... @ item: intable Action name in toolbar editor \t Ubah Teks... @ item: intable Action name in toolbar editor"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t LGPL v3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ekstensi IPAKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Description of the notified event \t JudulDescription of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t Empat Puluh Warnapalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "HSpellName \t HunspellName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Skrip Asia TenggaraKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t RejangKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t AymaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Varian Bentuk KecilKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Adaptor Tambahan KHTMLComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Adar II@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t KhmerKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ filename/ rich \t ‘% 1 ’ @ filename/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Modul jurik KSSL untuk KDEDName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 3 - ShortNamePossessive \t VaiIndian National month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t VolapükName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font \t Miring@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t CryptoComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t VaiIndian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 6 - LongNamePossessive \t TobeCoptic month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat telah kadaluwarsaSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Thursday \t RabThursday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol Hexagram YijingKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 6 - LongName \t TobeCoptic month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Format masukan Waktu & TanggalName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t LisuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 8 - LongName \t MagabitEthiopian month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sebuah pesan telah diterimaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "toolbar position string \t Orientasitoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 4 - ShortDayName \t PefCoptic weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 8 - ShortNamePossessive \t ĀswIndian National month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t % 1% 2@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Kontak sekarang tersambungName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tanda Baca UmumKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 3 - ShortName \t VaiIndian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "left mouse button \t Konflik Dengan Jalan Pintas Global Terdaftarleft mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t PortugisName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "A sentence that uses all of the letters of the alphabet \t Tak ada karakter yang ditemukan. A sentence that uses all of the letters of the alphabet"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարPanj shanbe short \t 4shPanj shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Գործիքների հիմնական վահանակ@ action \t Atur Batang Alat@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Keluar@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Հնարավոր չէ կարդալ պատկերըThe color depth of an image \t Tak dapat memuat citraThe color depth of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 8 - ShortName \t ParCoptic month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item font size \t Tebal Miring@ item font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԼատիներենX- KDE- PluginInfo- Category \t Aksi panjangDescription"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KurdishName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t RunicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code ConnectionTimedOut \t koneksi secara aktif ditolakSocket error code ConnectionTimedOut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Email sender address \t Alamat email anda. Jika salah, gunakan tombol Atur Email untuk mengubahnyaEmail sender address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian weekday 1 - ShortDayName \t PagumenEthiopian weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 9 - ShortName \t KārIndian National month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Saturday \t JumSaturday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t CornishName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Saami Bagian Utara@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action: button \t Nonaktifkan pemeriksaan otomatis@ action: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 7 - ShortName \t YakEthiopian month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t dengan yodictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t * Warna Suai * palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Mesin Data PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՖիներենName \t FinlandiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 6 - ShortDayName \t PsoCoptic weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t (C) 2005 Jeroen Wijnhoutpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Slovak@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Manajer Sertifikat Personal Dapat DibenamkanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Alfanumerik DisertakanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Text character set \t Eropa Tengah@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 4 - LongName \t JyaishthaIndian National month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Catatan penyunting SysV- InitName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Latin DasarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 13 - LongName \t NehaseEthiopian month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code InProgress \t waktu koneksi habisSocket error code InProgress"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 5 - LongName \t ĀshādhaIndian National month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin QImageIOHandlerName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարSe shanbe short \t 2shSe shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t KanbunKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "unknown program name \t & Jalankan Penyihir Laporan Kutuunknown program name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Font style \t Fonta Sebenarnya@ item Font style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code NotBound \t socket telah dibuatSocket error code NotBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 2 - LongDayName \t SomavãraIndian National weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 9 - ShortName \t MiyEthiopian month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan Latin DiperluasKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 3 - LongDayName \t PshomentCoptic weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 10 - ShortNamePossessive \t AgrIndian National month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Monday \t DesemberMonday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "normal severity \t Matinormal severity"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Opposite to Back \t Kekuatan Sandi LemahOpposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin untuk Dialog PropertiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 3 - ShortDayName \t PshCoptic weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Norwegian BokmålName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "palette name \t Warna Pelangipalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ekstensi VedicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Winkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t GPL v2@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t GaelicName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԹուրքերենName \t TurkiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian weekday 3 - LongDayName \t MaksegnoEthiopian weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Ctrlkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk Kompatibilitas CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of October \t Sepof October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 2 - LongNamePossessive \t ThooutCoptic month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Penyunting Teks Dapat DibenamkanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Azar short \t AbaAzar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Farsi (Persia) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "a kind of mouse gesture: hold down one mouse button, then press another button \t tombol tidak valida kind of mouse gesture: hold down one mouse button, then press another button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t TersambungComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Sertifikat tidak dapat diverifikasi karena alasan internalSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ամերիկյան ԱնգլերենName \t Inggris AmerikaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Alat back- up TapeComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Գույն: NAME OF TRANSLATORS \t Warna: NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 1 - ShortNamePossessive \t KemarinCoptic month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Freeze the window geometry \t TutupFreeze the window geometry"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label right justify \t Rata Kanan@ label right justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Tir long \t KhordadTir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Կարգավորել TCP/ IP պարամետրերըName \t Atur Pengaturan TCP/ IPName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Esfand short \t Bahof Esfand short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Esckeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label left justify \t Rata & Kiri@ label left justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pengikat Tombol@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tip Hari Ini@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t PanahKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ command- with- section/ rich% 1 is the command name,% 2 is its man section \t % 1 (% 2) @ command- with- section/ rich% 1 is the command name,% 2 is its man section"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t ThaanaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "describes the feed of the latest posted entries \t Tak ada penyedia yang dipilih. describes the feed of the latest posted entries"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t KatakanaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ warning/ rich \t PERINGATAN:% 1@ warning/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: listbox \t & Kamus: @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page \t Tak DirahasiakanBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChichewaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Modul KDEDName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ol ChikiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Menukeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Garis Tengah@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t →keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Խորություն:% 1 The dimensions of an image \t Ketajaman:% 1 The dimensions of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "What the user inputs now will be taken as the new shortcut \t Kombinasi tombol '% 1' digunakan pula untuk aksi standar \"% 2\" yang digunakan oleh beberapa aplikasi. Anda yakin ingin menggunakannya sebagai jalan pintas global juga? What the user inputs now will be taken as the new shortcut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 2 - ShortName \t ChaIndian National month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "All of the letters of the alphabet, lowercase \t ABCDEFGHIJKLMNOPQRSTUVWXYZAll of the letters of the alphabet, lowercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Plugin KFileWriteName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Metakeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tempel@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Awal Baris@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "% 1 is the number of conflicts (hidden),% 2 is the key sequence of the shortcut that is problematic \t Jalan Pintas '% 1' di Aplikasi% 2 untuk aksi% 3% 1 is the number of conflicts (hidden),% 2 is the key sequence of the shortcut that is problematic"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "SSL error \t Peer tidak menghadirkan sertifikat apapunSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharSelect section name \t Simbol FonetikKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 10 - ShortNamePossessive \t PasCoptic month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Mesin Data TesName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Pola BrailleKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KazakhName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BihariName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 8 - ShortName \t MagEthiopian month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Khordad short \t OrdKhordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ option: check \t Fonta: @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Hiri MotuName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page \t StandarBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Kembali@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 7 - ShortDayName \t PsaCoptic weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Hapus Kata Mundur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ info: shell message on appcmd -- version; do not translate 'Development Platform'% 3 application name, other% n version strings \t '% 1' hilang. @ info: shell message on appcmd -- version; do not translate 'Development Platform'% 3 application name, other% n version strings"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ title: window \t Tentang KDE@ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 10 - LongNamePossessive \t PashonsCoptic month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Kompatibilitas CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t Tak Dapat Menjalankan Pusat Bantuandictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 6 - LongName \t TerEthiopian month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol Mata UangKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Berikutnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license \t Suai@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Silabel YiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t NauruName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Portugis@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t InupiaqName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t besardictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t TamilKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 1 - ShortName \t PhālgunIndian National month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Գործողություն@ label File name \t & Buka@ label File name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱրժեքEthiopian month 12 - LongName \t HamleEthiopian month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t OccitanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Cyrillic Diperluas- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ThaiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Banner page \t Baris Tebal GandaBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 10 - LongName \t PashonsCoptic month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 11 - LongNamePossessive \t PaoneCoptic month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՌուսերենName \t RusiaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Panah- A TambahanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan CyrillicKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Superskrip dan SubskripKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Bentuk Presentasi AlfabetisKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 11 - ShortNamePossessive \t PanCoptic month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Encodings menu \t Keluar Layar PenuhEncodings menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^60 bytes \t % 1 EBmemory size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t varian 1dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Tuesday \t SenTuesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 11 - LongName \t SeneEthiopian month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "January \t DesemberJanuary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tautan@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t SlovakName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sotho Bagian UtaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Ethiopia@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Pesan InstanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic month 1 - LongName \t KouCoptic month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Cari Sebelumnya@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Pembesaran ke Luar@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan Latin- 1KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Kontrol GambarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարEthiopian month 11 - LongNamePossessive \t SeneEthiopian month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Andhika PadmawanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարFarvardin short \t EsfFarvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t ZuluComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inmenu square list style \t Lingkaran@ item: inmenu square list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Կարգավորել ցանցի պարամետրերըName \t Atur Printer lokal ataupun remote"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic weekday 2 - ShortDayName \t PesCoptic weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Title of the notified event \t TingkatTitle of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^50 bytes \t % 1 PiBsize in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ekstensi FonetikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label: button \t & Buka dengan... @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 8 - LongNamePossessive \t ParemhotepCoptic month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Yunani DiperluasKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label \t Ubah keluarga fonta? @ label"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Dei short \t Azaof Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ email/ rich \t & lt;% 1gt; @ email/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Ethiopian month 4 - ShortNamePossessive \t HedEthiopian month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Belarusia (Latin) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t VendaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^40 bytes \t % 1 GiBsize in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan Radikal CJKKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Tes KnotifyName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Dei long \t AzarDei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Surogat TinggiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 11 - LongName \t PaoneCoptic month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item license (short name) \t Lisensi Artistik@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Column number% 1 \t & SelesaiColumn number% 1"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 11 - LongNamePossessive \t PaushIndian National month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Pemilih VariasiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Դադարof Aban short \t Mehof Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Spelling dictionary \t Belarusia@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t HungariaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Ideograf CJK DipersatukanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ link- with- description/ plain% 1 is the URL,% 2 is the descriptive text \t % 1:% 2@ link- with- description/ plain% 1 is the URL,% 2 is the descriptive text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "the 2nd argument is a list of name+address, one on each line \t Qt:% 1 KDE Development Platform:% 2% 3:% 4 the 2nd argument is a list of name+address, one on each line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t LatviaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t UighurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t DevanagariKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Simbol- A Matematika LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan BopomofoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Area Penggunaan PrivatKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Tampilkan Batang Menu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t akhiran - andictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BurmeseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "of Tir long \t Khordadof Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 2^30 bytes \t % 1 MiBsize in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National weekday 4 - LongDayName \t BudhavãraIndian National weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MarshalleseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t DingbatKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Tampilan PerambanComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "evaluation \t - evaluation"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "keyboard- key- name \t Tabkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KCertPartName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Տեղեկություն փաստաթղթի մասին@ action \t Dokumen Maju@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 3 - LongNamePossessive \t VaishākhIndian National month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Atas@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "size in 10^6 bytes \t % 1 kBsize in 10^6 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "concatenation of dates and time \t Kemarinconcatenation of dates and time"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: inlistbox Spell checker \t Hspell @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t Mesin Animasi PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t MelayuName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t LainnyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Comment \t GrupComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "March \t FebMarch"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t ChhattisgarhiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "JavaScript- ի սխալներ \t Galat JavaScript"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Tambahan Ekstensi FonetikKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "August long \t JuliAugust long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Ndebele, UtaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ label justify fill \t Rata Kanan Kiri@ label justify fill"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Առաջարկների ցուցակA link to the description of this Get Hot New Stuff item \t Detail untuk% 1A link to the description of this Get Hot New Stuff item"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t WelshName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t CatalanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԻսպաներենName \t SpanyolName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Coptic weekday 5 - LongDayName \t PtiouCoptic weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary variant \t dengan yedictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t Sorbian AtasName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Indian National month 7 - LongNamePossessive \t BhādrapadIndian National month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t LaoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Jalali@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "toolbar position string \t Kiritoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "memory size in 2^30 bytes \t % 1 MBmemory size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Masukkan Baris Aturan@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "dictionary name.% 1- language and% 2- country name \t % 1 (% 2) [% 3] dictionary name.% 1- language and% 2- country name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t LimburganName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ՀուներենName \t YunaniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 11 - ShortName \t PanCoptic month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "KCharselect unicode block name \t Radikal KangxiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BretonName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԱնգլերենName \t InggrisName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարIndian National month 7 - ShortNamePossessive \t BhāIndian National month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t IdoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ action \t Bantuan@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 5 - ShortNamePossessive \t KiaCoptic month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t KannadaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TurkmenName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TigrinyaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item Calendar system \t Nasional India@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 8 - LongName \t ParemhotepCoptic month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 seconds \t % 1 menit@ item: intext% 1 is a real number, e. g. 1. 23 seconds"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t BengaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Name \t TajikName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "@ warning- with- label/ plain% 1 is the warning label,% 2 is the text \t Peringatan:% 1@ warning- with- label/ plain% 1 is the warning label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "ԴադարCoptic month 8 - ShortNamePossessive \t ParCoptic month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-id.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - id", "text": "Socket error code NotCreated \t socket tidak diikatSocket error code NotCreated"}
|