File size: 239,999 Bytes
6698bb6 |
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 |
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MarataName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TurkmenaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CvanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HirimotuaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fallisto & & aŭtomata@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ItalaName \t ԻտալերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "mezadictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Blokecaj elementojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "nekonata aŭ neatendita eraro okazisSocket error code RemotelyDisconnected \t Socket error code RemotelyDisconnected"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konservi Opciojn@ action \t Գործողություն@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "YakatitEthiopian month 7 - LongName \t Ethiopian month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Menuakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hangulaj silabojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Japana@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Winkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OkcitanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Norvega@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PhālgunIndian National month 1 - ShortName \t ԴադարIndian National month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HamleEthiopian month 12 - LongName \t ԱրժեքEthiopian month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RumanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordi mesaĝojnState of the notified event \t State of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SomIndian National weekday 2 - ShortDayName \t Indian National weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JanFebruary \t ԴադարFebruary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Altaj surogatojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Adium Mien- etosoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "sen akcentojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KanbunaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nova Tai LueKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RuandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sonnet- literumila klientoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TkyCoptic weekday 1 - LongDayName \t Coptic weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AvestaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "pedrotpmx@ wanadoo. fr \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KomiaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Yaum al- Ahadof Farvardin short \t of Farvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉu vi volas relegi la agordodosieron? Reload KDE configuration messagebox \t Reload KDE configuration messagebox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TifinagaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 kiBsize in 10^6 bytes \t size in 10^6 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sekva@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sudorient- Aziaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "3shChahar shanbe short \t ԴադարChahar shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Grasa@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "5shJumee short \t ԴադարJumee short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Serifa@ item Font name \t Ստուգել@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NKo- aKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "~% 1 ~@ subtitle/ rich \t @ subtitle/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kanĝi- radikalojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LisuKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LaosaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OromaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HatCoptic month 4 - ShortNamePossessive \t ԴադարCoptic month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ktrlkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aŭtomata prokuragordoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MeoCoptic month 13 - ShortName \t Հաշվի չառնելCoptic month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Defaŭlta: No shortcut defined \t No shortcut defined"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hebrea@ item Calendar system \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AbaAzar short \t Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "IslandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "'% 1' mankas. @ info: shell message on appcmd -- version; do not translate 'Development Platform'% 3 application name, other% n version strings \t @ 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/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Malfermi per '% 1' @ info \t @ info"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ subtitle/ plain \t @ subtitle/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GlagolicaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fonetikaj etendaĵoj por strekaj kanaojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TobeCoptic month 6 - LongNamePossessive \t ԴադարCoptic month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Abaof Azar short \t Դադարof Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HTML- rigarda komponantoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Marof April \t Դադարof April"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PagEthiopian month 1 - LongName \t ԴադարEthiopian month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Mezeŭropa@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AmharaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉu ŝanĝi la tiparofamilion? @ label \t @ label"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HamEthiopian month 12 - ShortNamePossessive \t ԴադարEthiopian month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigita Ĝava rigardilo de apletojName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparogrando: @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "*% 1@ item/ rich \t @ item/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "==% 1 ==@ title/ rich \t @ title/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KoptaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Lanĉi nur HTML- testojn \t Աշխատացնել միայն HTML տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Uzbeka (Cirila) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NjanĝaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GPL v3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Plasma laborspaco \t Plasma- ի աշխատանքային տարածք"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EsfandDo shanbe short \t ԴադարDo shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDED- kuketotraktila moduloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KouCoptic month 1 - LongName \t Coptic month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "* Laste elektitaj koloroj * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LimburgaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AreoTime zone \t Time zone"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Arabaj prezentformoj- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Spacostangokeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ArabaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Grasa kursiva@ item font size \t @ item font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kolorozo:% 1 The dimensions of an image \t Խորություն:% 1 The dimensions of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latina etendita- DKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Angla (Brita) Name \t Բրիտանական ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Belorusa (Latina) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Slovenia@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Noto:% 1@ note/ rich \t @ note/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SegEthiopian weekday 2 - ShortDayName \t Ethiopian weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EstonaName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EnchantName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RusaName \t ՌուսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LGPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 KiBmemory size in 2^20 bytes \t memory size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SundaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "XML- decimala ento: KCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kursiva@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MagEthiopian month 8 - ShortNamePossessive \t ԴադարEthiopian month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Trovi sekvan@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el KiahkCoptic month 5 - LongNamePossessive \t ԴադարCoptic month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el GenEthiopian month 10 - ShortNamePossessive \t ԴադարEthiopian month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AprMay short \t May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latin- 1 suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latina etendita- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne eblis konstrui valoronthe price of a download item, parameter 1 is the currency, 2 is the price \t 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/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hispana@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 (% 2) @ command- with- section/ rich% 1 is the command name,% 2 is its man section \t @ command- with- section/ rich% 1 is the command name,% 2 is its man section"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FarOrdibehesht short \t ԴադարOrdibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SiriaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FiĝiaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ProkuriloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "iCalendarComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elektu tion por ŝanĝi la agordon de la tiparfamilio. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el KārtikIndian National month 9 - LongNamePossessive \t ԴադարIndian National month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el SeneEthiopian month 11 - LongNamePossessive \t ԴադարEthiopian month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Araba suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaushIndian National month 11 - LongName \t ԴադարIndian National month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SvahilaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KanaraKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FebruaroMarch long \t March long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- evaluation \t evaluation"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Grasa@ action italicize selected text \t @ action italicize selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EŭskaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "InterlingveoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nomo:% 1 \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TirEthiopian month 6 - LongNamePossessive \t ԴադարEthiopian month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1:% 2@ link- with- description/ plain% 1 is the URL,% 2 is the descriptive text \t @ link- with- description/ plain% 1 is the URL,% 2 is the descriptive text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Kliento: @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- kongruecaj ideogramojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VolapukoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplementaj matematikaj operacisimbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉina, simpligitaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ideografiaj priskribosignojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne povis trovi la programon \"perl\" en via sistemo, bonvolu instali ĝin. \t Հնարավոր չէ գտնել Perl ծրագիրը, խնդրում ենք տեղադրել այն ։"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aktivigi sekvan langeton@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MakedonaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Cirklo@ item: inmenu square list style \t @ item: inmenu square list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Qt:% 1 KDE programada platoformo:% 2% 3:% 4 the 2nd argument is a list of name+address, one on each line \t the 2nd argument is a list of name+address, one on each line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tie ĉi vi povas elekti la uzotan tiparfamilion. @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "IndoneziaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- nenomita- Custom color \t Custom color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Vortkompletigo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JidaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "QedameEthiopian weekday 7 - LongDayName \t Ethiopian weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Yijing- I Ĉing- simbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fonetikaj simbolojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BislamaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈinaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Cirila etendita- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Greka kaj koptaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "kun yedictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "konekto transtemplimiĝisSocket error code InProgress \t Socket error code InProgress"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Gravanormal severity \t normal severity"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TaĝikaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordi@ item: intable Action name in shortcuts configuration \t @ item: intable Action name in shortcuts configuration"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Janof February \t Դադարof February"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FermiFreeze the window geometry \t Freeze the window geometry"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "konekto estas rifuzata aktiveSocket error code ConnectionTimedOut \t Socket error code ConnectionTimedOut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de KārIndian National month 9 - ShortNamePossessive \t ԴադարIndian National month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TurkaName \t ԹուրքերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ParCoptic month 8 - ShortName \t ԴադարCoptic month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OrijaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Brazile portugala@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Rusa@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Raporti cimon@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaopeCoptic month 3 - LongName \t ՀատկությունCoptic month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DingbatsKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Helpo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ndebela, nordaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 GiBmemory size in 2^40 bytes \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplementaj sagoj- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TagbanvaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NavahaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 shortcut- key- delimiter/ plain \t shortcut- key- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TahitiaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Plasma Datuma MotoroComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el VaiEthiopian month 7 - LongNamePossessive \t Ethiopian month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PhālgunIndian National weekday 1 - ShortDayName \t Indian National weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de VaiIndian National month 3 - ShortNamePossessive \t ԴադարIndian National month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ParmouteCoptic month 9 - LongName \t ԴադարCoptic month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "UzantoadministriloGenericName \t KUserGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordomoduloj rulendajNAME OF TRANSLATORS \t NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EpepCoptic month 12 - LongName \t Coptic month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ol ChikiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "“% 1 ” @ icode/ rich \t @ icode/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BudhavãraIndian National weekday 4 - LongDayName \t Indian National weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Trovi tekston@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Forigi sekvan vorton@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AgrahayanaIndian National month 10 - LongName \t Indian National month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NehaseEthiopian month 13 - LongName \t Ethiopian month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MesEthiopian month 2 - ShortName \t Հաշվի չառնելEthiopian month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TataraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Klavkombinoj@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NeklasifikitaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MañgalvãIndian National weekday 3 - LongDayName \t Indian National weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fakta tiparo@ item Font style \t @ item Font style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MorShahrivar short \t ՀատկությունShahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HanunoaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BugiaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "pedrotpmx@ wanadoo. fr \t vgevorgyan@ debian. am"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BirmaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TviaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Relegi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Morof Shahrivar short \t Դադարof Shahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TeluguaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Forigi antaŭan vorton@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BildciferecigoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pierre- Marie PédrotEMAIL OF TRANSLATORS \t Vardan Gevorgyan"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KoreaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Birma etendita- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TajaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Variaĵaj elektilojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sekva kompletigaĵo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĝavaskriptaj eraroj \t JavaScript- ի սխալներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SukravãraIndian National weekday 6 - LongDayName \t Indian National weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el ParCoptic month 8 - ShortNamePossessive \t ԴադարCoptic month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Meetei MayekKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "kun yodictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Matematikaj operacisimbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplemento al kunligaj diakritaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pri aplikaĵo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GenbotEthiopian month 10 - LongName \t Ethiopian month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDE- datumiloName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Malfermi per '% 1' @ action: inmenu \t @ action: inmenu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el ThoCoptic month 2 - ShortNamePossessive \t ԴադարCoptic month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "icalendar; kmymoneyComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JyaIndian National month 4 - ShortName \t Indian National month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ValutsimbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PhāIndian National month 1 - LongName \t Indian National month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agolisto:% 1@ label Action tooltip in toolbar editor, below the action list \t @ label Action tooltip in toolbar editor, below the action list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordu LILOn (la Linukslanĉilon) Name \t Կարգավորել ցանցի պարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaoneCoptic month 11 - LongName \t ԴադարCoptic month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ŜarĝoProgram name followed by 'Add On Installer' \t Program name followed by 'Add On Uploader'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LuksemburgaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 EBmemory size in 2^60 bytes \t memory size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "2shSe shanbe short \t ԴադարSe shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "etenditadictionary name.% 1- language,% 2- country and% 3 variant name \t dictionary name.% 1- language,% 2- country and% 3 variant name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Malfermi per... @ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HedEthiopian month 4 - ShortName \t Ethiopian month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 & lt;% 2gt; @ email- with- name/ rich% 1 is name,% 2 is address \t @ email- with- name/ rich% 1 is name,% 2 is address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ŝajnaj metadatumojComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pola@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Namserĉo fiaskisSocket error code AddressInUse \t Socket error code AddressInUse"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GalegaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RobEthiopian weekday 4 - LongDayName \t Ethiopian weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈamoraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KlasifikitaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SekretaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KFileWrite- kromprogramoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SpecialaĵojEnter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes \t Enter search patternEnter messageItalic placeholder text in line edits: 0 no, 1 yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KatalunaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LunTuesday \t Tuesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Angla (Usona) Name \t Ամերիկյան ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Adapti al paĝalteco@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Vidi per tuŝo Parto \t SeebyTouchPart"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Reveni@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KonfidencaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EsperantoName \t ԷսպերանտոName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TibetaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EtiopaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tradicia ĉina@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el JanCoptic month 11 - ShortNamePossessive \t ԴադարCoptic month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordu LILOn (la Linukslanĉilon) Name \t Կարգավորել TCP/ IP պարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Viŝi la redakto- kamponshow help \t show help"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Substreki \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Supretoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BhāIndian National month 7 - ShortName \t Indian National month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MaoriaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de EsfFarvardin short \t ԴադարFarvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Serba- LatinaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PeftoouCoptic weekday 4 - LongDayName \t Coptic weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ISpell Defaŭlta@ item Spelling dictionary:% 1 dictionary name,% 2 file name \t @ item Spelling dictionary:% 1 dictionary name,% 2 file name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparstilo@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "la kontaktoskato jam estas kreitaSocket error code NotBound \t Socket error code NotBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 KiBsize in 2^20 bytes \t size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Viviga motoro de PlasmaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Piktograma grando@ item: inmenu Icon size \t @ item: inmenu Icon size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Orienta araba- ciferojdigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĀshIndian National month 5 - ShortName \t Indian National month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Vertikalaj formojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Mane@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Koloro de Teksto... @ label stroke color \t @ label stroke color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Vidi per tuŝoComment \t SeebyTouchComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de PauIndian National month 11 - ShortNamePossessive \t ԴադարIndian National month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "decKhoof Tir short \t Դադարof Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SerbaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de BhāIndian National month 7 - ShortNamePossessive \t ԴադարIndian National month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BihariName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Portugala@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GurmukaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MajEthiopian month 9 - LongNamePossessive \t Ethiopian month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KroataName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HamusEthiopian weekday 5 - LongDayName \t ԴադարEthiopian weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SamoaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OktNovember \t November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Junof July \t Դադարof July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LingalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kunligaj diakritaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RejangKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pravalorizo de KDE- agordoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "XMPP Mien- EtosoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Geometriaj formojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AltGrkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "abcdefghijklmnopqrstuvwxyzNumbers and characters \t Numbers and characters"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KorsikaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HispanaName \t ԻսպաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ThoCoptic month 2 - ShortName \t Coptic month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ĀswIndian National month 8 - ShortNamePossessive \t ԴադարIndian National month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OgamaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ŝarĝi antaŭrigardon@ interface/ rich \t Show the author of this item in a list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigita tekstredaktiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eskkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "→keyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aro pri privata interkonsentoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ize sufiksojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Brajlaj ŝablonojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Iri reen je unu paŝogo forward \t go forward"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KmeraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RunaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDE- komponantoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Antaŭa@ action Opposite to Prior \t @ action Opposite to Prior"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hebrea@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Krei & radiko/ afikso- kombinojn kiuj ne estas en la vortaro@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el FebEthiopian month 10 - LongNamePossessive \t Ethiopian month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SomalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ParemhotepCoptic month 8 - LongName \t ԴադարCoptic month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SomavãraIndian National weekday 2 - LongDayName \t Indian National weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el VaishākhIndian National month 3 - LongNamePossessive \t Indian National month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Jia- radikalojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FeroaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VendaaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Arabaj prezentformoj- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ManksaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PagumenEthiopian weekday 1 - ShortDayName \t ԴադարEthiopian weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MalajalaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Baza latinaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OrijoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KhordadTir long \t Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 YiB@ item: intext% 1 is a real number, e. g. 1. 23 days \t @ item: intext% 1 is a real number, e. g. 1. 23 days"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ize suffixes and without accentsdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VaiIndian National month 3 - ShortName \t Indian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PtiouCoptic weekday 5 - LongDayName \t Coptic weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tai ThamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kayah LiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ envar/ plain \t @ envar/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TamilaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Forviŝi@ action \t Մաքրել@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malaltaj surogatojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 (% 2) size in bytes \t size in bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BulgaraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aldoni al legosignoj@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sveda@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Diversaj matematikaj simboloj- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- simboloj kaj interpunkcioKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Forlasi tutekranan manieronEncodings menu \t Encodings menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TaskoplaniloGenericName \t KNetworkConfGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Plasma apletoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĀswIndian National month 8 - ShortName \t Indian National month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Adapti al paĝlarĝeco@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KimraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TeqEthiopian month 3 - ShortName \t Ethiopian month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MagEthiopian month 8 - ShortName \t ԴադարEthiopian month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDED- moduloComment \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AaAll letters of the alphabet (in upper/ lower case pairs), followed by numbers \t All letters of the alphabet (in upper/ lower case pairs), followed by numbers"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- kongruecoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GNU Ĝenerala Publika Permesilo Versio 3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Testo por KnotifyName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "_BAR_% 1_BAR_@ interface/ rich \t @ interface/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MiyEthiopian month 9 - ShortNamePossessive \t Ethiopian month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "UzbekaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malzomi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pidgin Mien- EtosoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Matematikaj simbolojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Restarigi@ action: button Stop find & replace \t @ action: button Stop find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LepchaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KIO dosiera moduloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malfermi & lastajn@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "matthias@ peick. de, cfmckee@ gmail. com \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MakEthiopian weekday 3 - ShortDayName \t Ethiopian weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TelugaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SanIndian National weekday 7 - ShortDayName \t ԴադարIndian National weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TahEthiopian month 5 - ShortName \t ԴադարEthiopian month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "List- Stilo@ item: inmenu no list style \t @ item: inmenu no list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Rigardo de TTT- legiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "abc@ item: inmenu uppercase abc lists \t @ item: inmenu uppercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BendsekurigiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1% 2@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Litersimilaj simbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hangula JamoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aŭtomata legosignigiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enfermitaj CJK- literoj kaj monatojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tenu% 1, tiam premu% 2@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fonetikaj etendaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Antaŭa kompletigaĵo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Matthias Peick, Oliver Kellogg, Cindy McKee, Axel RousseauEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Diversaj simboloj kaj sagojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SurbendigiloGenericName \t KDatGenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "YakEthiopian month 7 - ShortName \t Ethiopian month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Skriptlingva etendaĵo por PlasmaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 minutoj@ item: intext% 1 is a real number, e. g. 1. 23 seconds \t @ item: intext% 1 is a real number, e. g. 1. 23 seconds"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SlovakaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Specifi khtml- dosierujon... \t նՇել khtml- ի թղթապանակը..."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Artista Permesilo@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ThooutCoptic month 2 - LongName \t Coptic month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Microsoft- aŭdvida servila protokoloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HieraŭCoptic month 1 - ShortNamePossessive \t Coptic month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "InupiakaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MerThursday \t Thursday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MaltaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ACsubtraction \t subtraction"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PNMName \t PBMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nevalida prokura skriptoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉu ŝanĝi la tiparograndecon? @ label: listbox Font size \t @ label: listbox Font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AVERTO:% 1@ warning/ rich \t @ warning/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& lt;% 1gt; @ email/ rich \t @ email/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SinhalaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KSSL- demono- moduloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HereraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "*% 1 * @ emphasis/ rich \t @ emphasis/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne povis trovi la programon \"finger\" en via sistemo, bonvolu instali ĝin. \t Հնարավոր չէ գտնել Finger ծրագիրը, խնդրում ենք տեղադրել այն ։"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JS- kalkuliloaddition \t addition"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kouji nabotCoptic month 1 - ShortName \t Coptic month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TahEthiopian month 5 - ShortNamePossessive \t ԴադարEthiopian month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ASpell Defaŭlta@ item Spelling dictionary:% 1 dictionary name \t @ item Spelling dictionary:% 1 dictionary name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de MāgIndian National month 12 - ShortNamePossessive \t ԴադարIndian National month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konsideri kungluitajn & vortojn kiel ortografiajn erarojn@ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "La klavkombino '% 1' jam estas ligita al la norma ago \"% 2\" kiun uzas multaj aplikaĵoj. Tial vi ne rajtas uzi ĝin por ĉieaj mallongigoj. What the user inputs now will be taken as the new shortcut \t What the user inputs now will be taken as the new shortcut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ŝanĝi Tekston... @ item: intable Action name in toolbar editor \t Աշխատեցնել տեստերը... @ item: intable Action name in toolbar editor"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BudIndian National weekday 4 - ShortDayName \t Indian National weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Reta agordoComment \t Ցանցային պարամետրերComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Trovi antaŭan@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GaelaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PauIndian National month 11 - ShortName \t ԴադարIndian National month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JorubaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PolaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "40dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ abcĉdefgĝhĥijĵklmnoprsŝtuŭvz1, 27Numeric IDs of scripts for font previews \t 1, 27Numeric IDs of scripts for font previews"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tekstredaktila kromprogramoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PanCoptic month 11 - ShortName \t ԴադարCoptic month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tai VietKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĜuangaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GrupoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TibetaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tempo kaj datoComment \t Ժամ և ԱմսաթիվComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NombroformojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne eblas ŝargi la bildonThe color depth of an image \t Հնարավոր չէ կարդալ պատկերըThe color depth of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MalajalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ShrāvanaIndian National month 6 - LongNamePossessive \t Indian National month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GrekaName \t ՀուներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1:% 2@ warning- with- label/ rich% 1 is the warning label,% 2 is the text \t @ warning- with- label/ rich% 1 is the warning label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el ThooutCoptic month 2 - LongNamePossessive \t ԴադարCoptic month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Centra- Aziaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Apriloof May long \t of May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elektu tion por ŝanĝi la agordon de la tiparstilo. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nordsaamo@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Viŝi tekston@ title: menu \t Մաքրել@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- kongruecaj formojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Sepof October \t of October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kromprogramo por la renoma dialogoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HebreaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JunJuly \t July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Notlibro (ekzemplo) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TerEthiopian month 6 - LongName \t Ethiopian month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ricevis mesaĵonComment \t Հաղորդագրությունը ստացված էComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 tagoj@ item: intext% 1 is a real number, e. g. 1. 23 hours \t @ item: intext% 1 is a real number, e. g. 1. 23 hours"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Komenci@ action End of document \t @ action End of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "(C) 2005 Jeroen Wijnhoutpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈeĥaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sota, nordaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 PiBsize in 2^50 bytes \t size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Trovi tekston@ title: group \t @ title: group"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 (% 2) @ resource/ plain \t @ resource/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de JyaIndian National month 4 - ShortNamePossessive \t ԴադարIndian National month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaliaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Khordadof Tir long \t of Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TahsasEthiopian month 5 - LongNamePossessive \t ԴադարEthiopian month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Unuigita kanada aborigena silabaroKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CryptoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eraro pri elŝuto de skriptoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eklezia SlavaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TamilaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malsuprenkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 2 @ filename/ plain \t @ filename/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SamarianoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Presikeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kvardek kolorojpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 Versio% 2 nbsp; Program name, version and KDE platform version; do not translate 'Development Platform' \t Program name, version and KDE platform version; do not translate 'Development Platform'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "3d- opcioj \t 3D Պարամետրեր"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LaosaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SepOctober \t October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Adapti al paĝo@ action \t Դադար@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enigakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Oxygen kolorojpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Diversaj teknikajKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ placeholder/ plain \t @ placeholder/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Presi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiu programo estas distribuata laŭ la% 1. @ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1/ s% 1 is the label, we add a ':' to it \t % 1 is the label, we add a ':' to it"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LimbuaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pri KDE@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "UjguraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Literoj kiuj modifas tononKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ShaMehr short \t Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kmeraj simbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "maldekstra butonomiddle mouse button \t middle mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Alia kodigo (% 1) @ item Text encoding:% 1 character set,% 2 encoding \t @ item Text encoding:% 1 character set,% 2 encoding"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Bengala (Hindio) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SimbolojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDED- moduloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PaoCoptic month 3 - ShortNamePossessive \t ԴադարCoptic month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KornvalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MeoCoptic month 13 - ShortNamePossessive \t ԴադարCoptic month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Mallonga- aŭtomata@ item: inmenu Text Completion \t Պիտակ@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HaŭsaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NovDecember \t December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nekonata opcio '% 1'. @ info: shell% 1 is cmdoption name \t @ info: shell% 1 is cmdoption name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "matthias@ peick. de, okellogg@ users. sourceforge. net, cfmckee@ gmail. com, axel@ esperanto- jeunes. org \t vgevorgyan@ vtgsoftware. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konservita PreparagordoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KHTML- finaĵa adaptiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "InuktitutaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Axel RousseauEMAIL OF TRANSLATORS \t EMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Balta@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VjetnamaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hieraŭconcatenation of dates and time \t concatenation of dates and time"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Franca@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Zomi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Gaela (Irlanda) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Teksta Marko... @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PsoouCoptic weekday 6 - LongDayName \t Coptic weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MalsuprasorabaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Ordof Khordad short \t Դադարof Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PtiCoptic weekday 5 - ShortDayName \t Coptic weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enmeti nunan tempon kaj datonName \t Մտցրեք ընթացիք Ժամը և ԱմսաթիվըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PesCoptic weekday 2 - ShortDayName \t ԴադարCoptic weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enmetkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉielarkaj kolorojpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kartvela suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GvaraniaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eŭropaj alfabetojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SindaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hungara@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Antaŭa signo de la historioGoes to next character \t Goes to next character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de JyaishthaIndian National month 4 - LongNamePossessive \t Indian National month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ item/ plain \t @ item/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "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/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SabSunday \t Sunday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AzarDei long \t Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fonto: The destination url of a job \t The destination url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ize sufiksoj kaj kun akcentojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 (% 2) @ tag/ modifier/ modifier@ title/ plain \t @ tag/ modifier/ modifier@ title/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TahsasEthiopian month 5 - LongName \t Ethiopian month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HTML- ilobreto \t HTML գործիքներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malebligi aŭtokontrolon@ action: button \t @ action: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KFileWrite- kromprogramoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 2 (% 1) @ link- with- description/ rich% 1 is the URL,% 2 is the descriptive text \t @ link- with- description/ rich% 1 is the URL,% 2 is the descriptive text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AzerbajĝanaName \t ԱդրբեջաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TanaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "grandadictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PortugalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Skribo de PhagspaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BengalaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "shnYek- shanbe short \t ԴադարYek- shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "QPL v1. 0@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tipo:% 1 \t @ label: checkbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NauraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SvedaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AjmaraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de AgrahayanaIndian National month 10 - LongNamePossessive \t Indian National month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SanivãraIndian National weekday 7 - LongDayName \t Indian National weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elekti la nunan tagon@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplementa interpunkcioKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aŭtomata prokuragordoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Vortaro: @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hejmo@ action Beginning of document \t @ action Beginning of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HamleEthiopian month 12 - LongNamePossessive \t ԱրժեքEthiopian month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Alfabetaj prezentformoj por kongruecoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne remontri tiun mesaĝon@ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AliaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EpeCoptic month 12 - ShortName \t Coptic month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el NehEthiopian month 13 - ShortNamePossessive \t ԴադարEthiopian month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tai LueKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HathorCoptic month 4 - LongName \t Coptic month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- radikala suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de PaushIndian National month 11 - LongNamePossessive \t ԴադարIndian National month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Etiopa etenditaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enmeti dosieronComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HedarEthiopian month 4 - LongName \t Ethiopian month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AutoBraceComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fulmklava diagnozo de D- ro Klaŝo@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malalta pasvorta fortikecoOpposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1:% 2@ warning/ plain \t @ warning/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉina, tradiciaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "$% 1 @ message/ plain \t @ message/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Majusklakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "InterlingvaoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kadra desegnoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 TiBsize in 2^40 bytes \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Progresi per vorto@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& FinitaColumn number% 1 \t Column number% 1"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sekva listero@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aliaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el FebCoptic month 12 - ShortNamePossessive \t ԴադարCoptic month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AbĥazaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KaŝubaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kursiva@ action underline selected text \t @ action underline selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Aŭgof September \t Դադարof September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aktivigi antaŭan langeton@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "La atestilo eksvalidiĝisSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ŝlosi Ilobretojn@ action: intoolbar Text label of toolbar button \t @ action: intoolbar Text label of toolbar button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BaliaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SardaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KosaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konsilo de la tago@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigebla administrilo por personaj atestilojName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Jia- silabojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Orient- Aziaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elekti ĉion@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hiperkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PakaĵadministriloGenericName \t KPackageName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MesEthiopian month 2 - ShortNamePossessive \t ԴադարEthiopian month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CirilaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NdongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne eblis lanĉi la Helpocentrondictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "123@ item: inmenu lowercase abc lists \t @ item: inmenu lowercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Orientiĝotoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Redoni al ĉiuj eroj siajn defaŭltajn valorojngo back \t go back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "nevalida butonoa kind of mouse gesture: hold down one mouse button, then press another button \t a kind of mouse gesture: hold down one mouse button, then press another button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Paŝi ele@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el NehaseEthiopian month 13 - LongNamePossessive \t ԴադարEthiopian month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Linukslanĉilo (LILO) Comment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de MāghIndian National month 12 - LongNamePossessive \t Indian National month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tipara Grandeco@ action boldify selected text \t @ action boldify selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PsoCoptic weekday 6 - ShortDayName \t ԴադարCoptic weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nekonata@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nova@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ĀshIndian National month 5 - ShortNamePossessive \t ԴադարIndian National month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Vicigi Maldekstre@ label left justify \t @ label left justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KārIndian National month 9 - ShortName \t Indian National month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 TiBmemory size in 2^40 bytes \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Julian@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OsetaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈuvaŝaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "4shPanj shanbe short \t ԴադարPanj shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PagumenEthiopian month 1 - ShortName \t ԴադարEthiopian month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PasCoptic month 10 - ShortName \t ԴադարCoptic month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de DecembroJanuary \t January"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Montri ilobreton@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Norvega (Nynorsk) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Linia komenco@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Altkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BurundaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 ZiBsize in 2^70 bytes \t size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Serĉi@ label Type of file \t @ label Type of file"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "la kontaktoskato ne estas kreitaSocket error code WouldBlock \t Socket error code WouldBlock"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ValonaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BahEsfand \t Esfand"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "kun akcentojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Bopomofa etenditaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Belorusa@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BopomofoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PaoneCoptic month 11 - LongNamePossessive \t ԴադարCoptic month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kopta@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Etiopa@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Presi antaŭrigardonArgument is application name \t Argument is application name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eltondi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ShrIndian National month 6 - ShortNamePossessive \t ԴադարIndian National month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GuĝarataName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Preni tre novajn aĵojn! Program name followed by 'Add On Installer' \t Program name followed by 'Add On Installer'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DatumilojComment \t Տվյալների գործիքներComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MarWednesday \t Wednesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ note/ plain \t @ note/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TagalogaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Atestilo- partoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈeĉenaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Norvega (Bokmal) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el YakEthiopian month 7 - ShortNamePossessive \t ԴադարEthiopian month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Superskriboj kaj subskribojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ŝanĝitaDocument/ application separator in titlebar \t Document/ application separator in titlebar"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SangoaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Rigardi HTML- Eligon \t Արտածումը դիտել HTML տեսքով"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "poeracio jam progresasSocket error code NetFailure \t Socket error code NetFailure"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BosniaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DimanĉoIndian National month 1 - ShortNamePossessive \t Indian National month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "IdoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ChhattisgarhiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HindaName \t ՀինդիName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Duobla Mallarĝa LinioBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PagEthiopian month 1 - LongNamePossessive \t ԴադարEthiopian month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ParemhotepCoptic month 8 - LongNamePossessive \t ԴադարCoptic month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pakaĵa meta- datuma testdosieroComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NehEthiopian month 13 - ShortName \t Ethiopian month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ArmenaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Fino@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FrisaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enmeti@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Oblikva@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Arabadigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HungaraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SinhalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 EiBsize in 2^60 bytes \t size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Simpligita ĉina@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malelekti@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "varianto 0dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Greka@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malfermi '% 1'? @ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Diversaj simbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sota, sudaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Unikodo@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PashonsCoptic month 10 - LongNamePossessive \t ԴադարCoptic month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VaishākhIndian National month 3 - LongName \t Indian National month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "UrduaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MiyEthiopian month 9 - ShortName \t Ethiopian month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĈerokaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "‘% 1 ’ @ filename/ rich \t @ filename/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Propra@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Restariga agordoVerb \t Verb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Name \t Կարգավորել TCP/ IP ՊարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Azarof Dei long \t Դադարof Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konflikto kun ĉiea klavokombinoleft mouse button \t left mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplementaj sagoj- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TequemtEthiopian month 3 - LongNamePossessive \t Ethiopian month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KirgizaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de AgrIndian National month 10 - ShortNamePossessive \t ԴադարIndian National month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Defaŭlta -% 1 [% 2] @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ChaitraIndian National month 2 - LongName \t Indian National month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĝisrandigo@ title: menu \t @ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& AtestiloNAME OF TRANSLATORS \t & ՍերտիֆիկատNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Koloro: NAME OF TRANSLATORS \t Գույն: NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Portugala (Brazilo) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PsaCoptic weekday 7 - ShortDayName \t ԴադարCoptic weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pitona enkodiga kontrolilo/ aldoniloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "60dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KmeraKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elekti tiparon@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BSD- Permesilo@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latina etendita- CKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Okcidenteŭropa@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Centren@ action \t Ընդհանուր@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "dekstra butonoa nonexistent value of mouse button \t a nonexistent value of mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de BhādrapadIndian National month 7 - LongNamePossessive \t Indian National month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 GiBsize in 2^40 bytes \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el EpepCoptic month 12 - LongNamePossessive \t ԴադարCoptic month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ŜonaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FinaName \t ՖիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 @ shortcut/ plain \t @ shortcut/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KurdaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FebMarch \t March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EksportiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MesoreCoptic month 13 - LongName \t Հաշվի չառնելCoptic month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MeshirCoptic month 7 - LongName \t Հաշվի չառնելCoptic month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "operacio ne estas subtenata1: the unknown socket address family number \t 1: the unknown socket address family number"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MāghIndian National month 12 - LongName \t Indian National month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Testa Datuma motoroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NederlandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Litova@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "* Propraj koloroj * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konservi \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne uzi Xvfb \t Չօգտագործել Xvfb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Disko@ item: inmenu circle list style \t @ item: inmenu circle list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AnglaName \t ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Suplemento al fonetikaj etendaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigebla komponanto por plurparto/ miksoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SukIndian National weekday 6 - ShortDayName \t Indian National weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "FrancaName \t ՖրանսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 PBmemory size in 2^50 bytes \t memory size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nekonata adresfamilio% 1Socket error code NoError \t Socket error code NoError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AŭgSeptember \t September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Plasma apletujo kaj fonpentriloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Metakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MeskeremEthiopian month 2 - LongNamePossessive \t Ethiopian month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "StatoTitle of the notified event \t Title of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SysV- Preparo- RedaktiloComment \t SysV- Init խմբագրիչComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tujmesaĝilo kun D- Bus- interfacoName_BAR_standard desktop component \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SlovenaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MoldavaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PashonsCoptic month 10 - LongName \t ԴադարCoptic month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PrtScrkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AvestaName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "uFari literumkontrolon@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "$% 1@ envar/ rich \t @ envar/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MeshirCoptic month 7 - LongNamePossessive \t Coptic month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Redakto@ title: menu Game move \t & Խմբագրել@ title: menu Game move"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AzaDei short \t Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el SenEthiopian month 11 - ShortNamePossessive \t ԴադարEthiopian month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Greka etenditaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SegnoEthiopian weekday 2 - LongDayName \t Ethiopian weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RPM statistikojComment \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordi Ilbretojn@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GuruvãraIndian National weekday 5 - LongDayName \t Indian National weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KiaCoptic month 5 - ShortName \t Coptic month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GikujaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PesnauCoptic weekday 2 - LongDayName \t ԴադարCoptic weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hangula kongrueca JamoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Antaŭa listero@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KeĉuaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "/% 1 / @ message/ rich \t @ message/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigita altnivela tekstredaktiloName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Labortablo% 1@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pierre- Marie PédrotEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "reta malsukceso okazisSocket error code NotSupported \t Socket error code NotSupported"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Optika signorekonoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Refari@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BaŝkiraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HamEthiopian weekday 5 - ShortDayName \t ԱրժեքEthiopian weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "varianto 2dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& lt;% 1 gt; @ email/ plain \t @ email/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Subskribo \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kio estas tio@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- unuecigitaj ideogramojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Internacia Ispell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ArbEthiopian weekday 6 - LongDayName \t Ethiopian weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PaopeCoptic month 3 - LongNamePossessive \t ԴադարCoptic month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DzonkaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ChamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SeneEthiopian month 11 - LongName \t Ethiopian month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malalta saksaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AgrIndian National month 10 - ShortName \t Indian National month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enmeti la elektaĵon@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 Bsize in 1000 bytes \t size in 1000 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VaiIndian National month 3 - ShortName \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Alta sorabaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JomShanbe short \t Shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KazaĥaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NagariaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TequemtEthiopian month 3 - LongName \t Ethiopian month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparstilo: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigebla bildorigardiloName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MalajaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĝenerala interpunkcioKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tie ĉi vi povas elekti la uzotan tiparstilon. @ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MongolaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el ĀshādhaIndian National month 5 - LongNamePossessive \t Indian National month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Postulita tiparo@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Reĝaj kolorojpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JavaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KSSL- demono- modulo por KDEDName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Paŭzikeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RomaaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "varianto 1dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Konektiĝis al kontaktoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enfermitaj literciferojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "**% 1 ** @ emphasis- strong/ rich \t @ emphasis- strong/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Febof March \t of March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Supra al Malsupra, Dekstra al LivaNo border line \t No border line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Frisa (Persa) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- unuecigitaj ideogramoj- etendaĵo- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Mehof Aban short \t Դադարof Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TigrajaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MehAban short \t Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ndebela, sudaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Montri menuobreton@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Turka@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Koloro@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Aprof May short \t Դադարof May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDE- agordomoduloName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TobCoptic month 6 - ShortNamePossessive \t ԴադարCoptic month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KārtikIndian National month 9 - LongName \t Indian National month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "la kontaktoskato ne estas ligitaSocket error code NotCreated \t Socket error code NotCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 MiBsize in 2^30 bytes \t size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kopii@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Entajpu serĉesprimonGoes to previous character \t Goes to previous character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MaithiliName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pĝsubkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉu vi volas daŭri de la komenco? @ action: button Restart find & replace \t @ action: button Restart find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el MesoreCoptic month 13 - LongNamePossessive \t Հաշվի չառնելCoptic month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GronlandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "La atestilo ne estas validaSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Zemberek @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "la kontaktoskato jam estas ligitaSocket error code AlreadyCreated \t Socket error code AlreadyCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Universala@ item Text character set \t Ընդհանուր@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JapanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KaŝmiraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AsamaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MāgIndian National month 12 - ShortName \t Indian National month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉesi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LatviaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BengalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "UkrainaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 sekundoj@ item: intext \t @ item: intext"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malantaŭen@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PsabbatonCoptic weekday 7 - LongDayName \t Coptic weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KDE- kromprogramaj informojComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hunspell \t HSpellName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JyaishthaIndian National month 4 - LongName \t Indian National month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KanaraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparo: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Eraro pri takso de skriptoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ligo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Diversaj matematikaj simboloj- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kvadrato@ item: inmenu numbered lists \t @ item: inmenu numbered lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MaksegnoEthiopian weekday 3 - LongDayName \t Ethiopian weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ŝalti Aplikaĵan Lingvon@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Grandeco@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HedEthiopian month 4 - ShortNamePossessive \t Ethiopian month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Aŭtomate@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PanĝabaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Norda SameaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ise sufiksoj kaj kun akcentojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Dimensioj:% 1x% 2 \t Չափեր:% 1x% 2"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Rondaj kanaojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kromprogramo por la eco- dialogoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TkyriakēEthiopian month 1 - ShortNamePossessive \t Ethiopian month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Filipinaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MongolaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Dana@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉina (Honkongo) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 YBsize in 1024 bytes \t size in 1024 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PauCoptic month 9 - LongNamePossessive \t ԴադարCoptic month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Anstataŭigi@ action Go to main page \t @ action Go to main page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MalagasaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SagojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Trovi@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SaurashtraKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Neniu@ item: inmenu disc list style \t @ item: inmenu disc list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SiletaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BirmaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Esperanto@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& PaŭziThe source url of a job \t ԴադարThe source url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉeĥa@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Kodo: @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "templimita operacio transtemplimiĝisSocket error code UnknownError \t Socket error code UnknownError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ChaitraIndian National month 2 - LongNamePossessive \t ԴադարIndian National month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ABCDEFGHIJKLMNOPQRSTUVWXYZAll of the letters of the alphabet, lowercase \t All of the letters of the alphabet, lowercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GermanaName \t ԳերմաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Bonvolu raporti erarojn al% 2. @ item Author name in about dialog \t @ item Author name in about dialog"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Cindy McKeeEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LitovaName \t ԼիտվերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Unikoda kategorio: \t Character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NeŝanĝebligiDock this window \t Dock this window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SanskritoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Bahof Esfand short \t Դադարof Esfand short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JulioAugust long \t August long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Viŝkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Svisgermana@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BamumKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VenSaturday \t Saturday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "La grupoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "operacio malhelposSocket error code ConnectionRefused \t Socket error code ConnectionRefused"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KartvelaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MeskeremEthiopian month 2 - LongName \t Հաշվի չառնելEthiopian month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Malfermi@ label File name \t Գործողություն@ label File name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MarŝalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KiahkCoptic month 5 - LongName \t ԴադարCoptic month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tiparo@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 horoj@ item: intext% 1 is a real number, e. g. 1. 23 minutes \t @ item: intext% 1 is a real number, e. g. 1. 23 minutes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "neniu eraroSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tutekrana maniero@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el TeqEthiopian month 3 - ShortNamePossessive \t ԴադարEthiopian month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Afrikaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "etadictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TitoloDescription of the notified event \t Description of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ShrIndian National month 6 - ShortName \t Indian National month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enigo de pasvorto@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "duonlarĝa (hankaku) kaj plenlarĝa (zenkaku) formojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Agordu LILOn (la Linukslanĉilon) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Matthias Peick, Cindy McKeeEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĀshādhaIndian National month 5 - LongName \t Indian National month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ise sufiksoj kaj sen akcentojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NepalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Noto:% 1@ note- with- label/ plain% 1 is the note label,% 2 is the text \t @ note- with- label/ plain% 1 is the note label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne trovis signarojn. A sentence that uses all of the letters of the alphabet \t A sentence that uses all of the letters of the alphabet"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ApriloMay long \t May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malkonektita. NAME OF TRANSLATORS \t Կապը խզված է։ NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Supren@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "protokoldosiero de SysV- Prepar- RedaktiloName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "RavIndian National weekday 1 - LongDayName \t Indian National weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "meza butonoright mouse button \t right mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TajaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Linia fino@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sudorienta Eŭropo@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kouji nabotCoptic weekday 1 - ShortDayName \t Coptic weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Normala@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1Define an area in the time zone, like a town area \t Define an area in the time zone, like a town area"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "VolofaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sekva Dokumento@ action \t Տեղեկություն փաստաթղթի մասին@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ChaIndian National month 2 - ShortNamePossessive \t ԴադարIndian National month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Azaof Dei short \t Դադարof Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PshCoptic weekday 3 - ShortDayName \t ԴադարCoptic weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "la adreso jam estas uzataSocket error code AlreadyBound \t Socket error code AlreadyBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Jalali@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Mezorientaj skribsistemojKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "kun yeyodictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PamCoptic month 9 - ShortNamePossessive \t ԴադարCoptic month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ArabaName \t ԱրաբերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "La retpoŝta adreso, al kiu tiu erarraporto estas sendota. Email receiver address \t Email receiver address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HTTP- kaŝmemora purigiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ne specifitareplace this with information about your translation team \t replace this with information about your translation team"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MañIndian National weekday 3 - ShortDayName \t Indian National weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ShrāvanaIndian National month 6 - LongName \t Indian National month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Teksto- al- voĉa servo kun D- Bus- interfacoName \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tabkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Lanĉi la eraroraportan helpilonunknown program name \t unknown program name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TujmesaĝiloComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TaskoplaniloKeywords \t KCron"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "HatCoptic month 4 - ShortName \t Coptic month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kde Mien- EtosoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "cfmckee@ gmail. com \t vgevorgyan@ vtgsoftware. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Literoj kiuj modifas interspacojnKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el PaushCoptic month 10 - ShortNamePossessive \t ԴադարCoptic month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Hijri@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Neniu provizanto elektita. describes the feed of the latest posted entries \t describes the feed of the latest posted entries"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Iri reen per vorto@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BretonaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "nekonata eraro1: the i18n' ed system error code, from errno \t 1: the i18n' ed system error code, from errno"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HathorCoptic month 4 - LongNamePossessive \t ԴադարCoptic month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Enkorpigebla bildorigardila komponantoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Germana@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TobCoptic month 6 - ShortName \t Coptic month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "DecembroMonday \t Monday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de PhāIndian National month 1 - LongNamePossessive \t ԴադարIndian National month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 (% 2) [% 3] dictionary name.% 1- language and% 2- country name \t dictionary name.% 1- language and% 2- country name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Cirila etendita- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KFile- metadatuma kromprogramoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Shaof Mehr short \t Դադարof Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "QImageIOHandler- kromprogramoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Standardaj paĝojBanner page at start \t Banner page at start"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ArmenaName \t ՀայերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GurIndian National weekday 5 - ShortDayName \t Indian National weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "TobeCoptic month 6 - LongName \t Coptic month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĴaŭFriday \t Friday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Slovaka@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "CJK- strekojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Bildsimboloj de komandojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Simpla KDE aplikaĵoName \t KDE- ի հասարակ ԿիրառությունName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Superkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ABC@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KolektoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "cfmckee@ gmail. com \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& MalantaŭenOpposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el HedarEthiopian month 4 - LongNamePossessive \t ԴադարEthiopian month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĀshwinIndian National month 8 - LongName \t Indian National month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JavaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Cirila suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MagabitEthiopian month 8 - LongName \t Ethiopian month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MarApril \t ԴադարApril"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AplikaĵoDescription \t Description"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BuhidaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NekonataFirst letter of the alphabet (in upper then lower case) \t First letter of the alphabet (in upper then lower case)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latina etendita- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Adar II@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& lt;% 1 gt; @ email- with- name/ plain% 1 is name,% 2 is address \t @ email- with- name/ plain% 1 is name,% 2 is address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "80dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaoCoptic month 3 - ShortName \t ԴադարCoptic month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SvaziaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PamCoptic month 9 - ShortName \t ԴադարCoptic month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Dekstretoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ĉi- ĵaŭde ŝi havigu informojn pri biciklista ĝazo- ĥoroAll of the letters of the alphabet, uppercase \t All of the letters of the alphabet, uppercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PaŝtuaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ricevis mesaĵonName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el RajabEthiopian month 8 - LongNamePossessive \t ԴադարEthiopian month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ProponlistoA link to the description of this Get Hot New Stuff item \t Առաջարկների ցուցակA link to the description of this Get Hot New Stuff item"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "- ise sufiksojdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "JulAugust \t August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Pĝsupkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "OrdKhordad short \t Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "& Montri konsilojn ĉe lanĉoOpposite to Previous \t Opposite to Previous"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kunligaj duonsignojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AfrikansaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Etiopa suplementoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GenEthiopian month 10 - ShortName \t Ethiopian month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Etformaj variantojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Progresinta retumila kromprogramoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Oktof November \t of November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "QedEthiopian weekday 7 - ShortDayName \t Ethiopian weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AfaraName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SundaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el KouCoptic month 1 - LongNamePossessive \t ԴադարCoptic month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GNU Ĝenerala Publika Permesilo Versio 3@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "MiyazyaEthiopian month 9 - LongName \t Ethiopian month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Latinaj etenditaj aldonaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Averto:% 1@ warning- with- label/ plain% 1 is the warning label,% 2 is the text \t @ warning- with- label/ plain% 1 is the warning label,% 2 is the text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Q Publika Permesilo@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Samspaca@ item Font name \t @ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ChaIndian National month 2 - ShortName \t Indian National month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KartvelaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "operacio ne estas subtenataSocket error code Timeout \t Socket error code Timeout"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 ZBmemory size in 2^70 bytes \t memory size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kunligaj diakritaĵoj por simbolojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PshomentCoptic weekday 3 - LongDayName \t ԴադարCoptic weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "fora komputilo fermis la konektonSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Malfari@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Iri al linio@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "el KiaCoptic month 5 - ShortNamePossessive \t ԴադարCoptic month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ĝisrandigo@ label justify fill \t @ label justify fill"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "% 1 MiBmemory size in 2^30 bytes \t memory size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Korea@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "KhoTir short \t Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "NormalaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Maldekstretoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GuĝarataKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de ĀshwinIndian National month 8 - LongNamePossessive \t Indian National month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Elektu tion por ŝanĝi la agordon de la tiparograndeco. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Tekstkompletigo@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Altaj surogatoj de privata interkonsentoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "AlbanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Strekaj kanaojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Ukrajna@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Georga@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BelorusaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "PefCoptic weekday 4 - ShortDayName \t ԴադարCoptic weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LatinoName \t ԼատիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "uLanĉi nur JS- testojn \t Աշխատացնել միայն JS տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "BhādrapadIndian National month 7 - LongName \t Indian National month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "GNU Ĝenerala Publika Permesilo Versio 2@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Novof December \t Դադարof December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "ZuluaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "neniu ŝlosiloComment \t nokeyComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Kopii & ligilan adreson@ title: menu HTML frame/ iframe \t @ title: menu HTML frame/ iframe"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Nagariadigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EhuEthiopian weekday 1 - LongDayName \t Ethiopian weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Germana (nova literumo) @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "IPA- etendaĵojKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "Sekretega@ action: button filter- yes \t @ action: button filter- yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "SenEthiopian month 11 - ShortName \t Ethiopian month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Julof August \t of August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "de Farof Ordibehesht short \t Դադարof Ordibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "EnretaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/eo-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "eo - hy", "text": "LGPL v3@ item license \t @ item license"}
|