File size: 249,126 Bytes
c9fc55a |
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 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 |
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu uppercase abc lists \t abc@ item: inmenu uppercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: listbox \t & Orðabók: @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 2 - LongDayName \t SomavãraIndian National weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "March \t febMarch"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Bopomofo útvíkkaðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action boldify selected text \t Leturstærð@ action boldify selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t InuktitutName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Unicode@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 9 - LongNamePossessive \t í KārtikIndian National month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Notepad (sýnishorn) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 1 - LongNamePossessive \t í PagEthiopian month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Sýna valslá@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ icode/ rich \t “% 1 ” @ icode/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելEthiopian month 2 - LongName \t MeskeremEthiopian month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Կարգավորել TCP/ IP ՊարամետրերըName \t Umsjón TCP/ IP stillingaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t ABC@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Laga að hæð@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan Gevorgyan \t Sveinn í FelliEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Stærð: @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Umluktar tölur og bókstafirKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SamoanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Կարգավորել ցանցի պարամետրերըName \t Stilla staðværa sem fjarlæga prentaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t LúxemborgiskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK stofnviðbót (radicals) KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page at start \t Borðar á síðurBanner page at start"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Sveinn í FelliEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ýmis stærðfræðitákn- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t StærðfræðitáknKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BilbreytarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Hiri MotuName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Բրիտանական ԱնգլերենName \t Bresk enskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Package metagagna prófunarskráComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ note/ plain \t % 1 @ note/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "January \t í desemberJanuary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱրժեքEthiopian weekday 5 - ShortDayName \t HamEthiopian weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t FæreyskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Esperanto@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Աշխատեցնել տեստերը... @ item: intable Action name in toolbar editor \t Breyta texta... @ item: intable Action name in toolbar editor"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հնարավոր չէ գտնել Perl ծրագիրը, խնդրում ենք տեղադրել այն ։ \t Gat ekki fundið Perl forritið á kerfinu hjá þér, vinsamlegast settu það inn."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: listbox \t Leyfa ekki óþekkt & samsett orð@ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t & Leyfa samsetningar orðstofna og endinga sem finnast ekki í orðalista@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Afrita@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t RúmfræðitáknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Latínuviðauki- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Nýja Tai LueKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելCoptic month 13 - LongName \t MesoreCoptic month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 13 - ShortName \t NehEthiopian month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 10 - LongNamePossessive \t í PashonsCoptic month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 11 - ShortNamePossessive \t í PanCoptic month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Einfölduð kínverska@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Khordad short \t í Ordof Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Norður SamiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 11 - ShortName \t SenEthiopian month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Tai LeKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Örvar- A auknarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "The destination url of a job \t Uppruni: The destination url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SundaneseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of March \t í febof March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Tengd( ur) Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríkið hefur veriið afturkallaðSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Koptískt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ZhuangName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríkið er ekki gefið út til þessarar notkunarSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK tákn og greinarmerkiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Norska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ email/ plain \t & lt;% 1 gt; @ email/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t VelskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Velja allt@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 10 - ShortName \t PasCoptic month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 1 - LongDayName \t EhuEthiopian weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Sameinuð sérhljóðamál kanadískra frumbyggja - viðaukiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t EþíópísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t TáknKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t Fjörtíulitirpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code UnknownError \t tímuð aðgerð rann út á tímaSocket error code UnknownError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of October \t í sepof October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Brasílísk PortúgalskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Laga að breidd@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vgevorgyan@ debian. am \t sveinki@ nett. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t JavaneseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ emphasis/ rich \t *% 1 * @ emphasis/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 4 - ShortName \t HatCoptic month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "November \t oktNovember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "May short \t aprMay short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Thursday \t miðThursday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 7 - ShortName \t YakEthiopian month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Sjálfvirkar stillingar vefselsName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t DulkóðunComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 4 - LongNamePossessive \t í HedarEthiopian month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "State of the notified event \t Stilla tilkynningarState of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: button \t Aftengja sjáfvirka athugun@ action: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AymaraName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: tooltip \t Hakaðu hér við til að breyta leturfjölskyldu. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Írsk gelískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name_BAR_standard desktop component \t Spjallforrit með D- Bus viðmótiName_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Eþíópískt útvíkkaðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t VolapükName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "% 1 is the label, we add a ':' to it \t % 1/ s% 1 is the label, we add a ':' to it"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 4 - ShortDayName \t PefCoptic weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: button Restart find & replace \t Viltu leita aftur frá byrjun? @ action: button Restart find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Խորություն:% 1 The dimensions of an image \t Litadýpt:% 1 The dimensions of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Úsbekíska (Kyrilísk) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t InupiaqName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Svissnesk þýska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hangul Jamo viðauki- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hangul Jamo viðauki- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադար@ action \t Laga að síðu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Մտցրեք ընթացիք Ժամը և ԱմսաթիվըName \t Setja inn núverandi tíma - og dagsetninguName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t TrúnaðarmálBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "right mouse button \t mið músarhnappurright mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BashkirName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t StærðfræðiaðgerðatáknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Virkja næsta flipa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KassateikningKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Rótarskilríki vottunarstöðvarinnar (CA) er ekki treyst fyrir þessa notkunSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "a kind of mouse gesture: hold down one mouse button, then press another button \t ógildur hnappura kind of mouse gesture: hold down one mouse button, then press another button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 4 - ShortNamePossessive \t í HedEthiopian month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívefjanlegur Java Applet skoðariName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 8 - ShortNamePossessive \t í MagEthiopian month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելCoptic month 7 - LongName \t MeshirCoptic month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Delkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Dingbats táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 10 - ShortNamePossessive \t í GenEthiopian month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t ChamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Friday \t fimFriday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 7 - LongDayName \t PsabbatonCoptic weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Hebreskt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Richard Allen, Svanur Pálsson, Sveinn í FelliEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hljóðfræðiviðbætur auknarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 5 - LongName \t ĀshādhaIndian National month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԼատիներենName \t LatínaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu Icon size \t Stærð táknmynda@ item: inmenu Icon size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title: menu \t Jafna@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Eþíópískt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ resource/ plain \t % 1 (% 2) @ resource/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: listbox \t Zemberek @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Goes to previous character \t Sláðu inn leitarstreng eða staf hérGoes to previous character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Gat ekki sótt stillingaskriftu vefselsName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 2 - LongName \t ThooutCoptic month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Arabísk framsetningarform- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 3 - LongDayName \t PshomentCoptic weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t ArabísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Bengalst (Indland) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t VafrasýnComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 11 - LongNamePossessive \t í PaoneCoptic month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 7 - LongName \t YakatitEthiopian month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Ctrlkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KFile metagagna- íforritComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SamaritanKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Hjálp@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 1 - LongName \t PagEthiopian month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Endurlesa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KDE broskallaþemaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Sunday \t lauSunday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t PgUpkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívefjanlegur þróaður textaritillName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Shanbe short \t JomShanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t VefselsleitariComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t DevanagariKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t GNU Lesser General Public notkunarskilmálar útgáfa 3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Kyrilískt viðauki- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 11 - LongName \t SeneEthiopian month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Font name \t Jafnbreitt@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "HTML գործիքներ \t HTML tækjaslá"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Encodings menu \t Ekki fylla skjáEncodings menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "toolbar position string \t Til hægritoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t víðdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MaltneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SinhalískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ize endingardictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 6 - LongNamePossessive \t í TobeCoptic month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "go back \t Frumstilla öll gildigo back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Time zone \t SvæðiTime zone"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 1024 bytes \t % 1 YBsize in 1024 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 5 - LongName \t TahsasEthiopian month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարThe source url of a job \t & BíðaThe source url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KDED smákökukrukkaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Stilla LILO (Linux ræsistjórann) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Devanagari útvíkkaðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Arabísk framsetningarform- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "left mouse button \t Árekstur við víðværa flýtilykla kerfisinsleft mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Kirkju- slavneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Um forritið@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SangoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 7 - LongNamePossessive \t í BhādrapadIndian National month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t OccitanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vardangevorgyan@ yahoo. com \t leosson@ frisurf. no"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Tuesday \t mánTuesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Georgískt (Proleptic) @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KRunner íforritComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SómalskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BuginísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ndebele, suðurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t JapanskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: tooltip \t Hakaðu hér við til að breyta leturstærð. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Skoða stafsetningu@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KinyarwandaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ShonaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t 60dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 1 - LongName \t KouCoptic month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Grunn- latnesktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TahitianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t með yedictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SysV- Init stjóra annállName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 4 - LongName \t JyaishthaIndian National month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 3 - ShortName \t VaiIndian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KSSL þjónseiningComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարApril \t marApril"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 12 - LongNamePossessive \t í MāghIndian National month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action Opposite to Prior \t Fyrri@ action Opposite to Prior"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Aban short \t MehAban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t LeyndarmálBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Kangxi stofnarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: shell message on appcmd -- version; do not translate 'Development Platform'% 3 application name, other% n version strings \t '% 1' vantar. @ 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text encoding:% 1 character set,% 2 encoding \t Önnur kóðun (% 1) @ item Text encoding:% 1 character set,% 2 encoding"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t YorubaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Hvít- RússneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "digit set \t Austur- arabísk- inversktdigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ընդհանուր@ action \t Miðja@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "1: the i18n' ed system error code, from errno \t Óþekkt villa1: the i18n' ed system error code, from errno"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TajikName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t UngverskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t RundiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Vista@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "October \t sepOctober"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "JavaScript- ի սխալներ \t Javaforritavillur"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 2 - ShortDayName \t SomIndian National weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t PgDownkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t LettneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Jafninginn framvísaði ekki neinu skilríkiSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Plasma smáforritName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t OghamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: button Stop find & replace \t Endurræsa@ action: button Stop find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Kóreskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t * Nýlegir litir * palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Óþekkt@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t PushtoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 9 - LongName \t MiyazyaEthiopian month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 10^6 bytes \t % 1 kBsize in 10^6 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 5 - ShortName \t KiaCoptic month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Arnar LeóssonEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t VerkefnastjóriComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՀուներենName \t GrískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 9 - ShortName \t MiyEthiopian month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 8 - ShortName \t MagEthiopian month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 3 - ShortNamePossessive \t í TeqEthiopian month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label Type of file \t & Leita@ label Type of file"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t InterlinguaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Fylla skjá@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 8 - LongName \t ĀshwinIndian National month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 6 - ShortName \t TobCoptic month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՀատկությունShahrivar short \t MorShahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 12 - ShortNamePossessive \t í MāgIndian National month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ envar/ plain \t % 1 @ envar/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Գործիքների հիմնական վահանակ@ action \t Sýna tækjaslá@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 4 - ShortName \t JyaIndian National month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian weekday 5 - LongDayName \t HamusEthiopian weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t VendaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 2 - ShortDayName \t SegEthiopian weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title: window \t Skjáborð% 1@ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vardangevorgyan@ yahoo. com \t ra@ ra. is, svanur@ tern. is, sveinki@ nett. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BamumKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Lágir StaðgenglarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 8 - ShortName \t ĀswIndian National month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Pólska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof April \t í marof April"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "1: the unknown socket address family number \t Aðgerðin er ekki studd1: the unknown socket address family number"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KTextEditor- íforritName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ subtitle/ rich \t ~% 1 ~@ subtitle/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TékkneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t VaiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "September \t ágúSeptember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Áfram um orð@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Syloti NagriKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարJumee short \t 5shJumee short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ envar/ rich \t $% 1@ envar/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KanbunKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code NotCreated \t sökkullinn er ekki tengdurSocket error code NotCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ManxName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "% 1 is the number of paths,% 2 is the list of paths (with newlines between them) \t Nefndir litir% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t LaóKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Leturstíll@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԳերմաներենName \t ÞýskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Textaklárun strenghluta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Aukalegar latneskar útvíkkanirKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t Sérsniðið@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t GjaldmiðilstáknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action End of document \t Byrjun@ action End of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t GurmukhiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ filename/ plain \t % 2 @ filename/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 5 - LongName \t KiahkCoptic month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Samsett stafmerki fyrir táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Suður- asískar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of May long \t í aprílof May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հնարավոր չէ գտնել Finger ծրագիրը, խնդրում ենք տեղադրել այն ։ \t Gat ekki fundið Finger forritið á kerfinu hjá þér, vinsamlegast settu það inn."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 7 - ShortDayName \t QedEthiopian weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Punjabi/ PanjabiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t VallónskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Grískt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^40 bytes \t % 1 TiBsize in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ndebele, norðurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Grískt og KoptísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Kyrilískt viðauki- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Hreinsiforrit HTTP skyndiminnisComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "3D Պարամետրեր \t 3D valkostir"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SinhalaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 9 - ShortName \t PamCoptic month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BihariName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 2 - ShortNamePossessive \t í ThoCoptic month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t RPM StatsName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Vistaðar Init stillingarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Hefðbundin kínverska@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Description \t ForritDescription"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 2 - LongNamePossessive \t í MeskeremEthiopian month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font \t Hallandi@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "unknown program name \t & Ræsa villuskýrslu álfunknown program name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Goes to next character \t Fyrri bókstafur í ferliGoes to next character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t OriyaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "digit set \t Devenagaridigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TifinaghKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t NauruName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Úkraínska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 2 - LongNamePossessive \t í ThooutCoptic month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՀատկությունCoptic month 3 - LongName \t PaopeCoptic month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AbkhazianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 hours \t % 1 dagar@ item: intext% 1 is a real number, e. g. 1. 23 hours"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "All of the letters of the alphabet, uppercase \t Öll dýrin í skóginum eiga að vera vinirAll of the letters of the alphabet, uppercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t HljóðfræðitáknKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK strokurKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Tai VietKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Controlkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t HópurComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary:% 1 dictionary name \t ASpell sjálfgefið@ item Spelling dictionary:% 1 dictionary name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Aðdráttur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Stafir til lýsingar myndletursKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action italicize selected text \t & Feitletra@ action italicize selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KerfisannálabirtirName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Villa við niðurhal skriftuComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Dr. Klash 'flýtilyklaskoðun@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Tataríska frá KrímName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Yi sérhljóðarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Enter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes \t SérstökEnter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 9 - LongName \t ParmouteCoptic month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t FijianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KashubianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK samhæft myndleturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Ræsistjóri (LILO) Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 1 - ShortName \t í Kouji nabotCoptic month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label \t Breyta leturfjölskyldu? @ label"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in bytes \t % 1 (% 2) size in bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 8 - ShortName \t ParCoptic month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "describes the feed of the latest posted entries \t Enginn þjónustuaðili valinn. describes the feed of the latest posted entries"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t EnchantName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t tilbrigði 2dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t LGPL v3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 7 - LongDayName \t QedameEthiopian weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Latína- 1 viðbótarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 4 - LongName \t HathorCoptic month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Hefðbundin kínverskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t GPL v3@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t GPL v2@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Setja bókamerki@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KýrílsktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "addition \t JS reiknivéladdition"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Yijing Hexagram táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t * sérsniðnir litir * palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՌուսերենName \t RússneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ýmislegt tæknilegtKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code NoError \t Óþekkt fjölskylda% 1Socket error code NoError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 12 - ShortName \t EpeCoptic month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Næsti liður í listanum@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Aban short \t í Mehof Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 4 - ShortDayName \t BudIndian National weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 10 - ShortNamePossessive \t í PasCoptic month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t RúmenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t IndónesískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Aðrar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԵստոներենName \t EistneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Program name followed by 'Add On Installer' \t Sækja nýtt flott dótProgram name followed by 'Add On Installer'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Hyperkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t GNU General Public notkunarskilmálar útgáfa 2@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Phags- paKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof May short \t í aprof May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t PauseBreakkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Ógild vefselsskriftaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t MayanmarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inlistbox Spell checker \t Stafatafla: @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Program name followed by 'Add On Uploader' \t InnihaldProgram name followed by 'Add On Uploader'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Տվյալների գործիքներComment \t GagnatólComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Arabískt viðbótarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: button \t Muna aðgerðir fyrir þessa tegund skráa@ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 5 - LongNamePossessive \t í KiahkCoptic month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KhmerName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^70 bytes \t % 1 ZiBsize in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t MalayalamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 2 - LongDayName \t PesnauCoptic weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Rússneska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KirgískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Dei long \t í Azarof Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KomiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Lyklabindingar@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t QPL útgáfa 1. 0@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Georgískt viðbótarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Endir@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Չափեր:% 1x% 2 \t Stærð:% 1x% 2"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 5 - ShortNamePossessive \t í ĀshIndian National month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ note- with- label/ plain% 1 is the note label,% 2 is the text \t Athugasemd:% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Filippínskar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font \t Skáletrað@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t LimbuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t Listrænir notkunarskilmálar (Artistic) @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font \t Hér getur þú valið leturstíl sem á að nota. @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 4 - LongDayName \t PeftoouCoptic weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label right justify \t Jafna til hægri@ label right justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: shell% 1 is cmdoption name \t Óþekkt stilling '% 1'. @ info: shell% 1 is cmdoption name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: button filter- yes \t Algjört leyndarmál@ action: button filter- yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t SjálfvirkirSvigarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Heiti:% 1@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AfrikaansName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Haltu% 1 meðan þú slærð á% 2@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríkið er útrunniðSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SwatiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hálfbreið og fullbreið formKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Dei long \t AzarDei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Spænska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Մաքրել@ action \t Hreinsa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Afturkalla@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t Regnbogalitirpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Kýrílskt viðbótarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívefjanleg myndsjáreiningName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Saturday \t fösSaturday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Til baka@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԷսպերանտոName \t EsperantoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TeluguKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu circle list style \t Diskur@ item: inmenu circle list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SundanesktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 1 - ShortNamePossessive \t Í gærCoptic month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 6 - ShortNamePossessive \t í ShrIndian National month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 6 - LongDayName \t PsoouCoptic weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Tir short \t í Khoof Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: listbox Font size \t Breyta leturstærð? @ label: listbox Font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 5 - ShortName \t TahEthiopian month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KikuyuName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱրժեքEthiopian month 12 - LongName \t HamleEthiopian month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t MongólsktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Fara að línu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t →keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Valmyndkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "December \t nóvDecember"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 1 - ShortName \t í PhālgunIndian National month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հնարավոր չէ կարդալ պատկերըThe color depth of an image \t Get ekki opnað myndinaThe color depth of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t 80dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 1 - ShortDayName \t Kouji nabotCoptic weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 8 - LongNamePossessive \t í MagabitEthiopian month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Kínverska (Hong Kong) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Auka inndrátt@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 8 - LongNamePossessive \t í ParemhotepCoptic month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t RejangKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof September \t í ágúof September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Minnka inndrátt@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ChichewaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KDE íforritsupplýsingarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KmerKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 2 - ShortNamePossessive \t í MesEthiopian month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action underline selected text \t Skáletur@ action underline selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KorsíkanskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Grískt útvíkkaðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "HSpellName \t Hunspell"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title: menu HTML frame/ iframe \t Afrita tengil@ title: menu HTML frame/ iframe"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Tabkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Viðbótar samsett stafmerkiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 9 - ShortNamePossessive \t í PamCoptic month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Գործողություն@ action \t Valkostir vistunar@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Description \t Vistar meðhöndlunarstefnu fyrir fjarlægar græjurDescription"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "shortcut- key- delimiter/ plain \t % 1 shortcut- key- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարSe shanbe short \t 2shSe shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MaoriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Պիտակ@ item: inmenu Text Completion \t Stutt sjálfvirk@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ChhattisgarhiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Miðausturlenskar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK samræmingarformKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KSystemLogComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t NotandastjóriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱրաբերենName \t ArabískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^40 bytes \t % 1 GiBsize in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "a nonexistent value of mouse button \t hægri músarhnappura nonexistent value of mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Plasma ContainmentActionsComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Jalali@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^50 bytes \t % 1 PiBsize in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Tir long \t KhordadTir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Mehr short \t ShaMehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TilbrigðaveljararKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Brasilísk portúgalska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ÚkraínskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 2 - LongNamePossessive \t í ChaitraIndian National month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t GNU General Public notkunarskilmálar útgáfa 3@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: button \t Opna '% 1'? @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 11 - LongNamePossessive \t í PaushIndian National month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Staflík táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code ConnectionTimedOut \t tengingu hafnaðSocket error code ConnectionTimedOut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info \t Opna & með% 1@ info"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "concatenation of dates and time \t Í gærconcatenation of dates and time"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԵստոներենName \t AstúrískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Document/ application separator in titlebar \t breyttDocument/ application separator in titlebar"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t NepaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 11 - LongName \t PaoneCoptic month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t LeynilegtBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BosnískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ize endingar ásamt stafmerkjumdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code Timeout \t aðgerðin er ekki studdSocket error code Timeout"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Meetei MayekKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱրժեքEthiopian month 12 - LongNamePossessive \t í HamleEthiopian month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Hijri@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KazakhName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Dei short \t í Azaof Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Afvelja@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Richard AllenEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Esckeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: intext \t % 1 sekúndur@ item: intext"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Farsi (Persneska) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 7 - ShortNamePossessive \t í YakEthiopian month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Skilgreiningar Plasma pakkauppbyggingarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Portúgalska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu Text Completion \t Sjálfvirk@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KDE einingName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 5 - ShortDayName \t GurIndian National weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "1, 27Numeric IDs of scripts for font previews \t Öll dýrin í skóginum ættu að vera vinir1, 27Numeric IDs of scripts for font previews"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t HereroName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելEthiopian month 2 - ShortName \t MesEthiopian month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 10 - LongName \t GenbotEthiopian month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "show help \t Hreinsa gögn í inntakssvæðishow help"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Íforrit fyrir vafraendurbæturName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t GujaratiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Finna fyrra@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vardangevorgyan@ yahoo. com \t sveinki@ nett. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Prófun á KnotifyName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 minutes \t % 1 klukkustundir@ item: intext% 1 is a real number, e. g. 1. 23 minutes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t & Biðlari: @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t með yodictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KIO skráaeiningComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՀինդիName \t HindiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t AnnaðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 12 - LongNamePossessive \t í EpepCoptic month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Կարգավորել ցանցի պարամետրերըName \t Umsjón netstillingaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "July \t júnJuly"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t (C) 2005 Jeroen Wijnhoutpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Ívafinn textaritillComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary:% 1 dictionary name,% 2 file name \t ISpell sjálfgefið@ item Spelling dictionary:% 1 dictionary name,% 2 file name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KDED einingName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t ÓflokkaðBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TalnasniðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t NKoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BúrmenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TeluguName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 1 - ShortNamePossessive \t TkyriakēEthiopian month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "replace this with information about your translation team \t Ótilgreintreplace this with information about your translation team"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ցանցային պարամետրերComment \t NetstillingarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Litháíska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 4 - ShortNamePossessive \t í HatCoptic month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "No border line \t Ofan og niður, hægri til vinstriNo border line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TwiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t 40dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t DanskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 10 - ShortName \t GenEthiopian month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Líma@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Չօգտագործել Xvfb \t Ekki nota Xvfb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Sniðmálari@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաղորդագրությունը ստացված էComment \t Skilaboð móttekinComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Sameinuð sérhljóðamál kanadískra frumbyggjaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 11 - ShortName \t PanCoptic month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Hvít- Rússneska latneskName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 4 - LongDayName \t BudhavãraIndian National weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SamsetningarmerkiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՖիներենName \t FinnskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t RúnirKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Hér getur þú valið leturfjölskyldu sem á að nota. @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Norska (nýnorska) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t KFile einingComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TagalogKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "digit set \t Arabísk- inversktdigit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Renna að@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Katakana hljóðfræðiviðbæturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "evaluation \t - evaluation"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Sjálfgefin -% 1 [% 2] @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Plasma hreyfingastjóriComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t GNU Lesser General Public notkunarskilmálar útgáfa 2@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MalayalamName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title: window \t Um KDE@ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 11 - LongNamePossessive \t í SeneEthiopian month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t DzongkhaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱդրբեջաներենName \t AdzerbadjanskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 12 - LongName \t MāghIndian National month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code InProgress \t tengingin rann út á tímaSocket error code InProgress"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KUserGenericName \t KNotandiGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 3 - LongName \t TequemtEthiopian month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^20 bytes \t % 1 KiBsize in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Պիտակ% 1 is the number of ambigious shortcut clashes (hidden) \t Flýtilyklasamsetning '% 1' fyrir aðgerðina '% 2'% 1 is the number of ambigious shortcut clashes (hidden)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label left justify \t & Vinstrijafna@ label left justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license \t LGPL v2@ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item/ rich \t *% 1@ item/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Prenta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Khordad short \t OrdKhordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KóreskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t LingalaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "toolbar position string \t Afstaðatoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t VíetnamskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of Farvardin short \t Yaum al- Ahadof Farvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TigrinyaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MarathiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SlóvenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KScan myndlesariName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Reload KDE configuration messagebox \t Viltu endurhlaða KDE stillingunum? Reload KDE configuration messagebox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t HollenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SaurashtraKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Առաջարկների ցուցակA link to the description of this Get Hot New Stuff item \t Nánar um% 1A link to the description of this Get Hot New Stuff item"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Letur: @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ChuvashName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 3 - LongNamePossessive \t í VaishākhIndian National month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Metakeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Byrjun línu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Aftur á bak um orð@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title/ rich \t ==% 1 ==@ title/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարOrdibehesht short \t FarOrdibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t Oxygen litirpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KPackageName \t KPackageGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 3 - ShortNamePossessive \t í VaiIndian National month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Háir StaðgenglarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ subtitle/ plain \t % 1 @ subtitle/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of August \t í júlof August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t OromoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Plasma smáforrit fyrir skriftunComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 1 - LongNamePossessive \t í PhāIndian National month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TíbetsktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Virkja fyrri flipa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Winkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Yi atkvæðiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Vedískar viðbæturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 2 - ShortName \t ChaIndian National month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t CornishName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BretánskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Pidgin broskallaþemaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TónbreytarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 10 - LongNamePossessive \t í AgrahayanaIndian National month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t & Undirstrika@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Finna@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: intext% 1 is a real number, e. g. 1. 23 seconds \t % 1 mínútur@ item: intext% 1 is a real number, e. g. 1. 23 seconds"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t PrintScreenkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ol ChikiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 6 - ShortNamePossessive \t í TobCoptic month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Yfirstrika@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t QuechuaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KróatískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t LisuKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t Þessu forriti er dreift skv. skilmálum% 1. @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Skjóta inn skráComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t JiddískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 3 - ShortDayName \t MakEthiopian weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "NAME OF TRANSLATORS \t Heiti skrár til að sendaNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Sjálfvirkar stillingar vefselsComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t tilbrigði 0dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Velja letur@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Plasma gagnavélComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ message/ plain \t $% 1 @ message/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 13 - ShortNamePossessive \t í MeoCoptic month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TamilKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Almenn greinamerkiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "& ՍերտիֆիկատNAME OF TRANSLATORS \t & SkilríkiNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 12 - ShortName \t MāgIndian National month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Viðbótar stærðfræðiaðgerðatáknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Vesturevrópskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t IdoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ title: group \t Finna texta@ title: group"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "GenericName \t Tól til að skoða kerfisannála (system logs) GenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KannadaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KúrdískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Fyrri textaklárunarmöguleiki@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t án stafmerkjadictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t ÚtflytjariComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KDE gagnatólName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 10 - ShortName \t AgrIndian National month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SysV- Init խմբագրիչComment \t SysV Init- stjóriComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՀայերենName \t ArmesktName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Auka greinamerkiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 6 - LongName \t ShrāvanaIndian National month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t miðlungsdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 6 - LongName \t TobeCoptic month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: inmenu \t & Opna með% 1@ action: inmenu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BúlgarskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Argument is application name \t Forsýna prentunArgument is application name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Latínuviðauki- DKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "toolbar position string \t Efsttoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 11 - ShortNamePossessive \t í SenEthiopian month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Shahrivar short \t í Morof Shahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Տեղեկություն փաստաթղթի մասին@ action \t Áfram í skjali@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Endurtaka@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԻսպաներենName \t SpánskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "March long \t febrúarMarch long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t PaliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Júlianskt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 6 - ShortDayName \t SukIndian National weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 9 - LongName \t KārtikIndian National month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "PBMName \t PNMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Spólu afritunartólComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: tooltip \t Hakaðu hér við til að breyta leturstíl. @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 1 - ShortDayName \t PhālgunIndian National weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t MyndstýringarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KannadaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t InterlingueName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելCoptic month 13 - LongNamePossessive \t í MesoreCoptic month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BaskamálName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "& Խմբագրել@ title: menu Game move \t Sýsl@ title: menu Game move"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 1 - LongNamePossessive \t í KouCoptic month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "the price of a download item, parameter 1 is the currency, 2 is the price \t Gat ekki náð í stöðu á reikningi. 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t kioslave fyrir gagnaslóðir (rfc2397) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Finna næsta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t UrduName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Slóvenska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 2 - ShortDayName \t PesCoptic weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "A sentence that uses all of the letters of the alphabet \t Engir stafir fundust. A sentence that uses all of the letters of the alphabet"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Fyrri liður í listanum@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu Text Completion \t Fellilisti og sjálfvirkni@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 5 - ShortName \t ĀshIndian National month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CherokeeKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font \t Venjulegt@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 6 - LongNamePossessive \t í TerEthiopian month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t GeorgísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Hebreskt@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Dummy MetaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Dei short \t AzaDei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 7 - LongNamePossessive \t í MeshirCoptic month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BengalstName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԻտալերենName \t ÍtalskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "normal severity \t Alvarlegtnormal severity"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Tai ThamKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BengaliKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Աշխատացնել միայն HTML տեստերը \t Keyra bara HTML próf"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ժամ և ԱմսաթիվComment \t Tími og dagsetningComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code RemotelyDisconnected \t óþekkt/ óvænt villa kom uppSocket error code RemotelyDisconnected"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Valensíska (suður- katalónska) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Adar II@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Altkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Suðaustur- asískar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Python kóðaprófun/ línuendingarComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vgevorgyan@ vtgsoftware. com \t ra@ ra. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary name.% 1- language,% 2- country and% 3 variant name \t útvíkkaðdictionary name.% 1- language,% 2- country and% 3 variant name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 5 - LongDayName \t PtiouCoptic weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Opna nýlegt@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 5 - ShortDayName \t PtiCoptic weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Esfand short \t í Bahof Esfand short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Khmer- táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 12 - ShortNamePossessive \t í EpeCoptic month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Title of the notified event \t StaðaTitle of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t XhosaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hangul atkvæðiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Georgískt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "NAME OF TRANSLATORS \t Stillingaeining sem á að opnaNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KFileWrite íforritName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Lág- sorbianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TagbanwaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ note/ rich \t Athugasemd:% 1@ note/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "May long \t aprílMay long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BlokkareiningarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Արտածումը դիտել HTML տեսքով \t Sjá HTML úttak"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Senda villutilkynningu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Næsta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ստուգել@ item Font name \t Serif@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Yfir - og undirskriftKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 8 - ShortNamePossessive \t í ĀswIndian National month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t OriyaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Suð- austur evrópskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Հաշվի չառնելCoptic month 13 - ShortName \t MeoCoptic month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 7 - LongDayName \t SanivãraIndian National weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "toolbar position string \t Til vinstritoolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ýmis tákn og örvarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code NotBound \t sökkullinn er þegar tilSocket error code NotBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic weekday 1 - LongDayName \t TkyCoptic weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MalagasyName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ýmis táknKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 3 - LongNamePossessive \t í PaopeCoptic month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 7 - ShortName \t BhāIndian National month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԱնգլերենName \t EnskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Afrískar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Tir short \t KhoTir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 10 - ShortNamePossessive \t í AgrIndian National month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KatalánskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "August \t júlAugust"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t SyriacKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TsongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AmharicName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Svæði til einkanotaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Í tugagildi: KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Կապը խզված է։ NAME OF TRANSLATORS \t Aftengdur. NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t ArmensktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Umbeðið letur@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Tékkneska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BuhidKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Stillingar prentaraComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t ÖrvarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t ZúlúComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարFebruary \t janFebruary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: intable Action name in shortcuts configuration \t Stilla@ item: intable Action name in shortcuts configuration"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t HebreskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 3 - LongDayName \t MaksegnoEthiopian weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Texti & upplitun... @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ընդհանուր@ item Text character set \t Alheims@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KínverskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KalaallisutName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TamílskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Ordibehesht short \t í Farof Ordibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Norður SothoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 4 - ShortName \t HedEthiopian month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Opposite to Previous \t & Sýna vísbendingar í ræsinguOpposite to Previous"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Գործողություն@ label File name \t & Opna@ label File name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t RúmeníaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Tyrknenskt@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 13 - ShortNamePossessive \t í NehEthiopian month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Líma vali@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "% 1 is the number of conflicts (hidden),% 2 is the key sequence of the shortcut that is problematic \t Flýtilykill '% 1' í forritinu% 2 fyrir aðgerðina% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Ungverkst@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 1 - ShortName \t í PagumenEthiopian month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Hvítrússneskt@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ise endingardictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Microsoft Media Server samskiptareglaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t WolofName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 10 - LongNamePossessive \t í GenbotEthiopian month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Kayah LiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Umlykjandi CJK stafir og mánuðirKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 5 - ShortNamePossessive \t í TahEthiopian month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Franska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Lóðrétt formKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 11 - ShortNamePossessive \t í PauIndian National month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof July \t í júnof July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 7 - ShortDayName \t PsaCoptic weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BalísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item/ plain \t % 1 @ item/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարDo shanbe short \t EsfandDo shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Shiftkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SænskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vgevorgyan@ vtgsoftware. com \t ra@ ra. is, logi@ logi. org, pjetur@ pjetur. net, leosson@ frisurf. no, svanur@ tern. is, sveinki@ nett. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t GagnaprófunarvélName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Wednesday \t þriWednesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TælenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ChamorróName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Show the author of this item in a list \t Hleð inn forsýn... Show the author of this item in a list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TswanaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 11 - ShortName \t PauIndian National month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 1 - LongName \t PhāIndian National month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Algeng indversk talnasniðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Skipta um tungumál forrits@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Vísbending dagsins@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ interface/ rich \t _BAR_% 1_BAR_@ interface/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Serbnesk latínaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Stilla og tímasetja verkName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Baltneskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK samræmt myndleturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ message/ rich \t /% 1 / @ message/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inlistbox Spell checker \t Hspell @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t LaoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Eþíópískt viðbótarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code NotSupported \t það kom upp netvillaSocket error code NotSupported"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Sótt vefselsskrifta er ógildName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t QImageIOHandler íforritName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríkið er ekki giltSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hangul JamoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Hætta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Մաքրել@ title: menu \t Hreinsa texta@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code WouldBlock \t sökkull hefur ekki verið útbúinnSocket error code WouldBlock"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Author name in about dialog \t Vinsamlega sendu villuskýrslur til% 2. @ item Author name in about dialog"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Superkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t % 1% 2@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 8 - LongNamePossessive \t í ĀshwinIndian National month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Ræsing KDE stillingaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "palette name \t Konunglegir litirpalette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KatakanaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "subtraction \t ACsubtraction"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Norður Saami@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Font style \t Raunletur@ item Font style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t LimburgianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Description of the notified event \t TitillDescription of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 8 - ShortNamePossessive \t í ParCoptic month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Þýska (ný stafs.) @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Adium broskallaþemaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Vardan GevorgyanEMAIL OF TRANSLATORS \t Richard Allen, Logi Ragnarsson, Pjetur G. Hjaltason, Arnar Leósson, Svanur Pálsson, Sveinn í FelliEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Aðlögun KHTML- endingaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t GlagolitísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu Text Completion \t Handvirk@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríkið á ekki við uppgefinn þjónSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SerbneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name_BAR_standard desktop component \t Texti- í- tal þjónusta með D- Bus viðmótiName_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 6 - LongDayName \t SukravãraIndian National weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Email receiver address \t Netfangið sem þessi villulýsing verður send á. Email receiver address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu Text Completion \t Textaklárun@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian weekday 1 - ShortDayName \t PagumenEthiopian weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 1000 bytes \t % 1 Bsize in 1000 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 9 - LongNamePossessive \t í MiyazyaEthiopian month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Dock this window \t FrystaDock this window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Աշխատացնել միայն JS տեստերը \t Keyra bara JS próf"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Numbers and characters \t abcdefghijklmnopqrstuvwxyzNumbers and characters"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t Q almennir skilmálar (QPL) @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 9 - ShortName \t KārIndian National month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Flytur ljómaða skjalið í HTMLName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t SpjallforritComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t HópurinnName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Letur@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code AddressInUse \t uppfletting heitis brástSocket error code AddressInUse"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National weekday 7 - ShortDayName \t SanIndian National weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t XMPP broskallaþemaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: button \t & Opna með... @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Serbneska Ijekavian latnesktName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t IPA framlengingarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^60 bytes \t % 1 EiBsize in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Leturstíll: @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Upp@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Norska (bókmál) Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "No shortcut defined \t Sjálfgefið: No shortcut defined"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TíbeskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "First letter of the alphabet (in upper then lower case) \t ÓþekktFirst letter of the alphabet (in upper then lower case)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KDE stillingaeiningName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof February \t í janof February"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KCertPartName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Eyða orði til hægri@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Returnkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AssameseName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of Tir long \t í Khordadof Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 9 - ShortNamePossessive \t í KārIndian National month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "EMAIL OF TRANSLATORS \t Richard Allen, Arnar Leósson, Sveinn í FelliEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t JavanesktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t þröngdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívefjanlegur einkaskírteina- stjóriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 9 - ShortNamePossessive \t í MiyEthiopian month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t HiraganaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ise endingar ásamt stafmerkjumdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "What the user inputs now will be taken as the new shortcut \t Lyklasamsetningin '% 1' er nú þegar í notkun fyrir stöðluðu aðgerðina \"% 2\" sem mörg forrit nota. Vilt þú í alvörunni nota hana jafnframt sem víðværan flýtilykil? What the user inputs now will be taken as the new shortcut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t ThaanaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Næsti textaklárunarmöguleiki@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font \t Feitletrað@ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Ýmis stærðfræðitákn- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 7 - LongNamePossessive \t í YakatitEthiopian month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Eyða orði til vinstri@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívafin HTML- skoðunar einingName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Myndlestur (OCR) KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t tilbrigði 1dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof December \t í nóvof December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Calendar system \t Indverskt@ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 3 - ShortDayName \t PshCoptic weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 1 - ShortNamePossessive \t SunnudagurIndian National month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Esfand \t BahEsfand"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Samsetning hálfmerkjaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t fjarlægi miðillinn lokaði tengingunniSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 2 - ShortName \t ThoCoptic month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t Tvöföld þykk línaBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 2 - ShortNamePossessive \t í ChaIndian National month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code NetFailure \t aðgerð þegar í vinnsluSocket error code NetFailure"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 2 - LongName \t ChaitraIndian National month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 8 - LongName \t MagabitEthiopian month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KashmiriName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TurkmenName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 6 - LongName \t TerEthiopian month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t PrtScrkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Geymslubakendi fyrir KConfigName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t GujaratiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "middle mouse button \t vinstri músarhnappurmiddle mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t BislamaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ email/ rich \t & lt;% 1gt; @ email/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label: checkbox \t Tegund:% 1@ label: checkbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Serbneska IjekavianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "vardangevorgyan@ yahoo. com \t ra@ ra. is"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ emphasis- strong/ rich \t **% 1 ** @ emphasis- strong/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 6 - ShortName \t ShrIndian National month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Renna frá@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Sænska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Sotho, suðurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Column number% 1 \t & LjúkaColumn number% 1"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ filename/ rich \t % 1@ filename/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ shortcut/ plain \t % 1 @ shortcut/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Ívefjanleg myndsjáName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 3 - LongName \t VaishākhIndian National month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MalayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "home page \t Gölluð flýtilyklasamsetning fannsthome page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "go forward \t Fara aftur um eitt skrefgo forward"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code ConnectionRefused \t aðgerðin myndi stöðvaSocket error code ConnectionRefused"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 4 - LongNamePossessive \t í JyaishthaIndian National month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t NdongaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code AlreadyBound \t vistfangið er þegar í notkunSocket error code AlreadyBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t BopomofoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարFarvardin short \t í EsfFarvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Tengja@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Latínuviðauki- CKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t Gat ekki ræst KDE hjálparkerfiðdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Character \t Unicode kóðapunktur: Character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Örvar- B auknarKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ՖրանսերենName \t FranskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Banner page \t StaðlaðBanner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inlistbox Spell checker \t Aspell @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label stroke color \t Textalitur... @ label stroke color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ warning- with- label/ plain% 1 is the warning label,% 2 is the text \t Aðvörun:% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu no list style \t Stíll lista@ item: inmenu no list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Þýska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ info: whatsthis \t Stærð@ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AlbanskurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Գործիքների հիմնական վահանակ@ action \t Stilla tækjaslár@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 7 - ShortNamePossessive \t í BhāIndian National month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ամերիկյան ԱնգլերենName \t Bandarísk enskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 5 - LongDayName \t GuruvãraIndian National weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t HausaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ÚsbekískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AvestanName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Coptic month 12 - LongName \t EpepCoptic month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t með yeyodictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inlistbox Spell checker \t Alþjóðlegt Ispell @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SanskrítName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SwahiliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t HanunooKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Danska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item font size \t Feit - og skáletrað@ item font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t PortúgalskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "նՇել khtml- ի թղթապանակը... \t Skilgreindu möppu fyrir khtml..."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 4 - LongName \t HedarEthiopian month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "the 2nd argument is a list of name+address, one on each line \t Qt:% 1 KDE þróunarumhverfi:% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԼիտվերենName \t LitháískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK samhæfniKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 3 - ShortName \t TeqEthiopian month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ise endingar án stafmerkjadictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action Go to main page \t Skipta út@ action Go to main page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Low SaxonName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Japanskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t GeorgískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label justify fill \t & Jafna@ label justify fill"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ warning/ plain \t % 1:% 2@ warning/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Azar short \t AbaAzar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MaithiliName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 13 - LongName \t NehaseEthiopian month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Smá formtilbrigðiKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t TælensktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 13 - LongNamePossessive \t í NehaseEthiopian month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Villa við túlkun skriftuComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Einfölduð kínverskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Íforrit fyrir stillingarforritName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Veldu núverandi dag@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Text character set \t Mið- evrópskt@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic weekday 6 - ShortDayName \t PsoCoptic weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Socket error code AlreadyCreated \t sökkullinn er þegar tengdurSocket error code AlreadyCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Evrópsk stafrófKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t GuaraniName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t KSSL þjónseining fyrir KDEDName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t - ize endingar án stafmerkjadictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Verb \t Frumstilla uppsetninguVerb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԹուրքերենName \t TyrkneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ warning/ rich \t AÐVÖRUN:% 1@ warning/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 1 - LongDayName \t RavIndian National weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t & Letur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item Spelling dictionary \t Slóvanska@ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu disc list style \t Enginn@ item: inmenu disc list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Háir staðgenglar til einkanotaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Bilslákeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MoldóvískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Tengiliðurinn er tengdur núnaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Íforrit fyrir 'endurnefna' gluggannName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t LepchaKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Plasma- ի աշխատանքային տարածք \t Plasma vinnurýmd"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարYek- shanbe short \t shnYek- shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t SafnComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 7 - LongName \t BhādrapadIndian National month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t UighurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t CJK samræmt myndletur útvíkkun AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 3 - ShortNamePossessive \t í PaoCoptic month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Plasma veggfóðurName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Monday \t desemberMonday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 2 - LongDayName \t SegnoEthiopian weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ÍslenskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "of November \t í oktof November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 5 - LongNamePossessive \t í TahsasEthiopian month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 8 - LongName \t ParemhotepCoptic month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t FrísneskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 10 - LongName \t PashonsCoptic month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Skilríki vottunarstöðvarinnar (CA) er ekki giltSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian month 3 - LongNamePossessive \t í TequemtEthiopian month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 9 - LongNamePossessive \t í ParmouteCoptic month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item license (short name) \t BSD notkunarskilmálar@ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Litur@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 5 - LongNamePossessive \t í ĀshādhaIndian National month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 6 - LongDayName \t ArbEthiopian weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Sem hreinn texti@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 5 - ShortNamePossessive \t í KiaCoptic month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Framlenging á skriftunarmál fyrir PlasmaComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu numbered lists \t Kassi@ item: inmenu numbered lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "SSL error \t Engin villaSSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t TatarName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action Beginning of document \t Heim@ action Beginning of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարPanj shanbe short \t 4shPanj shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 6 - LongNamePossessive \t í ShrāvanaIndian National month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t SardínískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 3 - ShortName \t PaoCoptic month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ option: check \t Innsláttur lykilorðs@ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Opposite to Back \t Lágur styrkur lykilorðsOpposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t AltGrkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Braille blindraletursmynsturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Mið- asískar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Hvað er þetta@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Կարգավորել TCP/ IP պարամետրերըName \t Umsjón TCP/ IP stillingaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Ný@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Latínuviðauki- BKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "dictionary variant \t með stafmerkjumdictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu lowercase abc lists \t 123@ item: inmenu lowercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t skráaeiningComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Գույն: NAME OF TRANSLATORS \t Litur: NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Framsetningarform í stafrófsröðKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Myanmar viðauki- AKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Azar short \t í Abaof Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ placeholder/ plain \t % 1 @ placeholder/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Ethiopian weekday 4 - LongDayName \t RobEthiopian weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Klippa@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t Hangúl samhæfanlegt JamoKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 11 - LongName \t PaushIndian National month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t NavajoName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Custom color \t - nafnlaust- Custom color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t MakedónískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարChahar shanbe short \t 3shChahar shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Endir línu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Inskeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "short \t % 1 [% 2] short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharSelect section name \t Austur- asískar skrifturKCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action: intoolbar Text label of toolbar button \t Festa staðsetningu tækjasláa@ action: intoolbar Text label of toolbar button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Opposite to Back \t Til & bakaOpposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ item: inmenu square list style \t Hringur@ item: inmenu square list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t GelískaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարCoptic month 4 - LongNamePossessive \t í HathorCoptic month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National month 10 - LongName \t AgrahayanaIndian National month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Sjálfvirkur bókamerkjariComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t PólskaName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t OssetianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Setja inn lárétta línu@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "keyboard- key- name \t Píla niðurkeyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարEthiopian month 12 - ShortNamePossessive \t í HamEthiopian month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t Upper SorbianName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t HljóðfræðiviðbæturKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Indian National weekday 3 - ShortDayName \t MañIndian National weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t ShindiName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "size in 2^30 bytes \t % 1 MiBsize in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Name \t AfarName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Program name, version and KDE platform version; do not translate 'Development Platform' \t % 1 Útgáfa% 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-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "August long \t júlíAugust long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "KCharselect unicode block name \t KoptísktKCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "ԴադարIndian National month 4 - ShortNamePossessive \t í JyaIndian National month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Դադարof Mehr short \t í Shaof Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ label Action tooltip in toolbar editor, below the action list \t Aðgerðalisti:% 1@ label Action tooltip in toolbar editor, below the action list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Comment \t Sonnet stafsetningarbiðlarinnComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "Freeze the window geometry \t LokaFreeze the window geometry"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/hy-is.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "hy - is", "text": "@ action \t Lágletur@ action"}
|