File size: 235,580 Bytes
0b33795 |
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 |
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শব্দ সম্পূৰ্ণ কৰাComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছকেট বৰ্তমানে নিৰ্মিতSocket error code NotBound \t Socket error code NotBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Adar II@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সিংহালাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দ্বৈত ডাঠ ৰেখাBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebCoptic month 1 - ShortName \t Coptic month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MorCoptic month 13 - ShortNamePossessive \t ԴադարCoptic month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarEthiopian month 7 - LongNamePossessive \t Ethiopian month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অতিৰিক্ত কাঁড়চিহ্ন- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShvatCoptic month 4 - ShortNamePossessive \t ԴադարCoptic month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 5 - LongNamePossessive \t Indian National month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KScanName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "_BAR_% 1_BAR_@ interface/ rich \t @ interface/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কিৰ্গিজName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্লোভেনিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE বিন্যাসৰ অংশName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্ক্ৰিপ্ট ডাউন্লোড কৰোঁতে ভুলComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থিতিমাপCoptic month 9 - LongName \t ԴադարCoptic month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JunJuly \t July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্ৰাজিলিয়ান পোৰ্তুগিজ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK চিহ্ন আৰু যতিচিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হিন্দীName \t ՀինդիName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এটা সম্বাদ পোৱা হৈছেName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebCoptic month 12 - ShortNamePossessive \t ԴադարCoptic month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নতুন বস্তু প্ৰাপ্ত কৰক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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জ্যামিতিক আকৃতিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বুগিনিসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰতিস্থাপন@ action Go to main page \t @ action Go to main page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অন্য এন্কোডিং (% 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আপুনি নিশ্চিতৰূপে আলেখ্যনৰ প্ৰাৰম্ভিক স্থানৰ পৰা পুনঃ অনুসন্ধান কৰিবলৈ ইচ্ছুক নে? @ action: button Restart find & replace \t @ action: button Restart find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মধ্য ইউৰোপিয়ান@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Hebrew@ item Calendar system \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছেকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GNU General Public License Version 3@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমাপ্ত (F) Column number% 1 \t Column number% 1"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চমু পথ সংক্ৰান্ত দ্বন্দ্ব@ item: inmenu Text Completion \t Պիտակ@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আম্হাৰিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "'% 1' সহযোগে খোলক (O) \t @ info"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1:% 2@ warning/ plain \t @ warning/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "- ize প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "OrdKhordad short \t Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডাচName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ মাজত আঁচ টানক (S) @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কিকুয়ুName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of SepEthiopian month 11 - ShortNamePossessive \t ԴադարEthiopian month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AltGrkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হিৰি মোটুName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ThlCoptic month 2 - ShortName \t Coptic month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আপাৰ ছৰ্বিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কোৰীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাউছৰ বাওঁফালৰ বুটামmiddle mouse button \t middle mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SepOctober \t October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "3shChahar shanbe short \t ԴադարChahar shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ভ' লাপুকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ব এশিয়ান লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Kde Emoticons থিমComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিম্বুৰ্গানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ বিন্যাস সংক্ৰান্ত বৈশিষ্ট্য পৰিবৰ্তনৰ উদ্দেশ্যে এই চেকবক্স নিৰ্ব্বাচন কৰক । @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মৈথিলিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পুনৰাৰম্ভ কৰক@ action: button Stop find & replace \t @ action: button Stop find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzCoptic month 3 - ShortNamePossessive \t ԴադարCoptic month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Morof Shahrivar short \t Դադարof Shahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 9 - ShortName \t Indian National month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "EsfandDo shanbe short \t ԴադարDo shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AdarEthiopian month 4 - LongName \t Ethiopian month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিয়ন্ত্ৰণ সংক্ৰান্ত চিত্ৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Delkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MarCoptic month 8 - ShortNamePossessive \t ԴադարCoptic month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিস্তাৰিত ভাবসংকেত অক্ষৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক্ৰোয়েচিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফাৰ্চী (পাৰ্চিয়ান) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতIndian National month 11 - ShortName \t ԴադարIndian National month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰামধেনুৰ ৰংpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইন্টাৰলিঙ্গName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Shaof Mehr short \t Դադարof Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মধ্য@ action \t Ընդհանուր@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৱ' ল' ফName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পুনঃ তুলি লওক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুসন্ধানৰ বাবে কোনো অভিব্যক্তি বা অক্ষৰ ইয়াত লিখক@ action \t Goes to previous character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিম্ন সাৰোগেটKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমাপ্তি@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বুলগেৰীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চাৰ্চ স্লাভিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চীনাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবি ৰূপে বিন্যাস- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুসন্ধান (S) \t @ label Type of file"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ASpell অবিকল্পিত মান@ item Spelling dictionary:% 1 dictionary name \t @ item Spelling dictionary:% 1 dictionary name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "OctNovember \t November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JomShanbe short \t Shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰিবৰ্তন নিৰ্ব্বাচনকাৰীKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰোথিত উন্নত লিপি সম্পাদকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰাশিয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 ৰ শৰ্তাধীন এই প্ৰোগ্ৰাম বিতৰণ কৰা হৈছে । @ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma wallpaperName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MuharramIndian National month 2 - LongNamePossessive \t ԴադարIndian National month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AbaAzar short \t Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Notepad (উদাহৰণ) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শ্ৰেণীবহিৰ্ভূতBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "EscapeCoptic month 12 - ShortName \t Coptic month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আগৰ@ action Opposite to Prior \t @ action Opposite to Prior"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বঙালীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শূণ্যCoptic month 11 - LongName \t ԴադարCoptic month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্পাদন (E) @ title: menu Game move \t & Խմբագրել@ title: menu Game move"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কিন্যাৰ্বান্ডাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE বিষয়ে@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্য সমৰ্থিত নহয়1: the unknown socket address family number \t 1: the unknown socket address family number"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কপটিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "& lt;% 1gt; @ email/ rich \t @ email/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ISpell অবিকল্পিত মান@ 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Octof November \t of November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰোমানিয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PayloadProgram name followed by 'Add On Installer' \t Program name followed by 'Add On Uploader'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমগ্ৰ নিৰ্ব্বাচন কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফিজিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShvatIndian National month 6 - LongNamePossessive \t Indian National month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK সামঞ্জস্যৰ ভাবসংকেতKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিভিন্ন চিহ্ন আৰু কাঁড়চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অবৈধ নিয়ুক্তকৰ স্ক্ৰিপ্টComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of EsfIndian National month 8 - ShortNamePossessive \t ԴադարIndian National month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Key Bindings@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সতৰ্কবাৰ্তা:% 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নাভাজোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবি সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "HTTP কেছে পৰিষ্কাৰ কৰা সৰঞ্জামComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আভেষ্টানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হয়Ethiopian month 2 - ShortName \t Հաշվի չառնելEthiopian month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "DecemberMonday \t Monday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰবৰ্তী শব্দ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShaEthiopian month 13 - LongNamePossessive \t ԴադարEthiopian month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic weekday 6 - ShortDayName \t ԴադարCoptic weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TevetEthiopian month 3 - LongNamePossessive \t Ethiopian month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আইমাৰাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মধ্য এশিয়ান লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পুনৰুদ্ধাৰ (R) Coptic month 13 - LongName \t Հաշվի չառնելCoptic month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডেবেলে, ছাউথName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JulAugust \t August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "WedEthiopian month 4 - ShortName \t Ethiopian month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 2 @ filename/ plain \t @ filename/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিঙ্ক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চৰকৰ প্ৰদৰ্শনComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic weekday 3 - ShortDayName \t ԴադարCoptic weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাল্টিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অত্যন্ত গোপনীয়@ action: button filter- yes \t @ action: button filter- yes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic weekday 2 - LongDayName \t ԴադարCoptic weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Zemberek @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AprMay short \t May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzCoptic month 9 - ShortNamePossessive \t ԴադարCoptic month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ভেন্ডাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "থাইName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অক্ষৰেৰ অনুৰূপ চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিবিধ গাণিকিত চিহ্ন- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কপটিক@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PNMName \t PBMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মালায়ালামKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বৈশিষ্ট্যCoptic month 3 - LongName \t ՀատկությունCoptic month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDED অংশComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সিৰিলিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৱেল্শ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইউক্ৰেনিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টোকা:% 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰম্ভণিত উপেদশ প্ৰদৰ্শন কৰা হ' ব (S) Opposite to Previous \t Opposite to Previous"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "3D বিকল্প \t 3D Պարամետրեր"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অক্সিজেন ৰংpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মেচিডোনীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of HijjahCoptic month 4 - LongNamePossessive \t ԴադարCoptic month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDED অংশComment \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MarEthiopian month 8 - ShortName \t ԴադարEthiopian month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাশ্মীৰিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KCertPartName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MarEthiopian weekday 3 - ShortDayName \t Ethiopian weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তুৰ্কি@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Marof April \t Դադարof April"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t memory size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্ৰেইল চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নোৰ্ৱেইয়ান বকমালName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "“% 1 ” @ icode/ rich \t @ icode/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahCoptic month 10 - LongNamePossessive \t ԴադարCoptic month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমপ্ৰান্তিক@ title: menu \t @ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Aprof May short \t Դադարof May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 days \t @ item: intext% 1 is a real number, e. g. 1. 23 hours"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সুপাৰ- স্ক্ৰিপ্ট আৰু সাব- স্ক্ৰিপ্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MayEthiopian month 9 - LongName \t Ethiopian month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "‘% 1 ’ @ filename/ rich \t @ filename/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰ্মেনিয়ানKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অবিকল্পিত মান: No shortcut defined \t No shortcut defined"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৱৰীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উন্নত চৰকৰ প্লাগ- ইনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নকল কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংযোগৰ সময়সীমা পাৰ হৈছেSocket error code InProgress \t Socket error code InProgress"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE অংশName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডাঠ@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইন্ডোনেচীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্ৰাহক: (C) @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বল্টিক@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MorCoptic month 13 - LongNamePossessive \t Հաշվի չառնելCoptic month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জ' ছাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE বিন্যাস আৰম্ভ কৰাComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 1 - LongNamePossessive \t ԴադարIndian National month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "DingbatsKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "থানাKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উল্লেখিত নহয়replace 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ঝুৱাঙName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এইটো কি@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of HeshvanIndian National month 8 - LongNamePossessive \t Indian National month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাৰ্মান (নতুন বানান) @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শূণ্য@ item: inmenu disc list style \t @ item: inmenu disc list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "- evaluation \t evaluation"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছুইদিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t memory size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ThuCoptic month 2 - LongName \t Coptic month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সময় & দিন ভৰুৱাৰ আকৃতিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ThuFriday \t Friday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সাধাৰণ যতিচিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাৰ প্ৰস্থ অনুযায়ী মাপ নিৰ্ধাৰণ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক্ৰিমিয়ান টাটাৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahIndian National month 7 - ShortName \t Indian National month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাক্স আবদ্ধ ছবিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "khtml পঞ্জিকা উল্লেখ কৰক... \t նՇել khtml- ի թղթապանակը..."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবিdigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জুলুComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাৰ্ছালিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Serif@ item Font name \t Ստուգել@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক্ষুদ্ৰdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ envar/ plain \t @ envar/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিপিত ব্যৱহৃত ৰং... (C) @ label stroke color \t @ label stroke color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzCoptic month 9 - LongNamePossessive \t ԴադարCoptic month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তামিলKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হিব্ৰিউName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of DecemberJanuary \t January"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MarEthiopian month 8 - ShortNamePossessive \t ԴադարEthiopian month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK সামঞ্জস্যৰ বিন্যাসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মালায়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বেলাৰুচীয় (লেটিন) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t size in 1024 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "5shJumee short \t ԴադարJumee short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MorIndian National month 12 - ShortNamePossessive \t ԴադարIndian National month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টিফিনাগKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JanFebruary \t ԴադարFebruary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehrEthiopian month 2 - LongName \t Հաշվի չառնելEthiopian month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বন্ধ কৰকFreeze the window geometry \t Freeze the window geometry"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ওড়িয়াKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিশেষEnter 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "LGPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "$% 1 @ message/ plain \t @ message/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অ' পটিকেল কেৰেক্টাৰ ৰিকোগ্নিছনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্ৰিক এক্সটেন্ডেডKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ভিয়েট্নামিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhordadIndian National month 7 - LongNamePossessive \t Indian National month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডেনিশ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আঠা লগাওক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "খোলক (O) \t Գործողություն@ label File name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MayEthiopian month 9 - ShortNamePossessive \t Ethiopian month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Microsoft Media Server ProtocolComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিপি উজ্জ্বল কৰিবলৈ ব্যৱহৃত ৰং... (H) @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাওৰিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লেখকCoptic month 4 - LongName \t Coptic month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছোনাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আজিৰ উপদেশ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিম্নৰেখাঙ্কন (U) @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ট্বিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "'% 1' সহযোগে খোলক (O) \t @ action: inmenu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আফ্ৰিকান লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অকল JS পৰীক্ষা চলোৱা হ' ব \t Աշխատացնել միայն JS տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফৰাচীName \t ՖրանսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Returnkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "* সম্প্ৰতি ব্যৱহৃত ৰং * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইথিওপিক সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰান্ত হ্ৰাস কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইয়ি ধ্বনি- নিৰ্দেশকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE তথ্যৰ সৰঞ্জামName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফাগস- পাKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্পাদনযোগ্য ক্ষেত্ৰতৰ মান আঁতৰাওঁকshow help \t show help"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত নোহোৱাdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাঙ্গুল ধ্বনি- নিৰ্দেশকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইথিওপিক@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দেবনাগৰিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShaIndian National month 2 - ShortNamePossessive \t ԴադարIndian National month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তাই লিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্যৱহাৰযোগ্য আখৰৰ সংকলন ইয়াত নিৰ্ব্বাচন কৰা যাব । @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "QPL v1. 0@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "থানাIndian National month 10 - LongName \t Indian National month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 5 - ShortName \t Indian National month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "aphukan@ fedoraproject. org \t vgevorgyan@ vtgsoftware. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চীনা সৰল কৰাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShaIndian National month 6 - ShortNamePossessive \t ԴադարIndian National month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বুহিদIndian National weekday 4 - ShortDayName \t Indian National weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ArbEthiopian weekday 6 - LongDayName \t Ethiopian weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত সহ - ise প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উচ্চ ব্যক্তিগত ব্যৱহাৰৰ সাৰোগেটKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইদোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Menukeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma সৰঞ্জাম আকাৰৰ সংজ্ঞাComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সতৰ্কবাৰ্তা:% 1@ warning/ rich \t @ warning/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইটালিক@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ওপৰত@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্যৱস্থাপ্ৰণালীৰ সকলো কুকিৰ পৰিচালনা কৰেName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পঠিয়াওক (S) Ethiopian month 11 - ShortName \t Ethiopian month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Hyperkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Controlkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাঙ্গুল জামোKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইউনিনথিপত্ৰ কানাডিয়ান অ্যাবোৰিজিনাল শব্দাংশKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুজৰাতিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Ctrl \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অতিৰিক্ত কাঁড়চিহ্ন- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "QImageIOHandler pluginName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছকেট আগতেই বাইন্ড কৰা হৈছেSocket error code AlreadyCreated \t Socket error code AlreadyCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছাৰ্বিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংস্কৃতName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "৮০dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰং@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বেছিক লাতিনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma Data EngineComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আলেখ্যনৰ আগলৈ@ action \t Տեղեկություն փաստաթղթի մասին@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 3 - ShortNamePossessive \t ԴադարIndian National month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KFileWrite প্লাগ- ইনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সহায় ব্যৱস্থা আৰম্ভ কৰিবলৈ ব্যৰ্থdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সৰলিকৃত চীনা@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্পেনিশ্বName \t ԻսպաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিবিধ চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Janof February \t Դադարof February"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "aphukan@ fedoraproject. org \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "HTML নিৰ্গম চাওক \t Արտածումը դիտել HTML տեսքով"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাটক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "123@ item: inmenu lowercase abc lists \t @ item: inmenu lowercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাংগুল কম্পেটিবিলিটি জামোKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছ্বানাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বেলাৰুশিয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhaIndian National month 2 - ShortName \t Indian National month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰান্ডীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Azarof Dei long \t Դադարof Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আল্ফাবেটিক ৰূপে বিন্যাসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "TamuzKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanIndian National month 4 - ShortNamePossessive \t ԴադարIndian National month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "amEthiopian weekday 5 - ShortDayName \t ԱրժեքEthiopian weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 hours \t @ item: intext% 1 is a real number, e. g. 1. 23 minutes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডাঠ (B) @ action italicize selected text \t @ action italicize selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমপ্ৰান্তিক (J) @ label justify fill \t @ label justify fill"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মধ্যপ্ৰাচ্যৰ লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অবিকল্পিত মান -% 1 [% 2] @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ববৰ্তী উপস্থিতি অনুসন্ধান কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৱেলুনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰং নিৰ্ব্বাচন কৰক@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "4shPanj shanbe short \t ԴադարPanj shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নামEthiopian month 12 - LongName \t ԱրժեքEthiopian month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK ইউনিফাইড ভাবসংকেত এক্সটেনশন AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিবন্ধিত সাৰ্বজনীন চমু পথৰ সৈতে দ্বন্দ্বleft mouse button \t left mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of AprIndian National month 10 - ShortNamePossessive \t ԴադարIndian National month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাওKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰবৰ্তী উপস্থিতি অনুসন্ধান কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰিবৰ্তিতDocument/ application separator in titlebar \t Document/ application separator in titlebar"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইউৰোপিয়ান অক্ষৰKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahIndian National month 11 - LongNamePossessive \t ԴադարIndian National month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MayEthiopian month 9 - LongNamePossessive \t Ethiopian month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Q Public License@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উৎস: The destination url of a job \t The destination url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাংজি ৰেডিক্যালKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GNU Lesser General Public License Version 3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জৰ্জিয়ানKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ববৰ্তী টেব সক্ৰিয় কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhaCoptic month 5 - ShortName \t Coptic month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic weekday 7 - ShortDayName \t ԴադարCoptic weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পালিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছবি তুলি ল' ব পৰা নাযায়The color depth of an image \t Հնարավոր չէ կարդալ պատկերըThe color depth of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanEthiopian month 10 - ShortNamePossessive \t ԴադարEthiopian month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SunIndian National weekday 6 - ShortDayName \t Indian National weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চেৰোকিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডাঙৰকৈ প্ৰদৰ্শন@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অজ্ঞাত সংকলন% 1Socket error code NoError \t Socket error code NoError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MonTuesday \t Tuesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত সহ - ize প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KTextEditor PluginName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SundayIndian National month 1 - ShortNamePossessive \t Indian National month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of RajabEthiopian month 8 - LongNamePossessive \t ԴադարEthiopian month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংকেতেৰ সৈতে ব্যৱহাৰযোগ্য সংযুক্তকাৰী ধ্বনি- নিৰ্দেশক চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Jalali@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE বিন্যাস পুনঃ তুলি লোৱা হ' ব নেকি? Reload KDE configuration messagebox \t Reload KDE configuration messagebox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzEthiopian month 1 - LongNamePossessive \t ԴադարEthiopian month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehIndian National month 12 - LongNamePossessive \t Indian National month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "/% 1 / @ message/ rich \t @ message/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰ্মেনিয়ানName \t ՀայերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এনক্লোসড আল্ফানিউমেৰিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "যিদ্দিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অবৈধ বুটামa 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebEthiopian month 10 - LongName \t Ethiopian month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 5 - ShortNamePossessive \t ԴադարIndian National month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ACsubtraction \t subtraction"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চৌকোণ@ item: inmenu numbered lists \t @ item: inmenu numbered lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইউক্ৰেনিয়েন@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফোনেটিক (ধ্বন্যাত্মক) এক্সেটনশন সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 seconds \t @ item: intext"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছ্বাটিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মূদ্ৰণ কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হস্তচালিতভাবে@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ সংকলন সংক্ৰান্ত বৈশিষ্ট্য পৰিবৰ্তনৰ উদ্দেশ্যে এই ছেকবক্স নিৰ্ব্বাচন কৰক । @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিহাৰীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "The Quick Brown Fox Jumps Over The Lazy Dog1, 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আজাৰ্বাইজানীName \t ԱդրբեջաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পোৰ্তুগিজ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t @ item: intext% 1 is a real number, e. g. 1. 23 days"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MuharramIndian National month 2 - LongName \t Indian National month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থিতিমাপCoptic month 8 - LongName \t ԴադարCoptic month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাৰাথিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তালিকাৰ বিন্যাস@ item: inmenu no list style \t @ item: inmenu no list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টাটাৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ঘূৰাই লওক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুৰুমুখীKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাৰ্মিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতEthiopian weekday 5 - LongDayName \t ԴադարEthiopian weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্বপ্ৰদৰ্শন তুলি লোৱা হৈছে@ interface/ rich \t Show the author of this item in a list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পুনৰাবৃত্তি@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Hijri@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুজ্ৰাটিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 KiB \t memory size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "HTML টুল- বাৰ \t HTML գործիքներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নথিপত্ৰ ভৰাওকComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AprilMay long \t May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্য দ্বাৰা প্ৰতিৰোধ কৰা হ' বSocket error code ConnectionRefused \t Socket error code ConnectionRefused"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অন- লাইনComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of SepEthiopian month 11 - LongNamePossessive \t ԴադարEthiopian month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "খমেৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "yeyo সহdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 1 - ShortName \t ԴադարIndian National month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "variant 0dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 3 - LongNamePossessive \t Indian National month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবীয়Name \t ԱրաբերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "(C) 2005 Jeroen Wijnhoutpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ন' ৰ্ৱেইয়ান নিন' ৰ্স্কName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoCoptic month 2 - LongNamePossessive \t ԴադարCoptic month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অন্যান্যKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাপানীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ shortcut/ plain \t @ shortcut/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KCharselect unicode block name \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংখ্যা ৰূপKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাওঁফালেtoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চাৰ্ডিনিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বয়ংক্ৰিয়@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehrEthiopian month 2 - LongNamePossessive \t Ethiopian month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চামোৱানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিপি অনুসন্ধান@ title: group \t @ title: group"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দেবনাগৰি@ item Text character set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1/ s @ application/ plain \t % 1 is the label, we add a ':' to it"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "yo সহdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গেলিচিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebCoptic month 6 - ShortNamePossessive \t ԴադարCoptic month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of ShvatIndian National month 6 - LongName \t Indian National month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ধ্বনি পৰিবৰ্তনকাৰী অক্ষৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তালিকাত উপস্থিত পৰবৰ্তী বস্তু@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইটালিক (I) @ action underline selected text \t @ action underline selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেন্ডেড- CKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইথিওপিক এক্সটেন্ডেডKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাপানি@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নেপালীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পোলিশ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ (F) @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেনডেড- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফৰাচী@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Ordof Khordad short \t Դադարof Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "খমেৰ চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বোপোমোফোKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুৰোধ কৰা আখৰ@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমষ্টিটোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উৰ্দুName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ মাপ সংক্ৰান্ত বৈশিষ্ট্য পৰিবৰ্তনৰ বাবে এই চেকবক্স নিৰ্ব্বাচন কৰক । @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মানক্সName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিম্বুof Farvardin short \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত সহdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অমিতাক্ষ ফুকনEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাCoptic weekday 4 - ShortDayName \t ԴադարCoptic weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চুইডিশ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "abc@ item: inmenu uppercase abc lists \t @ item: inmenu uppercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KHTML সম্প্ৰসাৰণৰ এডাপ্টৰComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নামEthiopian month 13 - LongName \t Ethiopian month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাওঁফাললৈ নিয়ক (L) @ label left justify \t @ label left justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বৃত্ত@ item: inmenu square list style \t @ item: inmenu square list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhordadIndian National month 7 - LongName \t Indian National month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ বিন্যাস@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰং: NAME OF TRANSLATORS \t Գույն: NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নৰৱেয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of EsfIndian National month 8 - ShortName \t Indian National month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অচেটিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "TueEthiopian month 6 - LongName \t Ethiopian month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of OctoberCoptic month 6 - LongNamePossessive \t ԴադարCoptic month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahIndian National month 7 - ShortNamePossessive \t ԴադարIndian National month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Sonnet Spell ClientComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰিশ্ৰুত কৰক@ action \t Մաքրել@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of NisanCoptic month 5 - ShortNamePossessive \t ԴադարCoptic month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "XML দশমিক এনটিটি: KCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাCoptic weekday 2 - ShortDayName \t ԴադարCoptic weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বয়ংক্ৰিয় নিযুক্তকৰ বিন্যাসName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এনকোডিং: (E) @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আমেৰিকান ইংৰাজীName \t Ամերիկյան ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্ৰেট' নName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "যোৱা কালিconcatenation of dates and time \t concatenation of dates and time"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেন্ডেড- DKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ মাপ (S) @ action boldify selected text \t @ action boldify selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰান্ত বৃদ্ধি কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কেমোৰোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebEthiopian month 10 - LongNamePossessive \t Ethiopian month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MehrCoptic month 7 - LongName \t Հաշվի չառնելCoptic month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পঠিয়াওক (S) Ethiopian weekday 3 - LongDayName \t Ethiopian weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্পূৰ্ণ পৰ্দ্দাত প্ৰদৰ্শন@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Khoof Tir short \t Դադարof Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইন্টাৰ্লিঙ্গুৱাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছকেট নিৰ্মাণ কৰা নহয়Socket error code WouldBlock \t Socket error code WouldBlock"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰুচীয়Name \t ՌուսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছকেট বাইন্ড কৰা নহয়Socket error code NotCreated \t Socket error code NotCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বোস্নীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Proxy ScoutComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পুষ্টোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গাণিতিক প্ৰতীকচিহ্নKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লোৱাৰ ছৰ্বিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিপি পৰিষ্কাৰ কৰক@ title: menu \t Մաքրել@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Northern Saami@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তিব্বতিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিঙ্গালাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেন্ডেড অ্যাডিশনেলKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "৪০dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhoCoptic month 1 - LongName \t Coptic month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "* স্বনিৰ্ধাৰিত ৰং * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শূণ্যস্থান পৰিবৰ্তনকাৰী অক্ষৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্লক এলিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma এপ্লেটComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাংলাKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Sepof October \t of October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চোমালিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শিল্পকাৰ্য্য সংক্ৰান্ত প্ৰমাণপত্ৰ@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুণৰ সম্বাদৰ বাবে প্লাগ- ইনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "2shSe shanbe short \t ԴադարSe shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বয়ংক্ৰিয় নিযুক্তকৰ বিন্যাসComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Aspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Julof August \t of August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্যCoptic month 6 - LongName \t Coptic month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ঠিকনা বৰ্তমানে ব্যৱহৃত হৈছেSocket error code AlreadyBound \t Socket error code AlreadyBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Yaum al- Ahadof Farvardin short \t of Farvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টাহিটিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ note/ plain \t @ note/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কোৰিয়ান@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SatCoptic month 4 - ShortName \t Coptic month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুপ্তশব্দ কমযোৰOpposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পত্ৰচিহ্ন যোগ কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুগ্ৰহ কৰি% 2 ত বাগ প্ৰতিবেদন কৰক । @ application/ plain \t @ item Author name in about dialog"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প' লিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কুৰ্ডিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইজিং হেক্সাগ্ৰাম চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "যোৱা কালিCoptic month 1 - ShortNamePossessive \t Coptic month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ye সহdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰবৰ্তী@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পংক্তিৰ সমাপ্তি@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JomIndian National weekday 2 - ShortDayName \t Indian National weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK স্ট্ৰোকসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কন্নড়KCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ThuEthiopian weekday 1 - LongDayName \t Ethiopian weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সিৰিয়াকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সৰুকৈ প্ৰদৰ্শন@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্বাবস্থা@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সহায়@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t size in 10^6 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ArbIndian National month 10 - ShortName \t Indian National month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আইকন পৰিবৰ্তন কৰক... (I) @ 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শিৰোনামDescription of the notified event \t Description of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্ৰিক@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KSSL ডেমন অংশComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AzarDei long \t Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাতাকানাKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাৰ্মানName \t ԳերմաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Superkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "'% 1' - ত 'kdemain' পোৱা নাযায় ।% 2% 1 is the number of ambigious shortcut clashes (hidden) \t Պիտակ% 1 is the number of ambigious shortcut clashes (hidden)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মন্তব্যCoptic weekday 3 - LongDayName \t ԴադարCoptic weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "TueEthiopian month 3 - ShortName \t Ethiopian month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আজিৰ দিন নিৰ্ব্বাচন কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Shift \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্পূৰ্ণ পৰ্দ্দাত প্ৰদৰ্শন বন্ধ কৰা হ' বEncodings menu \t Encodings menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছান্দানিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Azaof Dei short \t Դադարof Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of RajabEthiopian month 8 - LongName \t Ethiopian month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰকৃত আখৰ@ item Font style \t @ item Font style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma Animation EngineComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDE প্লাগ- ইনৰ তথ্যComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মালাগাছিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Augof September \t Դադարof September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুসন্ধান@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MorIndian National month 12 - ShortName \t Indian National month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "amCoptic month 9 - ShortName \t ԴադարCoptic month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰোথিত Personal Certificate ManagerName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "৬০dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Khordadof Tir long \t of Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাৰ দৈৰ্ঘ্য অনুযায়ী মাপ নিৰ্ধাৰণ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তথ্যৰ সৰঞ্জামComment \t Տվյալների գործիքներComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিঙ্ক দ্বাৰা চিহ্নিত অৱস্থান নকল কৰক (C) @ title: menu HTML frame/ iframe \t @ title: menu HTML frame/ iframe"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Spacekeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Monospace@ item Font name \t @ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1% 2@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ববৰ্তী অক্ষৰ@ action \t Goes to next character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বয়ংক্ৰিয় পৰীক্ষণ ব্যৱস্থা নিষ্ক্ৰিয় কৰা হ' ব@ action: button \t @ action: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টাগবানওয়াKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছ' ঙ্গাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "শ্ৰেণীভুক্তBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আব্খাজিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছেছেন্Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অতিৰিক্ত যতিচিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তেলুগুKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰীক্ষা তথ্যৰ কলঘৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of HeshvanIndian National month 8 - LongName \t Indian National month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্লাগোলিটিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লেটিনName \t ԼատիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TevetEthiopian month 3 - ShortNamePossessive \t ԴադարEthiopian month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এটা D- Bus সংযোগ মাধ্যম থকা Instant MessengerName \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "থাইKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কানবুনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নে' টৱৰ্ক বিপৰ্যয় ঘটিছেSocket error code NotSupported \t Socket error code NotSupported"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "- ise প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "FebMarch \t March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্পেনিশ@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ item/ plain \t @ item/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzEthiopian month 12 - ShortNamePossessive \t ԴադարEthiopian month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰোথিত Java Applet প্ৰদৰ্শকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 GiB \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৰবৰ্তী টেব সক্ৰিয় কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এনক্লোসড CJK অক্ষৰ আৰু মাসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzCoptic month 3 - LongNamePossessive \t ԴադարCoptic month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হেৰেৰোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আইচ্লেন্ডিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাগ প্ৰতিবেদন প্ৰস্তুতিৰ উইজাৰ্ড আৰম্ভ কৰক (L) unknown program name \t unknown program name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 MiB \t size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত নোহোৱা - ize প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সৰঞ্জাম মিটাডাটাৰ পৰীক্ষাৰ নথিপত্ৰComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ওপৰতtoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰোথিত লিপি সম্পাদকComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফাৰোইছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বোপোমোফো এক্সটেন্ডেডKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাছুবিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অজ্ঞাত/ অপ্ৰত্যাশিত ত্ৰুটি ঘটিছেSocket error code RemotelyDisconnected \t Socket error code RemotelyDisconnected"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahEthiopian month 5 - ShortNamePossessive \t ԴադարEthiopian month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিৰ্ব্বাচন বাতিল কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Pidgin Emoticons থিমComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছিলোটি নাগৰিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাক্সেম্বৰ্গিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উজ্বেকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AugSeptember \t September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সোঁফালেtoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাপ@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KFile মেটা ডাটা প্লাগ- ইনComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Adium Emoticons থিমComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাগ প্ৰতিবেদন কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বানান পৰীক্ষা কৰা হ' ব@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Unicode@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টুল- বাৰ লক কৰা হ' ব@ 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Knotify ৰ বাবে পৰীক্ষাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of EsfFarvardin short \t ԴադարFarvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "য' ৰুবাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছিছেৱাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MehAban short \t Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সেউজীয়া: Ethiopian month 10 - ShortName \t Ethiopian month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AutobookmarkerComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 GiB \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দক্ষিণ- পূৰ্ব এশিয়াৰ লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাওName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Meta \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰম্ভ@ action End of document \t @ action End of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GNU General Public License Version 2@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংযোগ সক্ৰিয়ৰূপে প্ৰত্যাখ্যান কৰা হৈছেSocket error code ConnectionTimedOut \t Socket error code ConnectionTimedOut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MorShahrivar short \t ՀատկությունShahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Hebrew@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Tabkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দ ':% 1 The dimensions of an image \t Խորություն:% 1 The dimensions of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "~% 1 ~@ subtitle/ rich \t @ subtitle/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ওগহ্যামKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahmanEthiopian month 5 - LongNamePossessive \t ԴադարEthiopian month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এস্টোনিয়ানName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইয়ি ৰেডিক্যালKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সোঁফালে লৈ যাওক (R) @ label right justify \t @ label right justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "==% 1 ==@ title/ rich \t @ title/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Junof July \t Դադարof July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 KiB \t size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মুদ্ৰা চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফোনেটিক (ধ্বন্যাত্মক) এক্সেটনশনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoCoptic month 2 - ShortNamePossessive \t ԴադարCoptic month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "*% 1@ item/ rich \t @ item/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t memory size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক' ৰ্চিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Xvfb ব্যৱহাৰ কৰা ন' হ' ব \t Չօգտագործել Xvfb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 3 - ShortName \t Indian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzEthiopian month 12 - LongNamePossessive \t ԱրժեքEthiopian month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhoTir short \t Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নাউৰুName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইটালীয়Name \t ԻտալերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoCoptic month 1 - LongNamePossessive \t ԴադարCoptic month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SatSunday \t Sunday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of NisanIndian National month 4 - LongName \t Indian National month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "IPA এক্সটেনশনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "AzaDei short \t Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বনিৰ্ধাৰিত@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংৰক্ষণ সংক্ৰান্ত বিকল্প@ action \t Գործողություն@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তেলুগুName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Inskeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অতিৰিক্ত গাণিতিক সংকেতKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উলম্ব বিন্যাসKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahmanIndian National month 10 - LongNamePossessive \t Indian National month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মলয়ালমName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অভিধান: (D) @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 (% 2) @ resource/ plain \t @ resource/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK ইউনিফাইড ভাবসংকেতKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জৰ্জিয়ান সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এটা D- Bus সংযোগ মাধ্যম থকা লিপি- ৰ পৰা- ভাষালৈ নিয়াৰ সেৱাName \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টাগালগKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মোল্দাভিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উচ্চ ছাৰোগেটKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চল্লিশটা ৰংpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ActionList:% 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অজ্ঞাত ত্ৰুটি1: 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাপ: @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PrintScreenkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GPL v3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্বাদ পোৱা গ' লComment \t Հաղորդագրությունը ստացված էComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ সংকলন পৰিবৰ্তন কৰা হ' ব নেকি? @ label \t @ label"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মায়ানমাৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Farof Ordibehesht short \t Դադարof Ordibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাজাখName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাভানীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডেবেল, নৰ্থName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আল্বানিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "South- Eastern Europe@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নাম: @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MarApril \t ԴադարApril"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নৰ্দাৰ্ণ ছ' থ' Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 shortcut- key- delimiter/ plain \t shortcut- key- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰসাৰিতdictionary 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অজ্ঞাত@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডাঠ ইটালিক@ item font size \t @ item font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বৃহৎdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "দিশtoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MarCoptic month 8 - ShortName \t ԴադարCoptic month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সমষ্টিComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুপ্ৰয়োগৰ ভাষা পৰিবৰ্তন কৰক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইনুপিয়াকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FebEthiopian month 4 - ShortNamePossessive \t Ethiopian month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাউছৰ মাজৰ বুটামright mouse button \t right mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্লোভাক@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ত্ৰুটি নোহোৱাSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "BahEsfand \t Esfand"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চীনা (হং কং) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছাৰ্বিয়ান লেটিনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ placeholder/ plain \t @ placeholder/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নতুন@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অকিটানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুপ্ৰয়োগ বিষয়ে@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিন্যাসৰ মান ৰি- সেট কৰকVerb \t Verb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বাভাবিক@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "NovDecember \t December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আভেষ্টানName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জৰ্জিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ন' ৰ্দাৰ্ণ ছামিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আফাৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিম্বুKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাউছাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্লোভেনিয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "variant 2dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছো' থো ', ছাউদাৰ্ণName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অকল HTML পৰীক্ষা চলোৱা হ' ব \t Աշխատացնել միայն HTML տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছ্বাহিলিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ বিন্যাস: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰথম পৃষ্ঠা@ action Beginning of document \t @ action Beginning of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বৰ্ত্তমানৰ সময় & দিন ভৰাওকName \t Մտցրեք ընթացիք Ժամը և ԱմսաթիվըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন- ১ ছাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KConfig ৰ বাবে ভঁৰালৰ বেকএন্ডName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সময় & দিনComment \t Ժամ և ԱմսաթիվComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 সংস্কৰণ% 2 KDE% 3 ব্যৱহাৰকৰোঁতা \t Program name, version and KDE platform version; do not translate 'Development Platform'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আইকনৰ মাপ@ item: inmenu Icon size \t @ item: inmenu Icon size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সিংহলিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অসমীয়াName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছুভাশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাস্কName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Python encoding checker/ adderComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Embeddable HTML চাব পৰা অংশName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সূচনাবাৰ্তা বিন্যাস কৰকState of the notified event \t State of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoCoptic month 5 - LongName \t ԴադարCoptic month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাঁড়চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিথুৱেনিয়ানName \t ԼիտվերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক্ষুদ্ৰ ৰূপKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "EscapeCoptic month 12 - LongName \t Coptic month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "EnchantName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Aprilof May long \t of May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JanCoptic month 11 - ShortName \t ԴադարCoptic month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নামEthiopian weekday 7 - LongDayName \t Ethiopian weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিপৰীত দিশৰ শব্দ আঁতৰাওঁক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 B \t size in 1000 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কোনো উপলব্ধকৰোঁতা নিৰ্ব্বাচন কৰা হয় । 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 ধৰক আৰু ইয়াৰ পিছত% 2 টিপক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডিস্ক@ item: inmenu circle list style \t @ item: inmenu circle list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰৰ মাপ পৰিবৰ্তন কৰা হ' ব নেকি? @ label: listbox Font size \t @ label: listbox Font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গাণিতিক সংকেতKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoCoptic month 5 - LongNamePossessive \t ԴադարCoptic month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতIndian National month 11 - LongName \t ԴադարIndian National month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছিন্ধিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাEthiopian month 1 - LongName \t ԴադարEthiopian month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰুনিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of KhoIndian National month 1 - LongName \t Indian National month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Jan@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্যEthiopian month 5 - LongName \t Ethiopian month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰস্থান@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হানুনুKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰমিতBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চীনা পাৰম্পৰিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উইঘুৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তালিকাত উপস্থিত পূৰ্ববৰ্তী বস্তু@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিবিধ গাণিতিক চিহ্ন- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এসপাৰান্তো@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আইৰিশ্ব গেলিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এটা পদক্ষেপ পিছলৈ যাওকgo forward \t go forward"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাটালানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "WedEthiopian weekday 7 - ShortDayName \t Ethiopian weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Altkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "$% 1@ envar/ rich \t @ envar/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তালিকাৰ বাৰ প্ৰদৰ্শন কৰা হ' ব@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বেনাৰৰ পৃষ্ঠাBanner page at start \t Banner page at start"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 minutes \t @ item: intext% 1 is a real number, e. g. 1. 23 seconds"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "LGPL v3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফ্ৰিচিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PauseBreakkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অৱস্থাTitle of the notified event \t Title of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বুহিদKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KRunner প্লাগ- ইনComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "'% 1' অনুপস্থিত । @ 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Febof March \t of March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংযুক্তকাৰী অৰ্ধ ৰূপKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of NisanIndian National month 4 - LongNamePossessive \t Indian National month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SivanIndian National weekday 7 - ShortDayName \t ԴադարIndian National weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিবিধ প্ৰযুক্তি সংক্ৰান্ত চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 9 - LongNamePossessive \t ԴադարIndian National month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সকল বৈশিষ্ট্যসমূহৰ অবিকল্পিত মান পুনঃ স্থাপন কৰা হ' বgo back \t go back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাঙ্গেৰীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "তামিলName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic month 10 - LongName \t ԴադարCoptic month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেনডেড- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK সামঞ্জস্যKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehrCoptic month 7 - LongNamePossessive \t Coptic month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠা অনুযায়ী মাপ নিৰ্ধাৰণ@ action \t Դադար@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সৰ্বব্যাপী@ item Text character set \t Ընդհանուր@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেনডেড- A@ item Text character set \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মান গঠন কৰিবলৈ ব্যৰ্থthe 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "& lt;% 1 gt; @ email/ plain \t @ email/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of SepCoptic month 12 - LongNamePossessive \t ԴադարCoptic month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিন্যাস কৰক@ 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মূদ্ৰণৰ পূৰ্বৰূপArgument is application name \t Argument is application name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ShaIndian National month 6 - ShortName \t Indian National month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কোমিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টাজিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehIndian National month 12 - LongName \t Indian National month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সময়সীমা নিৰ্ধাৰিত কাৰ্য্যৰ সময়ৰ সময় পাৰ হৈছেSocket error code UnknownError \t Socket error code UnknownError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতThe source url of a job \t ԴադարThe source url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "FebruaryMarch long \t March long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চুইচ জাৰ্মান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টিগ্ৰিন্যাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কেছুৱাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of BahCoptic month 10 - ShortNamePossessive \t ԴադարCoptic month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবি ৰূপে বিন্যাস- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাCoptic month 10 - ShortName \t ԴադարCoptic month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আন্তৰ্জাতিক Ispell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জাৰ্মান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নতুন তাই লিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Hspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of AdarEthiopian month 4 - LongNamePossessive \t ԴադարEthiopian month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কালালিছুটName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আফ্ৰিকান্সName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্ক্ৰিপ্টৰ পৰীক্ষাত ভুলComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "shnYek- shanbe short \t ԴադարYek- shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মাউছৰ সোঁফালৰ বুটামa nonexistent value of mouse button \t a nonexistent value of mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ববৰ্তী শব্দ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মঙ্গোলীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বেলাৰুচীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Instant MessengerComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্য বৰ্তমানে চলোৱা হৈছেSocket error code NetFailure \t Socket error code NetFailure"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্ৰিক আৰু কপটিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টুলবাৰ প্ৰদৰ্শন@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সম্প্ৰতি ব্যৱহৃত খোলক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PgUpkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "FriSaturday \t Saturday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "XMPP Emoticons থিমComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অজ্ঞাত বিকল্প '% 1' । @ info: shell% 1 is cmdoption name \t @ info: shell% 1 is cmdoption name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ABC@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "FarOrdibehesht short \t ԴադարOrdibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "RamadanKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইনুক্টিটুটName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarIndian National month 9 - ShortNamePossessive \t ԴադարIndian National month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আখৰ নিৰ্ব্বাচন কৰক@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গোপনীয়Banner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পশ্চিত ইউৰোপিয়ান@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্যক্তিগত ব্যৱহাৰৰ ক্ষেত্ৰKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইথিওপিকKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফিলিপিন লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্লেইন- লিপিলৈস পৰিবৰ্তন@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Novof December \t Դադարof December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ThlEthiopian month 5 - ShortName \t ԴադարEthiopian month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অব্লিক@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্যৱহাৰযোগ্য আখৰৰ বিন্যাস ইয়াত নিৰ্ব্বাচন কৰা যাব । @ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MayEthiopian month 9 - ShortName \t Ethiopian month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মধ্যমdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Downkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "BSD License@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "GNU Lesser General Public License Version 2@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Winkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পঠিয়াওক (S) Ethiopian weekday 2 - LongDayName \t Ethiopian weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিযুক্তক বিন্যাসৰ স্ক্ৰিপ্ট চলাওঁতে ভুলDescription \t Description"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাতিন এক্সটেনডেড- B \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উজ্বেক (ছিৰিলিক) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লেটিনComment \t ԼատիներենX- KDE- PluginInfo- Category"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টুল- বাৰ বিন্যাস কৰক@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ড্ৰপ- ডাউন তালিকা & & স্বয়ংক্ৰিয়@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KhordadTir long \t Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Plasma এপ্লেটName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থিতিমাপCoptic month 8 - LongNamePossessive \t ԴադարCoptic month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্যCoptic month 6 - ShortName \t Coptic month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হাঙ্গেৰিয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of FarEthiopian month 7 - LongName \t Ethiopian month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Dummy MetaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অ' ৰ' মো' Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থগিতCoptic month 3 - ShortName \t ԴադարCoptic month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanCoptic month 11 - LongNamePossessive \t ԴադարCoptic month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ব্ৰাজিলীয় প' ৰ্টুগিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চেক@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "একত্ৰিত শব্দসমূহক ভুল বানান ৰূপে চিহ্নিত কৰা হ' ব (w) @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "→keyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পূৰ্ববৰ্তী (B) Opposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লাট্ভিয়ানName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ShaMehr short \t Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ছাঙ্গোName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 MiB \t memory size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TirEthiopian month 6 - LongNamePossessive \t ԴադարEthiopian month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehEthiopian month 13 - ShortNamePossessive \t ԴադարEthiopian month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Bahof Esfand short \t Դադարof Esfand short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Mehof Aban short \t Դադարof Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 @ subtitle/ plain \t @ subtitle/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of MehEthiopian month 2 - ShortNamePossessive \t ԴադարEthiopian month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্থায়ী ধাৰ্য কৰা হ' বDock this window \t Dock this window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্য সমৰ্থিত নহয়Socket error code Timeout \t Socket error code Timeout"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বাস্কিৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টিব্বটীয়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰাজসিক ৰংpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডেস্কট' প% 1@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুপ্তশব্দ নিবেশ@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JavaScript সংক্ৰান্ত ত্ৰুটি \t JavaScript- ի սխալներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "TueWednesday \t Wednesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JanIndian National month 4 - ShortName \t Indian National month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SundayKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সিৰিলিক সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নাম অনুসন্ধান বিফলSocket error code AddressInUse \t Socket error code AddressInUse"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - 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/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পাৰম্পৰিক চীনা@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টঙ্গাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিটিশ্ব ইংৰাজীName \t Բրիտանական ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzEthiopian month 1 - ShortName \t ԴադարEthiopian month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টুৰ্কিশ্বName \t ԹուրքերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 TiB \t size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অঞ্চলTime zone \t Time zone"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanCoptic month 11 - ShortNamePossessive \t ԴադարCoptic month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PrtScrkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "হিৰাগানাKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MehEthiopian month 13 - ShortName \t Ethiopian month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Dr. Klash 'Accelerator Diagnosis@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অৰ্ধমাপ আৰু পূৰ্ণমাপ ৰূপKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লিথুয়েনিয়ান@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "SepEthiopian weekday 2 - ShortDayName \t Ethiopian weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংযুক্তকাৰী ধ্বনি- নিৰ্দেশক চিহ্নKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ইংৰাজীName \t ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CryptoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Gregorian@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JS Calculatoraddition \t addition"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বিস্লামাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আৰবিKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কন্নড়Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of Abaof Azar short \t Դադարof Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "- unnamed- Custom color \t Custom color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "সংযুক্তকাৰী ধ্বনি- নিৰ্দেশক চিহ্ন সাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "MonCoptic month 13 - ShortName \t Հաշվի չառնելCoptic month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প্ৰোথিত কৰিব পৰা প্ৰতিমূৰ্ত্তিৰ প্ৰদৰ্শকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাটাকানা ধ্বন্যাত্মক এক্সটেনশনKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উপৰৰ পৰা তলত, সোঁফালৰ পৰা বাওঁফালেNo border line \t No border line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanEthiopian month 7 - ShortNamePossessive \t ԴադարEthiopian month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "*% 1 * @ shortcut/ rich \t @ emphasis- strong/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পঠিয়াওক (S) Ethiopian month 11 - LongName \t Ethiopian month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পংক্তিৰ প্ৰাৰম্ভ@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "PgDownkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্লোভাকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "JulyAugust long \t August long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "Esckeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "WedThursday \t Thursday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "প' ৰ্টুগিছName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডঙ্গাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আকাৰ:% 1x% 2 \t Չափեր:% 1x% 2"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "কাৰ্য্যEthiopian weekday 4 - LongDayName \t Ethiopian weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পৃষ্ঠাEthiopian weekday 1 - ShortDayName \t ԴադարEthiopian weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুৰুতৰnormal severity \t normal severity"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "variant 1dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টোকা:% 1@ note/ rich \t @ note/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "মঙ্গোলিয়ানKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "জঙ্কাName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ধ্বনিগত প্ৰতীকচিহ্নKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "স্বৰাঘাত নোহোৱা - ise প্ৰত্যয়dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "পাঞ্জাবী/ পঞ্জাবীName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গ্ৰীকName \t ՀուներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "CJK ৰেডিকেল ছাপ্লিমেন্টKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "বঙালী (ভাৰত) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "KDED Cookie Jar অংশComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of TamuzIndian National month 11 - ShortNamePossessive \t ԴադարIndian National month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "TevetEthiopian month 3 - LongName \t Ethiopian month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "লো 'ছেক্সনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "চিহ্নKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "আগৰ দিশৰ শব্দ আঁতৰাওঁক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অন্যান্য লিপীKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ক' ৰ্নিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "% 1 [% 2] short \t short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ফিনিশ্বName \t ՖիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "*% 1 * @ emphasis/ rich \t @ emphasis/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "of JanEthiopian month 7 - ShortName \t Ethiopian month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "টুৰ্কমেনName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ডেনিশ্বName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "উল্লেখিত পংক্তি সংখ্যা চাওক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "নিৰ্বাচিত অংশ আঠা লগাওক@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "অনুপ্ৰয়োগDescription \t Description"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "এস্পেৰান্টোName \t ԷսպերանտոName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "খ্মেৰName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গুৱাৰানিName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "গেলিকName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/as-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "as - hy", "text": "ৰোমানিName \t Name"}
|