File size: 246,809 Bytes
b353b07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 |
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Nota:% 1@ note/ rich \t @ note/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Manter a xeometríaDock this window \t Dock this window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NKoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Outros sistemas de escrituraKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Acerca do programa@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Por omisión: No shortcut defined \t No shortcut defined"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - ize e sen acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Morof Shahrivar short \t Դադարof Shahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CatalánName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Itálica@ action underline selected text \t @ action underline selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de NehaseEthiopian month 13 - LongNamePossessive \t ԴադարEthiopian month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xabi G. Feal, Marce VillarinoEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MarataName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GNU Lesser General Public License Versión 3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FeroésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "123@ item: inmenu lowercase abc lists \t @ item: inmenu lowercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 [% 2] short \t short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PefCoptic weekday 4 - ShortDayName \t ԴադարCoptic weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Editor de inicio SysVComment \t SysV- Init խմբագրիչComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SaurashtraKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SegEthiopian weekday 2 - ShortDayName \t Ethiopian weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sen acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sami do norteName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GlagolíticoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XavanésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ligazón@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Información de Extensión de KDEComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inserir un ficheiroComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SanivãraIndian National weekday 7 - LongDayName \t Indian National weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MalaioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SánscritoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AgrIndian National month 10 - ShortName \t Indian National month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Silábico unificado dos aborixes canadianosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Visor dos rexistros do sistemaGenericName \t GenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ItalianoName \t ԻտալերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Profundidade:% 1 The dimensions of an image \t Խորություն:% 1 The dimensions of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "variante 0dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configurar as barras de ferramentas@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Borrar unha palabra cara tras@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Imprimir@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Radicais KangxiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 ZBmemory size in 2^70 bytes \t memory size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Abrir con% 1@ action: inmenu \t @ action: inmenu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Negriña cursiva@ item font size \t @ item font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Fin de liña@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Borrar unha palabra cara diante@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VaiIndian National month 3 - ShortName \t Indian National month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ÁreaTime zone \t Time zone"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Syloti NagriKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BúlgaroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Módulo de ficheiros de KIOComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OutNovember \t November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "De riba cara baixo, e da dereita á esquerdaNo border line \t No border line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BislamaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PeftoouCoptic weekday 4 - LongDayName \t Coptic weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HamleEthiopian month 12 - LongNamePossessive \t ԱրժեքEthiopian month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PagumenEthiopian weekday 1 - ShortDayName \t ԴադարEthiopian weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MagabitEthiopian month 8 - LongNamePossessive \t ԴադարEthiopian month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& PausarThe source url of a job \t ԴադարThe source url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Khordadof Tir long \t of Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PamCoptic month 9 - ShortName \t ԴադարCoptic month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ShonaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Un programa de finanzasComment \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MeoCoptic month 13 - ShortNamePossessive \t ԴադարCoptic month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ideogramas unificados CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KSystemLogComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MaksegnoEthiopian weekday 3 - LongDayName \t Ethiopian weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Alto sóraboName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ndebele do norteName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PauIndian National month 11 - ShortNamePossessive \t ԴադարIndian National month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Atallos de teclado@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PaushIndian National month 11 - LongName \t ԴադարIndian National month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ctrlkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ispell internacional@ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FrechasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ABCÇDEFGHIKLMNÑOPQRSTUVWXZAll of the letters of the alphabet, lowercase \t All of the letters of the alphabet, lowercase"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PtiCoptic weekday 5 - ShortDayName \t Coptic weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Europa do Sur- Leste@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GNU Lesser General Public License Versión 2@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PsoouCoptic weekday 6 - LongDayName \t Coptic weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "40dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TequemtEthiopian month 3 - LongName \t Ethiopian month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Abrir@ label File name \t Գործողություն@ label File name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cliente de ortografía SonnetComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KurdoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EstándarBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Activar a páxina anterior@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LaoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aliñar á & esquerda@ label left justify \t @ label left justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Itálica@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 (% 2) @ resource/ plain \t @ resource/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inglés americanoName \t Ամերիկյան ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ampliadodictionary 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Applet de PlasmaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de setof October \t of October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de xanof February \t Դադարof February"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Maiúsckeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RomanésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LaoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MaithiliName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de outof November \t of November"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "IndonesioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Radicais YiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Chinés simplificadoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de xulof August \t of August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AgrahayanaIndian National month 10 - LongName \t Indian National month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TailandésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LatínName \t ԼատիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XovFriday \t Friday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MalgaxeName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KannadaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Dereitatoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QPL v1. 0@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Puntuación adicionalKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Khoof Tir short \t Դադարof Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PanCoptic month 11 - ShortName \t ԴադարCoptic month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cor@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mensaxería instantánea con interface D- BusName_BAR_standard desktop component \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CherokeeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O parceiro non presentou ningún certificadoSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Lista de accións:% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Esperanto@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PanCoptic month 11 - ShortNamePossessive \t ԴադարCoptic month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de AgrIndian National month 10 - ShortNamePossessive \t ԴադարIndian National month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Reiniciar@ action: button Stop find & replace \t @ action: button Stop find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChechenoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Estilo da fonte tipográfica@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GenEthiopian month 10 - ShortName \t Ethiopian month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VendaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Restabelecer os valores por omisión para todos os elementosgo back \t go back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GNU General Public License Versión 3@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FarOrdibehesht short \t ԴադարOrdibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Vista previa do impresoArgument is application name \t Argument is application name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas de presentación alfabéticaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Data e horaComment \t Ժամ և ԱմսաթիվComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PagEthiopian month 1 - LongName \t ԴադարEthiopian month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XanFebruary \t ԴադարFebruary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SamoanoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ shortcut/ plain \t @ shortcut/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 PBmemory size in 2^50 bytes \t memory size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Substituír@ action Go to main page \t @ action Go to main page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RúnicoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Variantes de formas pequenasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Alemán de Suíza@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Que é Isto@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sinais diacríticos combinatorios para símbolosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NavaxoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Bielorruso@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "3shChahar shanbe short \t ԴադարChahar shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "con « yo» dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Nota:% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Desactivar a comprobación automática@ action: button \t @ action: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Bloquear a posición da barra de ferramentas@ 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Cor do texto... @ label stroke color \t @ label stroke color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VenSaturday \t Saturday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ConfidencialBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GuaraníName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Explorador de proxyComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "* Cores personalizadas * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BopomofoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HebraicoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 shortcut- key- delimiter/ plain \t shortcut- key- delimiter/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MaoríName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Copiar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Portugués do BrasilName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GalegoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Copiar o enderezo da ligazón @ title: menu HTML frame/ iframe \t @ title: menu HTML frame/ iframe"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 Bsize in 1000 bytes \t size in 1000 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos KhmerKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AVISO:% 1@ warning/ rich \t @ warning/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de BhāIndian National month 7 - ShortNamePossessive \t ԴադարIndian National month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Procurar a anterior@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Substituto baixoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Barra de ferramentas de HTML \t HTML գործիքներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Abrir un recente@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SwahiliName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Frechas adicionais - AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Calculadora de JSaddition \t addition"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Compoñente de KDEName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "InupiaqName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cirílico ampliado- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ruso@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Letras e meses adxuntos CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tema de emoticonas de XMPPComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Dicionario: @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión KFileWriteComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VietnamitaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aumentar o sangrado@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hijri@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 EBmemory size in 2^60 bytes \t memory size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RavIndian National weekday 1 - LongDayName \t Indian National weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "erro descoñecido1: 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Corrixir a ortografía@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AnteriorGoes to next character \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MagabitEthiopian month 8 - LongName \t Ethiopian month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PaoneCoptic month 11 - LongName \t ԴադարCoptic month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Esloveno@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 GBmemory size in 2^40 bytes \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gaélico de IrlandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PagumenEthiopian month 1 - ShortName \t ԴադարEthiopian month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChuanName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "InuktitutName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de KārIndian National month 9 - ShortNamePossessive \t ԴադարIndian National month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MiyazyaEthiopian month 9 - LongNamePossessive \t Ethiopian month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EpepCoptic month 12 - LongName \t Coptic month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KatakanaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SangoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Noruegués (Nynorsk) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de KiahkCoptic month 5 - LongNamePossessive \t ԴադարCoptic month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& lt;% 1gt; @ email/ rich \t @ email/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xestor de finanzas persoaisName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 2 @ filename/ plain \t @ filename/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ThooutCoptic month 2 - LongName \t Coptic month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KannadaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de GenEthiopian month 10 - ShortNamePossessive \t ԴադարEthiopian month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo de letra@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 (% 2) size in bytes \t size in bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KFileModuleComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "4shPanj shanbe short \t ԴադարPanj shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NdongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Unicode@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas de largura media e completaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "fallou a resolución do nomeSocket error code AddressInUse \t Socket error code AddressInUse"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Portugués@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras do sueste de AsiaKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "o socket xa está asociadoSocket error code AlreadyCreated \t Socket error code AlreadyCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "_BAR_% 1_BAR_@ interface/ rich \t @ interface/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo real@ item Font style \t @ item Font style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Fin@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo de letra: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BhādrapadIndian National month 7 - LongName \t Indian National month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SinhalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Subraiado@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Grego ampliadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ThoCoptic month 2 - ShortNamePossessive \t ԴադարCoptic month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Coreano@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Europa occidental@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1% 2@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PNMName \t PBMName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CórnicoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Punxabí/ PanxabíName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Copia de seguridade en cintasComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AfarName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras africanasKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ArmenioKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& RematadoColumn number% 1 \t Column number% 1"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BosnioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configurar@ 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DecembroMonday \t Monday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mensaxería instantáneaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 YiB@ item: intext% 1 is a real number, e. g. 1. 23 days \t @ item: intext% 1 is a real number, e. g. 1. 23 days"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ChaitraIndian National month 2 - LongNamePossessive \t ԴադարIndian National month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo pedido@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Servizo de texto- para- fala con interface D- BusName_BAR_standard desktop component \t Name_BAR_standard desktop component"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "**% 1 ** @ emphasis- strong/ rich \t @ emphasis- strong/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración automática do proxyName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MāgIndian National month 12 - ShortNamePossessive \t ԴադարIndian National month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Serbio latinoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hangul Jamo ampliado- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Jamo compatíbel con HangulKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ContainmentActions de Plasma Comment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MāgIndian National month 12 - ShortName \t Indian National month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Universal@ item Text character set \t Ընդհանուր@ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AzeríName \t ԱդրբեջաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PhālgunIndian National weekday 1 - ShortDayName \t Indian National weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino ampliado- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PsaCoptic weekday 7 - ShortDayName \t ԴադարCoptic weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tema de emoticonas AdiumComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TsongaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino Ampliado- BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QuiñaruandaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Altkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HindiName \t ՀինդիName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PashonsCoptic month 10 - LongNamePossessive \t ԴադարCoptic month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "*% 1@ item/ rich \t @ item/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "conexión recusada activamenteSocket error code ConnectionTimedOut \t Socket error code ConnectionTimedOut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "shnYek- shanbe short \t ԴադարYek- shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión KFileWriteName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento de Latin- 1KCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FebMarch \t March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HatCoptic month 4 - ShortNamePossessive \t ԴադարCoptic month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CirílicoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SukIndian National weekday 6 - ShortDayName \t Indian National weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Predeterminado de ASpell @ item Spelling dictionary:% 1 dictionary name \t @ item Spelling dictionary:% 1 dictionary name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escritorio% 1@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Persoal@ action Beginning of document \t @ action Beginning of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AbrilMay long \t May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "==% 1 ==@ title/ rich \t @ title/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Disco@ item: inmenu circle list style \t @ item: inmenu circle list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KhmerName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MeoCoptic month 13 - ShortName \t Հաշվի չառնելCoptic month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aquí pode escoller o estilo das fontes tipográficas a empregar. @ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Predeterminado -% 1 [% 2] @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Shaof Mehr short \t Դադարof Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "~% 1 ~@ subtitle/ rich \t @ subtitle/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VaishākhIndian National month 3 - LongName \t Indian National month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Insira aquí un termo ou carácter para procuraloGoes to previous character \t Goes to previous character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Anterior carácter no historialGoes to next character \t Goes to next character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aliñar á & dereita@ label right justify \t @ label right justify"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& AtrásOpposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SeneEthiopian month 11 - LongName \t Ethiopian month 11 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RobEthiopian weekday 4 - LongDayName \t Ethiopian weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Atallo «% 1 » no programa% 2 para a acción% 3% 1 is the number of conflicts (hidden),% 2 is the key sequence of the shortcut that is problematic \t % 1 is the number of conflicts (hidden),% 2 is the key sequence of the shortcut that is problematic"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión de importación de KMyMoneyComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MorShahrivar short \t ՀատկությունShahrivar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TobeCoptic month 6 - LongNamePossessive \t ԴադարCoptic month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Estase a cargar a vista previa... Show the author of this item in a list \t Show the author of this item in a list"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Metakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KārtikIndian National month 9 - LongName \t Indian National month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BashquirName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TurcoName \t ԹուրքերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SímbolosKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GurmukhiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ProgramaDescription \t Description"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Acerca de KDE@ title: window \t @ title: window"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Azarof Dei long \t Դադարof Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1/ s% 1 is the label, we add a ':' to it \t % 1 is the label, we add a ':' to it"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LGPL v3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión de navegación melloradaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EsfandDo shanbe short \t ԴադարDo shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Centroeuropeo@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "variante 1dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración de TCP/ IPName \t Կարգավորել TCP/ IP պարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GNU General Public License Versión 2@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Chinés tradicional@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "mvillarino@ users. sourceforge. net \t vgevorgyan@ debian. am"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AsturianoName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Recibiuse unha mensaxeComment \t Հաղորդագրությունը ստացված էComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configura e planifica tarefasName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LuxemburguésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MañIndian National weekday 3 - ShortDayName \t Indian National weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MiyEthiopian month 9 - ShortNamePossessive \t Ethiopian month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos fonéticosKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Carga útilProgram name followed by 'Add On Uploader' \t Program name followed by 'Add On Uploader'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Farof Ordibehesht short \t Դադարof Ordibehesht short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TamilName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ColecciónComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Completación de textos@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado foi revogadoSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cortar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Corenta corespalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Novo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Myanmar ampliado- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Silábico unificado ampliado dos aborixes canadensesKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XeorxianoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "aconteceu un erro descoñecido/ inesperadoSocket error code RemotelyDisconnected \t Socket error code RemotelyDisconnected"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sílabas YiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Compatibilidade con CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Limpar@ action \t Մաքրել@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cargar de novo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xaponés@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AmharicName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Opcións de garda@ action \t Գործողություն@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 KBmemory size in 2^20 bytes \t memory size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PesCoptic weekday 2 - ShortDayName \t ԴադարCoptic weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ note/ plain \t @ note/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 PiBsize in 2^50 bytes \t size in 2^50 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DomingoIndian National month 1 - ShortNamePossessive \t Indian National month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "filemoduleComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ideogramas CJK unificados ampliación AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Eslovaco@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AzarDei long \t Dei long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GaélicoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MarshalésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ placeholder/ plain \t @ placeholder/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BudhavãraIndian National weekday 4 - LongDayName \t Indian National weekday 4 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Familia% 1 descoñecidaSocket error code NoError \t Socket error code NoError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GregoName \t ՀուներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Motor de animación de PlasmaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AimaráName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Polaco@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HamEthiopian month 12 - ShortNamePossessive \t ԴադարEthiopian month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MarWednesday \t Wednesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión de metadatos para KFileComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "UsbecoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EstonianoName \t ԵստոներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Húngaro@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "«% 1 » @ filename/ rich \t @ filename/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ir cara diante no documento@ action \t Տեղեկություն փաստաթղթի մասին@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "grandedictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Elementos de bloqueKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "En liñaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de agoof September \t Դադարof September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ThoCoptic month 2 - ShortName \t Coptic month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SwatiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "pequenodictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EpeCoptic month 12 - ShortName \t Coptic month 12 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HiraganaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Procurar@ label Type of file \t @ label Type of file"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de JyaishthaIndian National month 4 - LongNamePossessive \t Indian National month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo de & letra@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de GenbotEthiopian month 10 - LongNamePossessive \t Ethiopian month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BengalíKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Módulo de configuración para executarNAME OF TRANSLATORS \t NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TobCoptic month 6 - ShortNamePossessive \t ԴադարCoptic month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LingalaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Operación non soportada1: the unknown socket address family number \t 1: the unknown socket address family number"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Riscado@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Frechas adicionais - BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Achegar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Chinés TradicionalName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MehAban short \t Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Recoñecemento óptico de caracteresKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TkyriakēEthiopian month 1 - ShortNamePossessive \t Ethiopian month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SetOctober \t October"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ParemhotepCoptic month 8 - LongName \t ԴադարCoptic month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LunTuesday \t Tuesday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "xabigf@ gmx. net, mvillarino@ gmail. com \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tipo:% 1@ label: checkbox \t @ label: checkbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a operación cronometrada esgotou o tempoSocket error code UnknownError \t Socket error code UnknownError"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Abrir «% 1 »? @ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QuechuaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Axuda@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BhāIndian National month 7 - ShortName \t Indian National month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Nome:% 1@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non se coñece a opción «% 1 ». @ info: shell% 1 is cmdoption name \t @ info: shell% 1 is cmdoption name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GurIndian National weekday 5 - ShortDayName \t Indian National weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SomavãraIndian National weekday 2 - LongDayName \t Indian National weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Cliente: @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Medias marcas de combinaciónKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChhattisgarhiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GroenlandésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de decembroJanuary \t January"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 GiBsize in 2^40 bytes \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gregoriano@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de NehEthiopian month 13 - ShortNamePossessive \t ԴադարEthiopian month 13 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Activar a seguinte páxina@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "/% 1 / @ message/ rich \t @ message/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Letras modificadoras do espaciadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Seleccionar todo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "80dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RundiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "mvillarino@ users. sourceforge. net \t vgevorgyan@ vtgsoftware. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PhāIndian National month 1 - LongName \t Indian National month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GuxaratíKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non foi posíbel atopar no sistema o programa Perl, instáleo por favor. \t Հնարավոր չէ գտնել Perl ծրագիրը, խնդրում ենք տեղադրել այն ։"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChichewaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hangul JamoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MesoreCoptic month 13 - LongName \t Հաշվի չառնելCoptic month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino ampliado- CKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas de presentación árabe - AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "IdoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HatCoptic month 4 - ShortName \t Coptic month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Checo@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "botón esquerdomiddle mouse button \t middle mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Engadir un marcador@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a operación non está soportadaSocket error code Timeout \t Socket error code Timeout"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "UighurName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 TiBsize in 2^40 bytes \t size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hyperkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& CertificadoNAME OF TRANSLATORS \t & ՍերտիֆիկատNAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ParmouteCoptic month 9 - LongName \t ԴադարCoptic month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Seguinte@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Lista despregábel e automático@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Grego@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Código do punto unicode: Character \t Character"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "IslandésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HamEthiopian weekday 5 - ShortDayName \t ԱրժեքEthiopian weekday 5 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Francés@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Por favor, informe dos erros a% 2. @ item Author name in about dialog \t @ item Author name in about dialog"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tai LeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Subíndice@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Xustificar@ label justify fill \t @ label justify fill"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PtiouCoptic weekday 5 - LongDayName \t Coptic weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PaoCoptic month 3 - ShortNamePossessive \t ԴադարCoptic month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tabkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LituanoName \t ԼիտվերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "abcçdefghijklmnñopqrstuvwxzNumbers and characters \t Numbers and characters"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MesoreCoptic month 13 - LongNamePossessive \t Հաշվի չառնելCoptic month 13 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MagEthiopian month 8 - ShortName \t ԴադարEthiopian month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 ZiBsize in 2^70 bytes \t size in 2^70 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FrisioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mostrar os consellos ao iniciarOpposite to Previous \t Opposite to Previous"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XulloAugust long \t August long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DescoñecidoFirst letter of the alphabet (in upper then lower case) \t First letter of the alphabet (in upper then lower case)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GuruvãraIndian National weekday 5 - LongDayName \t Indian National weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Manual@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KārIndian National month 9 - ShortName \t Indian National month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TeluguKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Diagnóstico de aceleradores do Dr. Klash@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "UrdúName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NauruName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tamaño da icona@ item: inmenu Icon size \t @ item: inmenu Icon size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PushtoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos matemáticos diversos - AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TeluguName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "JyaIndian National month 4 - ShortName \t Indian National month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ArbEthiopian weekday 6 - LongDayName \t Ethiopian weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CaxemirName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inicio da liña@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Palabra anterior@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ subtitle/ plain \t @ subtitle/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LGPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hiri MotuName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VaiIndian National month 3 - ShortName \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TahEthiopian month 5 - ShortName \t ԴադարEthiopian month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MāghIndian National month 12 - LongName \t Indian National month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a conexión esgotou o tempo de agardaSocket error code InProgress \t Socket error code InProgress"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "* Cores recentes * palette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a operación bloquearíaSocket error code ConnectionRefused \t Socket error code ConnectionRefused"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos alfanuméricos pechadosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Desexa cargar de novo a configuración de KDE? Reload KDE configuration messagebox \t Reload KDE configuration messagebox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión de KMyMoneyName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Anterior@ action Opposite to Prior \t @ action Opposite to Prior"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hebreo@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Consello do día@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Esquerdatoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento cirílicoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Superkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ferramenta de datos de KDEName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ViñetasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Devanagáricodigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MeshirCoptic month 7 - LongNamePossessive \t Coptic month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de marof April \t Դադարof April"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Unha extensión de KMyMoneyName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ningún@ item: inmenu disc list style \t @ item: inmenu disc list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 YBsize in 1024 bytes \t size in 1024 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QuirguizName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - ize e con acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Nacional da India@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de YakEthiopian month 7 - ShortNamePossessive \t ԴադարEthiopian month 7 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PashonsCoptic month 10 - LongName \t ԴադարCoptic month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Outra codificación (% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Erro na avaliación do scriptComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Afastar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BuxinésKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChecoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non foi posíbel obter o saldo da conta. 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "$% 1@ envar/ rich \t @ envar/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de EsfFarvardin short \t ԴադարFarvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración da impresoraComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tamaño: @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configurar as notificaciónsState of the notified event \t State of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mantendo premido o% 1, prema tamén o% 2@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Procurar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ShaIndian National month 2 - ShortNamePossessive \t ԴադարIndian National month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos matemáticos diversos - BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Orixe: The destination url of a job \t The destination url of a job"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ÁrabeName \t ԱրաբերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Kouji nabotCoptic month 1 - ShortName \t Coptic month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BihariName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "botón non válidoa 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TagbanwaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Winkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DinamarquésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HolandésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Atallo «% 1 » para a acción «% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aquí pode escoller a familia de tipos que se vai empregar. @ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensións védicasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sinale esta opción para cambiar a configuración do estilo da fonte. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas de presentación árabe - BKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PáxEmbaixokeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Alfabetos europeosKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de KiaCoptic month 5 - ShortNamePossessive \t ԴադարCoptic month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tamaño de letra@ action boldify selected text \t @ action boldify selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BretónName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Operadores matemáticosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Un programa de KDEName \t KDE- ի հասարակ ԿիրառությունName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TobeCoptic month 6 - LongName \t Coptic month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Erros de JavaScript \t JavaScript- ի սխալներ"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SábSunday \t Sunday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non foi posíbel atopar no sistema o programa Finger, instáleo por favor. \t Հնարավոր չէ գտնել Finger ծրագիրը, խնդրում ենք տեղադրել այն ։"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BuhidKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KMyMoneyGenericName \t GenericName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MañgalvãIndian National weekday 3 - LongDayName \t Indian National weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Eslavo eclesiásticoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MeskeremEthiopian month 2 - LongName \t Հաշվի չառնելEthiopian month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XaponésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Este programa distribúese baixo os termos da licenza% 1. @ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KPackageGenericName \t KPackageName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Executar só probas de JS \t Աշխատացնել միայն JS տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Executar só probas de HTML \t Աշխատացնել միայն HTML տեստերը"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Seguinte ítem na lista@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras do leste de AsiaKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Bahof Esfand short \t Դադարof Esfand short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MiyazyaEthiopian month 9 - LongName \t Ethiopian month 9 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tema de emoticonas de PidginComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EstadoTitle of the notified event \t Title of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SuecoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Espazo de traballo de Plasma \t Plasma- ի աշխատանքային տարածք"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sinais diacríticos combinatoriosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "WolofName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non é posíbel cargar a imaxeThe color depth of an image \t Հնարավոր չէ կարդալ պատկերըThe color depth of an image"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TifinaghKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TurquemenoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "$% 1 @ message/ plain \t @ message/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Compoñente integrábel para multipart/ mixedName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OccitanoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tamaño@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PaopeCoptic month 3 - LongName \t ՀատկությունCoptic month 3 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RejangKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AbaAzar short \t Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FrancésName \t ՖրանսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HanunooKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OutrosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ĀshwinIndian National month 8 - LongNamePossessive \t Indian National month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Substitutos altosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Monospace@ item Font name \t @ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas xeométricasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 MiBsize in 2^30 bytes \t size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Licenza BSD@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "con acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "variante 2dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TailandésKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "UcraínoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de AgrahayanaIndian National month 10 - LongNamePossessive \t Indian National month 10 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cores reaispalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de abrof May short \t Դադարof May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RomaníName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gardar \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Lituano@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "aconteceu un fallo na redeSocket error code NotSupported \t Socket error code NotSupported"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cirílico Ampliado- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AvestaníName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Limpador da caché de HTTPComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Diminuír o sangrado@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Letra modificadoras do tonKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "abc@ item: inmenu uppercase abc lists \t @ item: inmenu uppercase abc lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Módulo de KDEDName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AzaDei short \t Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sinale esta opción para mudar a configuración da familia de fontes. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Oblicua@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hebreo@ item Calendar system \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de KouCoptic month 1 - LongNamePossessive \t ԴադարCoptic month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Detectouse un atallo ambiguohome page \t home page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "- evaluation \t evaluation"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Introkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tártaro da CrimeaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - isedictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de xuñof July \t Դադարof July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KiaCoptic month 5 - ShortName \t Coptic month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "mvillarino@ users. sourceforge. net \t vardangevorgyan@ yahoo. com"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BahEsfand \t Esfand"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Selectores de variaciónKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Etíope ampliadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SanIndian National weekday 7 - ShortDayName \t ԴադարIndian National weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mostrar a barra de Ferramentas@ action \t Գործիքների հիմնական վահանակ@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ABC@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Báltico@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Azaof Dei short \t Դադարof Dei short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Comezo@ action End of document \t @ action End of document"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AfricánerName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de EpeCoptic month 12 - ShortNamePossessive \t ԴադարCoptic month 12 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Entrada do contrasinal@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GPL v2@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HereroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PaushIndian National month 11 - LongNamePossessive \t ԴադարIndian National month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ExportadorComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PredeterminadoName \t ԼռեյլայնName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EslovacoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento de sinais diacríticos combinatoriosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "falta «% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non escolleu ningún fornecedor. 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Grego e CoptoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SerbioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de abrilof May long \t of May long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MeshirCoptic month 7 - LongName \t Հաշվի չառնելCoptic month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Trazos CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Arribatoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Motor de datos de plasmaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Turco@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Copto@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a máquina remota pechou a conexiónSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MoldavoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de SeneEthiopian month 11 - LongNamePossessive \t ԴադարEthiopian month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sen clasificarBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QedEthiopian weekday 7 - ShortDayName \t Ethiopian weekday 7 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de JyaIndian National month 4 - ShortNamePossessive \t ԴադարIndian National month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BamumKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de FarIndian National month 3 - ShortNamePossessive \t ԴադարIndian National month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TerEthiopian month 6 - LongName \t Ethiopian month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Executar o asistente de informe de errosunknown program name \t unknown program name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DzongcaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "YakatitEthiopian month 7 - LongName \t Ethiopian month 7 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MyanmarKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "o socket non foi creadoSocket error code WouldBlock \t Socket error code WouldBlock"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HathorCoptic month 4 - LongNamePossessive \t ԴադարCoptic month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non foi posíbel iniciar o Centro de axudadictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HathorCoptic month 4 - LongName \t Coptic month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Debuxo de caixaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Marcador automáticoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LepchaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChaitraIndian National month 2 - LongName \t Indian National month 2 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HunspellName \t HSpellName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Apegar@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de febof March \t of March"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Baixo sóraboName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MesEthiopian month 2 - ShortNamePossessive \t ԴադարEthiopian month 2 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BudIndian National weekday 4 - ShortDayName \t Indian National weekday 4 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Procurar un texto@ title: group \t @ title: group"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TerEthiopian month 6 - LongNamePossessive \t ԴադարEthiopian month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Superíndices e subíndicesKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Qt:% 1 KDE Development Platform:% 2% 3:% 4 the 2nd argument is a list of name+address, one on each line \t the 2nd argument is a list of name+address, one on each line"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AaAll letters of the alphabet (in upper/ lower case pairs), followed by numbers \t All letters of the alphabet (in upper/ lower case pairs), followed by numbers"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HedarEthiopian month 4 - LongNamePossessive \t ԴադարEthiopian month 4 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PasCoptic month 10 - ShortName \t ԴադարCoptic month 10 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "RusoName \t ՌուսերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Bopomofo ampliadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ShaMehr short \t Mehr short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TítuloDescription of the notified event \t Description of the notified event"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Detalles de% 1A link to the description of this Get Hot New Stuff item \t Առաջարկների ցուցակA link to the description of this Get Hot New Stuff item"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mostrar a barra de menú@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sotho do surName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PáxEnribakeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MalaialamName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mudar o idioma do programa@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BengalíName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PsoCoptic weekday 6 - ShortDayName \t ԴադարCoptic weekday 6 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GalésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ir para a liña@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sílabas HangulKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non se atopou ningún carácter. A sentence that uses all of the letters of the alphabet \t A sentence that uses all of the letters of the alphabet"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PausaInterkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ParmouteCoptic month 9 - LongNamePossessive \t ԴադարCoptic month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ImpPantkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración as impresoras locais e remotasName \t Կարգավորել ցանցի պարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Frisón (Parsi) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LimbuKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EnchantName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Especificar o cartafol de khtml... \t նՇել khtml- ի թղթապանակը..."}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Módulo de configuración de KDEName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Proba de KNotifyName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FebreiroMarch long \t March long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GPL v3@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gardar as políticas dos widgets remotosDescription \t Description"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EspeciaisEnter 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "JyaishthaIndian National month 4 - LongName \t Indian National month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PaoCoptic month 3 - ShortName \t ԴադարCoptic month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ArmenioName \t ՀայերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado da autoridade de certificación non é válidoSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Alemán@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SindhiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 segundos@ item: intext \t @ item: intext"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "InterlinguaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SukravãraIndian National weekday 6 - LongDayName \t Indian National weekday 6 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Seguinte coincidencia de completación@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MérThursday \t Thursday"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChamorroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Marce VillarinoEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "IídicheName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Editar@ title: menu Game move \t & Խմբագրել@ title: menu Game move"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PamCoptic month 9 - ShortNamePossessive \t ԴադարCoptic month 9 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Espazokeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ThooutCoptic month 2 - LongNamePossessive \t ԴադարCoptic month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Zemberek @ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PshCoptic weekday 3 - ShortDayName \t ԴադարCoptic weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensións IPAKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KhmerKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos matemáticosKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Centro@ action \t Ընդհանուր@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "con « ye» dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ferramentas de datosComment \t Տվյալների գործիքներComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Visualizador de Imaxes integrábelName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ÁrabeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Lista de estilos@ item: inmenu no list style \t @ item: inmenu no list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O grupoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Marce VillarinoEMAIL OF TRANSLATORS \t EMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Desconectado. NAME OF TRANSLATORS \t Կապը խզված է։ NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Ordof Khordad short \t Դադարof Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Dimensións:% 1x% 2 \t Չափեր:% 1x% 2"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TahsasEthiopian month 5 - LongName \t Ethiopian month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Anular a escolla@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChuvashName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PagEthiopian month 1 - LongNamePossessive \t ԴադարEthiopian month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas de compatibilidade CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inicialización da configuración de KDEComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Novo Tai LueKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Caderno de notas (exemplo) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos técnicos diversosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Yaum al- Ahadof Farvardin short \t of Farvardin short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TkyCoptic weekday 1 - LongDayName \t Coptic weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Jalali@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NepalíName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Opcións 3D \t 3D Պարամետրեր"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Trocar a familia do tipo? @ label \t @ label"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - izedictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xabier García Feal, marce villarinoEMAIL OF TRANSLATORS \t Vardan GevorgyanEMAIL OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NehaseEthiopian month 13 - LongName \t Ethiopian month 13 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VolapükName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Limpar o texto no campo de ediciónshow help \t show help"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LimburganoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Reverter@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "YakEthiopian month 7 - ShortName \t Ethiopian month 7 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O contacto está conectadoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aviso:% 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Devanagárico ampliadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xustificado@ title: menu \t @ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AlbanésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de KārtikIndian National month 9 - LongNamePossessive \t ԴադարIndian National month 9 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Saami do norte@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OrisaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensións fonéticas KatakanaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AsamixaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "con « yeyo» dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 KiBsize in 2^20 bytes \t size in 2^20 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XavanésKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChinésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MaltésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Chinés simplificado@ item Text character set \t @ item Text character set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MeskeremEthiopian month 2 - LongNamePossessive \t Ethiopian month 2 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OnteCoptic month 1 - ShortNamePossessive \t Coptic month 1 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CorsoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sotho do norteName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Dummy MetaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Curto automático@ item: inmenu Text Completion \t Պիտակ@ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión de KTextEditorName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Parénteses automáticosComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento de XeorxianoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ĀshādhaIndian National month 5 - LongName \t Indian National month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Aspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Imp Pantkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MarApril \t ԴադարApril"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non especificadareplace 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EsperantoName \t ԷսպերանտոName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LetónName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XhosaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ACsubtraction \t subtraction"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SinhalaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1:% 2@ warning/ plain \t @ warning/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HúngaroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AltGrkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Caracteres de descrición ideográficaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SomIndian National weekday 2 - ShortDayName \t Indian National weekday 2 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos diversosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Vista de navegadorComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Axustar ao ancho da páxina@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado non se aplica ao servidor indicadoSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suprkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Motor de datos de probasName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Negriña@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SamaritanoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Controlkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EhuEthiopian weekday 1 - LongDayName \t Ethiopian weekday 1 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ver a saída HTML \t Արտածումը դիտել HTML տեսքով"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado caducouSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "o socket xa está creadoSocket error code NotBound \t Socket error code NotBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EslovenoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Phags- paKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Desfacer@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Onteconcatenation of dates and time \t concatenation of dates and time"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xestor de arrinque (LILO) Comment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de EpepCoptic month 12 - LongNamePossessive \t ԴադարCoptic month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tema de emoticonas de KDEComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sen errosSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras centroasiáticasKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KiahkCoptic month 5 - LongName \t ԴադարCoptic month 5 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ideogramas de compatibilidade CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de YakatitEthiopian month 7 - LongNamePossessive \t Ethiopian month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OromoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Subirkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PaoneCoptic month 11 - LongNamePossessive \t ԴադարCoptic month 11 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ShrIndian National month 6 - ShortName \t Indian National month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Anterior ítem na lista@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino ampliado - DKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Estatísticas RPMName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Infraestrutura de almacenaxe para KConfigName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - ise e sen acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Padróns de BrailleKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SegnoEthiopian weekday 2 - LongDayName \t Ethiopian weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras do medio lesteKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TigrignanName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "a operación xa está en marchaSocket error code NetFailure \t Socket error code NetFailure"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TamilKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Predeterminado de 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KCertPartName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PasCoptic month 10 - ShortNamePossessive \t ԴադարCoptic month 10 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TibetanoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Licenza pública Q@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SirioKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ĀshIndian National month 5 - ShortName \t Indian National month 5 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ValencianoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TahsasEthiopian month 5 - LongNamePossessive \t ԴադարEthiopian month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento árabeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cores oxygenpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Visor dos rexistros do sistemaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "modificadoDocument/ application separator in titlebar \t Document/ application separator in titlebar"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Abaof Azar short \t Դադարof Azar short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ClasificadoBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AbxasioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tai ThamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SardoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ShrIndian National month 6 - ShortNamePossessive \t ԴադարIndian National month 6 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escrituras filipinasKCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Árabe- Índica do lestedigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TaxicoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Meetei MayekKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TwiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ĀswIndian National month 8 - ShortNamePossessive \t ԴադարIndian National month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Módulo do daemon KSSLComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TahEthiopian month 5 - ShortNamePossessive \t ԴադարEthiopian month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ndebele do surName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OsetoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MongolName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Non usar Xvfb \t Չօգտագործել Xvfb"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cadrado@ item: inmenu numbered lists \t @ item: inmenu numbered lists"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Insire a data e hora actuaisName \t Մտցրեք ընթացիք Ժամը և ԱմսաթիվըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Danés@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Imaxes de controlKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CriptografíaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ParemhotepCoptic month 8 - LongNamePossessive \t ԴադարCoptic month 8 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos de hexagrama YijingKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cores con nome% 1 is the number of paths,% 2 is the list of paths (with newlines between them) \t % 1 is the number of paths,% 2 is the list of paths (with newlines between them)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Usbeco (Cirílico) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "5shJumee short \t ԴադարJumee short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ĀswIndian National month 8 - ShortName \t Indian National month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 días@ item: intext% 1 is a real number, e. g. 1. 23 hours \t @ item: intext% 1 is a real number, e. g. 1. 23 hours"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Alemán (nova ortografía) @ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Licenza artística@ item license (short name) \t @ item license (short name)"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Subir@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PhālgunIndian National month 1 - ShortName \t ԴադարIndian National month 1 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Liña grosa duplaBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Árabe- Índicadigit set \t digit set"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Erro na obtención do scriptComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MiyEthiopian month 9 - ShortName \t Ethiopian month 9 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 EiBsize in 2^60 bytes \t size in 2^60 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Castelán@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ĀshIndian National month 5 - ShortNamePossessive \t ԴադարIndian National month 5 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AgoSeptember \t September"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Como texto simples@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HausaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensión QImageIOHandlerName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado non é apropriado para este finSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración da redeComment \t Ցանցային պարամետրերComment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OghamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escolla o día de hoxe@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mudar o & texto... @ 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KouCoptic month 1 - LongName \t Coptic month 1 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de BhādrapadIndian National month 7 - LongNamePossessive \t Indian National month 7 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Portugués Brasileiro@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Substituto alto de uso privadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Chinés (Hong Kong) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "A veloz troita mergullouse axiña no río, o pescador perdéraa. 1, 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos ao estilo de letrasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ item/ plain \t @ item/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PecharFreeze the window geometry \t Freeze the window geometry"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "EtíopeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 minutos@ item: intext% 1 is a real number, e. g. 1. 23 seconds \t @ item: intext% 1 is a real number, e. g. 1. 23 seconds"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - 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/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Apegar a selección@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Serif@ item Font name \t Ստուգել@ item Font name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gregoriano (Proléptico) @ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Codificación: @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& lt;% 1 gt; @ email/ plain \t @ email/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Realce do texto... @ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ParCoptic month 8 - ShortName \t ԴադարCoptic month 8 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "QedameEthiopian weekday 7 - LongDayName \t Ethiopian weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PortuguésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "VascoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ĀshwinIndian National month 8 - LongName \t Indian National month 8 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas numéricasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración automática do proxyComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "A combinación de teclas «% 1 » tamén está asinada á acción estándar «% 2 », que é usada por algúns programas. Desexa realmente empregala tamén como un atallo global? What the user inputs now will be taken as the new shortcut \t What the user inputs now will be taken as the new shortcut"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KanbunKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Extensións fonéticasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos de divisasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KScanName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Páxinas de separaciónBanner page at start \t Banner page at start"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de SenEthiopian month 11 - ShortNamePossessive \t ԴադարEthiopian month 11 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GenbotEthiopian month 10 - LongName \t Ethiopian month 10 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Saír da pantalla completaEncodings menu \t Encodings menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Obter novidadesProgram name followed by 'Add On Installer' \t Program name followed by 'Add On Installer'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ShrāvanaIndian National month 6 - LongName \t Indian National month 6 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BielorrusoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Copto@ item Calendar system \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TeqEthiopian month 3 - ShortNamePossessive \t ԴադարEthiopian month 3 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MagEthiopian month 8 - ShortNamePossessive \t ԴադարEthiopian month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OrixaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Fondo de escritorio de PlasmaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sinale esta opción para mudar a configuración do tamaño das letras. @ info: tooltip \t @ info: tooltip"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GuxaratiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "botón centralright mouse button \t right mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de HedEthiopian month 4 - ShortNamePossessive \t Ethiopian month 4 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SundanésKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "JomShanbe short \t Shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ol ChikiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Adar II@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 horas@ item: intext% 1 is a real number, e. g. 1. 23 minutes \t @ item: intext% 1 is a real number, e. g. 1. 23 minutes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Seguinte palabra@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PesnauCoptic weekday 2 - LongDayName \t ԴադարCoptic weekday 2 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 kBsize in 10^6 bytes \t size in 10^6 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NehEthiopian month 13 - ShortName \t Ethiopian month 13 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas verticaisKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KomiName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Saír@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Orientacióntoolbar position string \t toolbar position string"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Script de proxy non válidoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "YorubáName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Personalizada@ item license \t @ item license"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cor: NAME OF TRANSLATORS \t Գույն: NAME OF TRANSLATORS"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento de extensións fonéticasKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Tai VietKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Marce VillarinoEMAIL OF TRANSLATORS \t Vardan Gevorgyan"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "GrupoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PaliName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TibetanoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xestor persoal de certificados integrábelName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Procurar a seguinte@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Completación de subcadeas@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Foi recibida unha mensaxeName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Anterior coincidencia de completación@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Facer de novo@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Mudar o tamaño dos tipos? @ label: listbox Font size \t @ label: listbox Font size"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ManxName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KMyMoney OFXComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "InglésName \t ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Gravenormal severity \t normal severity"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de MāghIndian National month 12 - LongNamePossessive \t Indian National month 12 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ucraíno@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Kayah LiKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "60dictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ChaIndian National month 2 - ShortName \t Indian National month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Lembrar a acción para os ficheiros deste tipo@ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MacedonioName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración de TCP/ IPName \t Կարգավորել TCP/ IP ՊարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FinlandésName \t ՖիներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Programador de tarefasComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TagaloKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KashubíName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "- sen nome- Custom color \t Custom color"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KhordadTir long \t Tir long"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XulAugust \t August"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "*% 1 * @ emphasis/ rich \t @ emphasis/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xuliano@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SegredoBanner page \t Banner page"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Bielorruso (Latino) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hspell @ item: inlistbox Spell checker \t @ item: inlistbox Spell checker"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Xestor de usuariosName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inglés de GBName \t Բրիտանական ԱնգլերենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos e frechas diversosKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino ampliado adicionalKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Considerar as & palabras apegadas como erros de ortografía@ label: listbox \t @ label: listbox"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SudanésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Descoñecido@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Operadores matemáticos adicionaisKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Protocolo Microsoft Media ServerComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Área de uso privadoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 Versión% 2 nbsp; Program name, version and KDE platform version; do not translate 'Development Platform' \t Program name, version and KDE platform version; do not translate 'Development Platform'"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XuñJuly \t July"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Abrir con% 1@ info \t @ info"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Acción longaDescription \t ԼատիներենX- KDE- PluginInfo- Category"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de TequemtEthiopian month 3 - LongNamePossessive \t Ethiopian month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Editor de textos integradoComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Modo a pantalla completa@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CazaxoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AbrMay short \t May short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Noruegués@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MesEthiopian month 2 - ShortName \t Հաշվի չառնելEthiopian month 2 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Geo ShapeName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HedarEthiopian month 4 - LongName \t Ethiopian month 4 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Sueco@ item Spelling dictionary \t @ item Spelling dictionary"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ValónName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de VaishākhIndian National month 3 - LongNamePossessive \t Indian National month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Esckeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Abrir con... @ label: button \t @ label: button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración de init gardadaComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MongolKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BalinésKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Latino básicoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "o socket non está asociadoSocket error code NotCreated \t Socket error code NotCreated"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "«% 1 » @ icode/ rich \t @ icode/ rich"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "→keyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 TBmemory size in 2^40 bytes \t memory size in 2^40 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de Mehof Aban short \t Դադարof Aban short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "sufixos - ise e con acentosdictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 MBmemory size in 2^30 bytes \t memory size in 2^30 bytes"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Conflito cun atallo global rexistradoleft mouse button \t left mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "En decimal: KCharSelect section name \t KCharSelect section name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Editor avanzado de textos integradoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O enderezo de correo ao que se enviará este informe de erro. Email receiver address \t Email receiver address"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PsabbatonCoptic weekday 7 - LongDayName \t Coptic weekday 7 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "mediodictionary variant \t dictionary variant"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SenEthiopian month 11 - ShortName \t Ethiopian month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Hangul Jamo ampliado- AKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HedEthiopian month 4 - ShortName \t Ethiopian month 4 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ZulúComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inskeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PauIndian National month 11 - ShortName \t ԴադարIndian National month 11 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HamleEthiopian month 12 - LongName \t ԱրժեքEthiopian month 12 - LongName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Círculo@ item: inmenu square list style \t @ item: inmenu square list style"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "SomalíName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PhāIndian National month 1 - LongNamePossessive \t ԴադարIndian National month 1 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CastelánName \t ԻսպաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TártaroName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KhoTir short \t Tir short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "2shSe shanbe short \t ԴադարSe shanbe short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Axustar á páxina@ action \t Դադար@ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de PaopeCoptic month 3 - LongNamePossessive \t ԴադարCoptic month 3 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "HamusEthiopian weekday 5 - LongDayName \t ԴադարEthiopian weekday 5 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Configuración da redeName \t Կարգավորել ցանցի պարամետրերըName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento de radicais CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Símbolos e puntuación CJKKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TswanaName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Cores do arco- da- vellapalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CroataName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "NovDecember \t December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "BurmésName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Suplemento etíopeKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "(C) 2005 Jeroen Wijnhoutpalette name \t palette name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Bengalí (India) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "DevanagáricoKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "FixianoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ParCoptic month 8 - ShortNamePossessive \t ԴադարCoptic month 8 - ShortNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Inserir unha liña de regra@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "KikuyuName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Puntuación xeralKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PshomentCoptic weekday 3 - LongDayName \t ԴադարCoptic weekday 3 - LongDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Adaptador de extensión de KHTMLComment \t Comment"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MakEthiopian weekday 3 - ShortDayName \t Ethiopian weekday 3 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Automática@ item: inmenu Text Completion \t @ item: inmenu Text Completion"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "MalayalamKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ShrāvanaIndian National month 6 - LongNamePossessive \t Indian National month 6 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Informar dun erro@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Desexa continuar a procura polo comezo? @ action: button Restart find & replace \t @ action: button Restart find & replace"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Menúkeyboard- key- name \t keyboard- key- name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TahitianoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "CoreanoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Regular@ item font \t @ item font"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "botón dereitoa nonexistent value of mouse button \t a nonexistent value of mouse button"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "% 1 @ envar/ plain \t @ envar/ plain"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de ĀshādhaIndian National month 5 - LongNamePossessive \t Indian National month 5 - LongNamePossessive"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "O certificado non é válidoSSL error \t SSL error"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "de novof December \t Դադարof December"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Estilo da fonte tipográfica: @ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "AlemánName \t ԳերմաներենName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "XeorxianoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "o enderezo xa está a ser usadoSocket error code AlreadyBound \t Socket error code AlreadyBound"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Contrasinal de pouca seguridadeOpposite to Back \t Opposite to Back"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TobCoptic month 6 - ShortName \t Coptic month 6 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formas numéricas índicas habituaisKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Limpar o texto@ title: menu \t Մաքրել@ title: menu"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Etíope@ item Calendar system \t @ item Calendar system"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Escoller a fonte tipográfica@ info: whatsthis \t @ info: whatsthis"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "LisuKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Crear combinacións & raíz/ afixo que non están no dicionario@ option: check \t @ option: check"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "PolacoName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Baixo saxónName \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "TeqEthiopian month 3 - ShortName \t Ethiopian month 3 - ShortName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "& Negriña@ action italicize selected text \t @ action italicize selected text"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Noruegués (Bokmaal) Name \t Name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Ir un paso cara atrásgo forward \t go forward"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Axustar ao alto da páxina@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Formatar o debuxador@ action \t @ action"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "ThaanaKCharselect unicode block name \t KCharselect unicode block name"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Kouji nabotCoptic weekday 1 - ShortDayName \t Coptic weekday 1 - ShortDayName"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "OrdKhordad short \t Khordad short"}
{"url": "https://object.pouta.csc.fi/OPUS-KDE4/v2/moses/gl-hy.txt.zip", "collection": "KDE4", "source": "KDE4", "original_code": "gl - hy", "text": "Máximo segredo@ action: button filter- yes \t @ action: button filter- yes"}
|