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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Matrix package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Matrix 1.7-1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 13:22-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: Csparse.c:26 Csparse.c:61 Csparse.c:86 Csparse.c:113 Csparse.c:127
#: Csparse.c:132 Csparse.c:137 Csparse.c:411
#, c-format
msgid "'%s' failed"
msgstr ""
#: Csparse.c:35 cholmod-common.c:54
#, c-format
msgid "'%s' slot is not increasing within columns after sorting"
msgstr ""
#: Csparse.c:57
#, c-format
msgid "'%s' is empty or not square"
msgstr ""
#: Csparse.c:59 Csparse.c:81 Csparse.c:104 solve.c:43 solve.c:988
#, c-format
msgid "dimensions of '%s' and '%s' are inconsistent"
msgstr ""
#: Csparse.c:83
#, c-format
msgid "%s(%s, %s) requires m-by-n '%s' with m >= n > 0"
msgstr ""
#: Csparse.c:106
#, c-format
msgid "%s(%s, %s) requires m-by-n '%s' with n >= m > 0"
msgstr ""
#: Csparse.c:194 coerce.c:220 coerce.c:240 coerce.c:250 coerce.c:902
#: coerce.c:908 coerce.c:1012 coerce.c:1498 coerce.c:1518 coerce.c:1528
#: coerce.c:2058 coerce.c:2253 coerce.c:2259 coerce.c:2265 coerce.c:2394
#: coerce.c:2401 coerce.c:2491 coerce.c:2626 coerce.c:2704 coerce.c:2726
#: coerce.c:4324 coerce.c:4393 dense.c:690 matmult.c:939 matmult.c:1291
#: solve.c:719 solve.c:972 solve.c:1104 sparse.c:1234 sparse.c:1626
#, c-format
msgid "invalid '%s' to '%s'"
msgstr ""
#: Csparse.c:409
#, c-format
msgid "failed to open file \"%s\" for writing"
msgstr ""
#: attrib.c:229
msgid "invalid factor name"
msgstr ""
#: attrib.c:233
#, c-format
msgid "attempt to set factor on %s without '%s' slot"
msgstr ""
#: bind.c:46 bind.c:153
msgid "number of rows of matrices must match"
msgstr ""
#: bind.c:48 bind.c:155
msgid "number of columns of matrices must match"
msgstr ""
#: bind.c:51 bind.c:158 bind.c:182 bind.c:206 cholmod-common.c:606
#: cholmod-common.c:757 cholmod-common.c:872 cholmod-common.c:973
#: cholmod-etc.c:183 cholmod-etc.c:283 cholmod-etc.c:330 coerce.c:215
#: coerce.c:235 coerce.c:260 coerce.c:268 coerce.c:276 coerce.c:341
#: coerce.c:1493 coerce.c:1513 coerce.c:1540 coerce.c:1548 coerce.c:1556
#: matmult.c:28 matmult.c:50 matmult.c:56
#, c-format
msgid "dimensions cannot exceed %s"
msgstr ""
#: bind.c:210
msgid "number of rows of result is not a multiple of vector length"
msgstr ""
#: bind.c:212
msgid "number of columns of result is not a multiple of vector length"
msgstr ""
#: bind.c:626 bind.c:691 sparse.c:913 sparse.c:994
#, c-format
msgid "%s cannot exceed %s"
msgstr ""
#: bind.c:756 bind.c:853 cholmod-common.c:976 cholmod-etc.c:333 coerce.c:29
#: coerce.c:515 coerce.c:808 coerce.c:942 coerce.c:2769 coerce.c:3038
#: coerce.c:3143 dense.c:913 matmult.c:151 matmult.c:212 matmult.c:291
#: matmult.c:379 matmult.c:456 matmult.c:550 matmult.c:868 subscript.c:1232
#: subscript.c:1417 utils-R.c:32
#, c-format
msgid "attempt to allocate vector of length exceeding %s"
msgstr ""
#: bind.c:858 matmult.c:1357
msgid "should never happen ..."
msgstr ""
#: cholmod-common.c:11 cholmod-common.c:34 validity.c:29 validity.c:149
#: validity.c:228 validity.c:247 validity.c:256 validity.c:298 validity.c:315
#: validity.c:349 validity.c:366 validity.c:400 validity.c:402 validity.c:438
#: validity.c:464 validity.c:484 validity.c:925 validity.c:958 validity.c:1040
#: validity.c:1060 validity.c:1126 validity.c:1128 validity.c:1176
#: validity.c:1239 validity.c:1241 validity.c:1287 validity.c:1334
#: validity.c:1383 validity.c:1416 validity.c:1426 validity.c:1439
#: validity.c:1493 validity.c:1495 validity.c:1527 validity.c:1539
#: validity.c:1562 validity.c:1625 validity.c:1644 validity.c:1646
#: validity.c:1678 validity.c:1713 validity.c:1741
#, c-format
msgid "'%s' slot is not of type \"%s\""
msgstr ""
#: cholmod-common.c:14 validity.c:273 validity.c:284 validity.c:300
#: validity.c:351 validity.c:486 validity.c:927 validity.c:960 validity.c:1062
#: validity.c:1130 validity.c:1178 validity.c:1243 validity.c:1289
#: validity.c:1428 validity.c:1445 validity.c:1497 validity.c:1499
#: validity.c:1529 validity.c:1541 validity.c:1564 validity.c:1680
#: validity.c:1717 validity.c:1745 validity.c:1795
#, c-format
msgid "'%s' slot does not have length %s"
msgstr ""
#: cholmod-common.c:18 validity.c:303 validity.c:354 validity.c:1633
#: validity.c:1653 validity.c:1655
#, c-format
msgid "first element of '%s' slot is not 0"
msgstr ""
#: cholmod-common.c:23 cholmod-common.c:46 validity.c:34 validity.c:307
#: validity.c:325 validity.c:358 validity.c:376 validity.c:412 validity.c:414
#: validity.c:490 validity.c:1007 validity.c:1019 validity.c:1066
#: validity.c:1139 validity.c:1151 validity.c:1252 validity.c:1264
#: validity.c:1293 validity.c:1344 validity.c:1393 validity.c:1432
#: validity.c:1452 validity.c:1533 validity.c:1549 validity.c:1574
#: validity.c:1638 validity.c:1658 validity.c:1660 validity.c:1687
#, c-format
msgid "'%s' slot contains NA"
msgstr ""
#: cholmod-common.c:26 validity.c:309 validity.c:360
#, c-format
msgid "'%s' slot is not nondecreasing"
msgstr ""
#: cholmod-common.c:29 validity.c:311 validity.c:362
#, c-format
msgid "first differences of '%s' slot exceed %s"
msgstr ""
#: cholmod-common.c:37 validity.c:317 validity.c:368
#, c-format
msgid "'%s' slot has length less than %s"
msgstr ""
#: cholmod-common.c:49 validity.c:327 validity.c:378 validity.c:416
#: validity.c:419 validity.c:492 validity.c:1009 validity.c:1068
#: validity.c:1141 validity.c:1153 validity.c:1254 validity.c:1266
#: validity.c:1346 validity.c:1395 validity.c:1454 validity.c:1576
#: validity.c:1689
#, c-format
msgid "'%s' slot has elements not in {%s}"
msgstr ""
#: cholmod-common.c:210
#, c-format
msgid "'%s' failed in '%s': %s"
msgstr ""
#: cholmod-common.c:294 cholmod-common.c:1070 cholmod-common.c:1073
#: cholmod-common.c:1106 cholmod-common.c:1124
#, c-format
msgid "'%s' failed in '%s'"
msgstr ""
#: cholmod-common.c:599 cholmod-common.c:602 cholmod-common.c:604
#: cholmod-common.c:750 cholmod-common.c:753 cholmod-common.c:755
#: cholmod-common.c:865 cholmod-common.c:868 cholmod-common.c:870
#: cholmod-common.c:967 cholmod-common.c:969 cholmod-etc.c:177
#: cholmod-etc.c:179 cholmod-etc.c:181 cholmod-etc.c:277 cholmod-etc.c:279
#: cholmod-etc.c:281 cholmod-etc.c:324 cholmod-etc.c:326 cs-etc.c:43
#, c-format
msgid "wrong '%s'"
msgstr ""
#: cholmod-common.c:609 cholmod-etc.c:186
#, c-format
msgid "'%s' would overflow type \"%s\""
msgstr ""
#: cholmod-common.c:613 cholmod-etc.c:190
#, c-format
msgid "n+1 would overflow type \"%s\""
msgstr ""
#: cholmod-common.c:618 cholmod-etc.c:195
#, c-format
msgid "leading principal minor of order %d is not positive"
msgstr ""
#: cholmod-common.c:621 cholmod-etc.c:198
#, c-format
msgid "leading principal minor of order %d is zero"
msgstr ""
#: cholmod-common.c:971 cholmod-etc.c:328
msgid "leading dimension not equal to number of rows"
msgstr ""
#: cholmod-common.c:1035
#, c-format
msgid ""
"invalid simplicial Cholesky factorization: structural zero on main diagonal "
"in column %d"
msgstr ""
#: cholmod-common.c:1095
#, c-format
msgid "CHOLMOD error '%s' at file '%s', line %d"
msgstr ""
#: cholmod-common.c:1098
#, c-format
msgid "CHOLMOD warning '%s' at file '%s', line %d"
msgstr ""
#: coerce.c:24 coerce.c:364 coerce.c:1047
#, c-format
msgid "attempt to construct non-square %s"
msgstr ""
#: coerce.c:186 coerce.c:473 coerce.c:1464 coerce.c:1619
#, c-format
msgid "second argument of '%s' does not specify a subclass of %s"
msgstr ""
#: coerce.c:194 coerce.c:200 coerce.c:481 coerce.c:487 coerce.c:922
#: coerce.c:1472 coerce.c:1478 coerce.c:1627 coerce.c:1633 coerce.c:2272
#: coerce.c:3341 coerce.c:3346
#, c-format
msgid "'%s' must be \"%s\" or \"%s\""
msgstr ""
#: coerce.c:246 coerce.c:493 coerce.c:790 coerce.c:914 coerce.c:1524
#: coerce.c:1639 dense.c:316 dense.c:1096 dense.c:1672 dense.c:1677
#: dense.c:1923 dense.c:2118 sparse.c:784 sparse.c:2449 sparse.c:3141
#: sparse.c:3146 sparse.c:3151 sparse.c:3427 sparse.c:3664
#, c-format
msgid "'%s' must be %s or %s"
msgstr ""
#: coerce.c:266 coerce.c:274 coerce.c:285 coerce.c:1546 coerce.c:1554
#: coerce.c:1565
msgid "nonempty vector supplied for empty matrix"
msgstr ""
#: coerce.c:287 coerce.c:1567
#, c-format
msgid "vector length (%lld) exceeds matrix length (%d * %d)"
msgstr ""
#: coerce.c:290 coerce.c:1570
#, c-format
msgid "matrix length (%d * %d) is not a multiple of vector length (%lld)"
msgstr ""
#: coerce.c:518
#, c-format
msgid "coercing n-by-n %s to %s is not supported for n*n exceeding %s"
msgstr ""
#: coerce.c:522 coerce.c:812 coerce.c:946
#, c-format
msgid "sparse->dense coercion: allocating vector of size %0.1f GiB"
msgstr ""
#: coerce.c:1193 coerce.c:1938 coerce.c:2945 coerce.c:2951
#, c-format
msgid "attempt to construct %s with more than %s nonzero entries"
msgstr ""
#: coerce.c:3243
msgid "attempt to pack non-square matrix"
msgstr ""
#: coerce.c:3417 coerce.c:3587
#, c-format
msgid "unable to aggregate %s with '%s' and '%s' slots of length exceeding %s"
msgstr ""
#: coerce.c:4208
#, c-format
msgid "attempt to pack a %s"
msgstr ""
#: coerce.c:4327 dense.c:1226 sparse.c:2580
#, c-format
msgid "'%s' must be %s or %s or %s"
msgstr ""
#: dense.c:204 dense.c:209 sparse.c:590 sparse.c:595
#, c-format
msgid "'%s' (%d) must be an integer from %s (%d) to %s (%d)"
msgstr ""
#: dense.c:212 sparse.c:598
#, c-format
msgid "'%s' (%d) must be less than or equal to '%s' (%d)"
msgstr ""
#: dense.c:422 sparse.c:1070
#, c-format
msgid "replacement diagonal has incompatible type \"%s\""
msgstr ""
#: dense.c:431 sparse.c:1079
msgid "replacement diagonal has wrong length"
msgstr ""
#: dense.c:616 sparse.c:1275
msgid "attempt to symmetrize a non-square matrix"
msgstr ""
#: dense.c:715 sparse.c:1653
msgid "attempt to get symmetric part of non-square matrix"
msgstr ""
#: dense.c:867 sparse.c:2083
msgid "attempt to get skew-symmetric part of non-square matrix"
msgstr ""
#: dense.c:1667 sparse.c:3136
#, c-format
msgid "'%s' must be %d or %d"
msgstr ""
#: dense.c:2150
#, c-format
msgid "incorrect left cyclic shift, j (%d) < 0"
msgstr ""
#: dense.c:2153
#, c-format
msgid "incorrect left cyclic shift, j (%d) >= k (%d)"
msgstr ""
#: dense.c:2156
#, c-format
msgid "incorrect left cyclic shift, k (%d) > ldx (%d)"
msgstr ""
#: dense.c:2209
msgid "unknown error in getGivens"
msgstr ""
#: dense.c:2218 dense.c:2232 dense.c:2262
msgid "X must be a numeric (double precision) matrix"
msgstr ""
#: dense.c:2234 dense.c:2264
msgid "y must be a numeric (double precision) matrix"
msgstr ""
#: dense.c:2238 dense.c:2268
#, c-format
msgid "number of rows in y (%d) does not match number of rows in X (%d)"
msgstr ""
#: dense.c:2254
#, c-format
msgid "LAPACK dposv returned error code %d"
msgstr ""
#: dense.c:2282 dense.c:2288
#, c-format
msgid "LAPACK dgels returned error code %d"
msgstr ""
#: dense.c:2307
msgid "X must be a real (numeric) matrix"
msgstr ""
#: dense.c:2310
#, c-format
msgid "tol, given as %g, must be >= 0"
msgstr ""
#: dense.c:2312
#, c-format
msgid "tol, given as %g, must be <= 1"
msgstr ""
#: dense.c:2341 dense.c:2349
#, c-format
msgid "LAPACK dgeqrf returned error code %d"
msgstr ""
#: dense.c:2354 dense.c:2377
#, c-format
msgid "LAPACK dtrcon returned error code %d"
msgstr ""
#: determinant.c:33
msgid "determinant of non-square matrix is undefined"
msgstr ""
#: determinant.c:276
#, c-format
msgid "%s(<%s>) does not support structurally rank deficient case"
msgstr ""
#: expm.c:39
msgid "Matrix exponential requires square, non-null matrix"
msgstr ""
#: expm.c:56 expm.c:58
#, c-format
msgid "dgeMatrix_exp: LAPACK routine dgebal returned %d"
msgstr ""
#: expm.c:96
#, c-format
msgid "dgeMatrix_exp: dgetrf returned error code %d"
msgstr ""
#: expm.c:98
#, c-format
msgid "dgeMatrix_exp: dgetrs returned error code %d"
msgstr ""
#: factor.c:330
msgid "dgeMatrix_Schur: argument x must be a non-null square matrix"
msgstr ""
#: factor.c:343
msgid "dgeMatrix_Schur: first call to dgees failed"
msgstr ""
#: factor.c:352
#, c-format
msgid "dgeMatrix_Schur: dgees returned code %d"
msgstr ""
#: factor.c:403 sparse.c:196
#, c-format
msgid "'%s' is not a number"
msgstr ""
#: factor.c:424
#, c-format
msgid "LU factorization of m-by-n %s requires m == n"
msgstr ""
#: factor.c:433
#, c-format
msgid "LU factorization of %s failed: out of memory or near-singular"
msgstr ""
#: factor.c:510
#, c-format
msgid "QR factorization of m-by-n %s requires m >= n"
msgstr ""
#: factor.c:519
#, c-format
msgid "QR factorization of %s failed: out of memory"
msgstr ""
#: factor.c:619 factor.c:897
#, c-format
msgid "'%s' is not a number or not finite"
msgstr ""
#: idz.c:467 idz.c:528
#, c-format
msgid "incompatible '%s' and '%s' in '%s'"
msgstr ""
#: kappa.c:10 kappa.c:54
#, c-format
msgid "argument '%s' is not of type \"%s\""
msgstr ""
#: kappa.c:13 kappa.c:57
#, c-format
msgid "argument '%s' has length %d"
msgstr ""
#: kappa.c:17 kappa.c:61
#, c-format
msgid "argument '%s' (\"%s\") does not have string length %d"
msgstr ""
#: kappa.c:41
#, c-format
msgid ""
"argument '%s' (\"%s\") is not \"%s\", \"%s\", \"%s\", \"%s\", \"%s\", or "
"\"%s\""
msgstr ""
#: kappa.c:75
#, c-format
msgid "argument '%s' (\"%s\") is not \"%s\", \"%s\", or \"%s\""
msgstr ""
#: kappa.c:238
#, c-format
msgid "%s(%s) is undefined: '%s' is not square"
msgstr ""
#: matmult.c:107 matmult.c:210 matmult.c:289 matmult.c:377 matmult.c:454
#: matmult.c:548 matmult.c:812 matmult.c:862
msgid "non-conformable arguments"
msgstr ""
#: matmult.c:782 matmult.c:810
#, c-format
msgid "'%s' does not support complex matrices"
msgstr ""
#: objects.c:23
#, c-format
msgid "unexpected type \"%s\" in '%s'"
msgstr ""
#: objects.c:41 objects.c:58
#, c-format
msgid "unexpected kind \"%c\" in '%s'"
msgstr ""
#: perm.c:26 perm.c:106
msgid "attempt to get sign of non-permutation"
msgstr ""
#: perm.c:51 perm.c:123
msgid "attempt to invert non-permutation"
msgstr ""
#: perm.c:66
msgid "invalid transposition vector"
msgstr ""
#: perm.c:79 perm.c:81 perm.c:96 perm.c:98 perm.c:113 perm.c:133 perm.c:145
#, c-format
msgid "'%s' is not of type \"%s\""
msgstr ""
#: perm.c:83 perm.c:100 perm.c:147
#, c-format
msgid "'%s' does not have length %d"
msgstr ""
#: perm.c:86 perm.c:103
#, c-format
msgid "'%s' is NA"
msgstr ""
#: perm.c:115 perm.c:138
#, c-format
msgid "'%s' or '%s' is not of type \"%s\""
msgstr ""
#: perm.c:117 perm.c:140
#, c-format
msgid "'%s' or '%s' does not have length %d"
msgstr ""
#: perm.c:120 perm.c:143
#, c-format
msgid "'%s' or '%s' is NA"
msgstr ""
#: perm.c:136
#, c-format
msgid "'%s' has length exceeding %s"
msgstr ""
#: perm.c:150
#, c-format
msgid "'%s' is NA or less than %s"
msgstr ""
#: solve.c:38
#, c-format
msgid "'%s' is not square"
msgstr ""
#: solve.c:497
#, c-format
msgid "%s(<%s>, <%s>) failed: out of memory"
msgstr ""
#: solve.c:618
#, c-format
msgid "attempt to construct %s with more than %s nonzero elements"
msgstr ""
#: subscript.c:1542 subscript.c:1695 subscript.c:1938 subscript.c:2122
#, c-format
msgid "%s too dense for %s; would have more than %s nonzero entries"
msgstr ""
#: subscript.c:2209
#, c-format
msgid "NA subscripts in %s not supported for '%s' inheriting from %s"
msgstr ""
#: t_subassign.c:141
msgid "invalid class of 'x' in Csparse_subassign()"
msgstr ""
#: t_subassign.c:143
msgid "invalid class of 'value' in Csparse_subassign()"
msgstr ""
#: t_subassign.c:186
#, c-format
msgid "x[] <- val: val is coerced to logical for \"%s\" x"
msgstr ""
#: t_subassign.c:191
#, c-format
msgid ""
"x[] <- val: val should be integer or logical, is coerced to integer, for "
"\"%s\" x"
msgstr ""
#: t_subassign.c:198
msgid "programming error in Csparse_subassign() should never happen"
msgstr ""
#: utils-R.c:30 utils-R.c:116
#, c-format
msgid "indices would exceed %s"
msgstr ""
#: utils-R.c:235 utils-R.c:270 utils-R.c:281 utils-R.c:312
msgid "Argument must be numeric-like atomic vector"
msgstr ""
#: utils-R.c:345
msgid "'data' must be of a vector type"
msgstr ""
#: utils-R.c:352
#, c-format
msgid "invalid '%s' argument"
msgstr ""
#: utils-R.c:359 utils-R.c:367
msgid "non-numeric matrix extent"
msgstr ""
#: utils-R.c:362
msgid "invalid 'nrow' value (too large or NA)"
msgstr ""
#: utils-R.c:364
msgid "invalid 'nrow' value (< 0)"
msgstr ""
#: utils-R.c:370
msgid "invalid 'ncol' value (too large or NA)"
msgstr ""
#: utils-R.c:372
msgid "invalid 'ncol' value (< 0)"
msgstr ""
#: utils-R.c:390
#, c-format
msgid ""
"data length [%lld] is not a sub-multiple or multiple of the number of rows "
"[%d]"
msgstr ""
#: utils-R.c:395
#, c-format
msgid ""
"data length [%lld] is not a sub-multiple or multiple of the number of "
"columns [%d]"
msgstr ""
#: utils-R.c:399
msgid "data length exceeds size of matrix"
msgstr ""
#: utils-R.c:404
msgid "too many elements specified"
msgstr ""
#: utils-R.c:544
msgid "Argument ij must be 2-column integer matrix"
msgstr ""
#: utils-R.c:569
msgid "subscript 'i' out of bounds in M[ij]"
msgstr ""
#: utils-R.c:571
msgid "subscript 'j' out of bounds in M[ij]"
msgstr ""
#: utils-R.c:625
msgid "i and j must be integer vectors of the same length"
msgstr ""
#: validity.c:31 validity.c:52 validity.c:230 validity.c:249 validity.c:258
#: validity.c:440 validity.c:466 validity.c:976 validity.c:1418 validity.c:1442
#, c-format
msgid "'%s' slot does not have length %d"
msgstr ""
#: validity.c:36 validity.c:931 validity.c:964
#, c-format
msgid "'%s' slot has negative elements"
msgstr ""
#: validity.c:50 validity.c:163
#, c-format
msgid "'%s' slot is not a list"
msgstr ""
#: validity.c:68
#, c-format
msgid "%s[[%d]] is not NULL or a vector"
msgstr ""
#: validity.c:71
#, c-format
msgid "length of %s[[%d]] (%lld) is not equal to %s[%d] (%d)"
msgstr ""
#: validity.c:169
#, c-format
msgid "'%s' slot has no '%s' attribute"
msgstr ""
#: validity.c:180 validity.c:243 validity.c:434 validity.c:505 validity.c:1081
#: validity.c:1412 validity.c:1773
#, c-format
msgid "%s[1] != %s[2] (matrix is not square)"
msgstr ""
#: validity.c:205 validity.c:218
#, c-format
msgid "%s[1] differs from %s[2]"
msgstr ""
#: validity.c:233 validity.c:252 validity.c:261 validity.c:443
#, c-format
msgid "'%s' slot is not \"%s\" or \"%s\""
msgstr ""
#: validity.c:330 validity.c:1579
#, c-format
msgid "'%s' slot is not increasing within columns"
msgstr ""
#: validity.c:381
#, c-format
msgid "'%s' slot is not increasing within rows"
msgstr ""
#: validity.c:405 validity.c:789 validity.c:815 validity.c:841 validity.c:1042
#: validity.c:1648 validity.c:1650
#, c-format
msgid "'%s' and '%s' slots do not have equal length"
msgstr ""
#: validity.c:408
#, c-format
msgid "'%s' slot has nonzero length but %s is 0"
msgstr ""
#: validity.c:449 validity.c:453
#, c-format
msgid "'%s' slot is \"%s\" but '%s' slot does not have length %s"
msgstr ""
#: validity.c:469
#, c-format
msgid "'%s' slot is not %d or %d"
msgstr ""
#: validity.c:475 validity.c:478
#, c-format
msgid "%s-by-%s %s invalid for positive '%s' when %s=%d"
msgstr ""
#: validity.c:515 validity.c:1144 validity.c:1156 validity.c:1257
#: validity.c:1269 validity.c:1349 validity.c:1398 validity.c:1457
#, c-format
msgid "'%s' slot contains duplicates"
msgstr ""
#: validity.c:543 validity.c:588 validity.c:634 validity.c:679 validity.c:723
#: validity.c:758
#, c-format
msgid "%s=\"%s\" but there are entries below the diagonal"
msgstr ""
#: validity.c:553 validity.c:601 validity.c:644 validity.c:692 validity.c:728
#: validity.c:769
#, c-format
msgid "%s=\"%s\" but there are entries above the diagonal"
msgstr ""
#: validity.c:591 validity.c:604 validity.c:682 validity.c:695 validity.c:761
#: validity.c:772
#, c-format
msgid "%s=\"%s\" but there are entries on the diagonal"
msgstr ""
#: validity.c:877 validity.c:901 validity.c:905
msgid "matrix has negative diagonal elements"
msgstr ""
#: validity.c:921 validity.c:949 validity.c:953
msgid "matrix has nonunit diagonal elements"
msgstr ""
#: validity.c:973 validity.c:998 validity.c:1792
#, c-format
msgid "'%s' slot is not of type \"%s\" or \"%s\""
msgstr ""
#: validity.c:981 validity.c:988
#, c-format
msgid "'%s' slot is NA"
msgstr ""
#: validity.c:983 validity.c:990
#, c-format
msgid "'%s' slot is negative"
msgstr ""
#: validity.c:992
#, c-format
msgid "'%s' slot exceeds %s"
msgstr ""
#: validity.c:1002
#, c-format
msgid "'%s' slot has length greater than '%s' slot"
msgstr ""
#: validity.c:1012 validity.c:1640 validity.c:1662 validity.c:1664
#, c-format
msgid "'%s' slot is not increasing"
msgstr ""
#: validity.c:1022
#, c-format
msgid "'%s' slot has elements not in {%s} after truncation towards zero"
msgstr ""
#: validity.c:1025
#, c-format
msgid "'%s' slot is not increasing after truncation towards zero"
msgstr ""
#: validity.c:1091 validity.c:1118 validity.c:1780 validity.c:1787
#, c-format
msgid "dimensions of '%s' slot are not identical to '%s'"
msgstr ""
#: validity.c:1093
#, c-format
msgid "'%s' slot is upper (not lower) triangular"
msgstr ""
#: validity.c:1106
#, c-format
msgid "'%s' slot has nonunit diagonal elements"
msgstr ""
#: validity.c:1120
#, c-format
msgid "'%s' slot is lower (not upper) triangular"
msgstr ""
#: validity.c:1132 validity.c:1245 validity.c:1336 validity.c:1385
#, c-format
msgid "'%s' slot does not have length %s or length %s"
msgstr ""
#: validity.c:1172
msgid "matrix has more columns than rows"
msgstr ""
#: validity.c:1192
#, c-format
msgid "'%s' slot has fewer than %s rows"
msgstr ""
#: validity.c:1194
#, c-format
msgid "'%s' slot has more than %s rows"
msgstr ""
#: validity.c:1196 validity.c:1218
#, c-format
msgid "'%s' slot does not have %s columns"
msgstr ""
#: validity.c:1203
#, c-format
msgid "'%s' slot must be lower trapezoidal but has entries above the diagonal"
msgstr ""
#: validity.c:1216
#, c-format
msgid "'%s' slot does not have %s row"
msgstr ""
#: validity.c:1225
#, c-format
msgid "'%s' slot must be upper trapezoidal but has entries below the diagonal"
msgstr ""
#: validity.c:1229
#, c-format
msgid "'%s' slot has negative diagonal elements"
msgstr ""
#: validity.c:1295
#, c-format
msgid "'%s' slot has elements not in {%s}\\{%s}"
msgstr ""
#: validity.c:1304
#, c-format
msgid "'%s' slot has unpaired negative elements"
msgstr ""
#: validity.c:1330 validity.c:1374 validity.c:1378 validity.c:1726
#: validity.c:1758
msgid "Cholesky factor has negative diagonal elements"
msgstr ""
#: validity.c:1421
#, c-format
msgid "%s[%d] (%s) is not in %s"
msgstr ""
#: validity.c:1434 validity.c:1535
#, c-format
msgid "%s is not in {%s}"
msgstr ""
#: validity.c:1471
#, c-format
msgid "%s is not representable as \"%s\""
msgstr ""
#: validity.c:1476 validity.c:1482
#, c-format
msgid "%s[%d] (%s) is not %d or %d"
msgstr ""
#: validity.c:1479 validity.c:1595 validity.c:1598 validity.c:1601
#, c-format
msgid "%s[%d] (%s) is not %d"
msgstr ""
#: validity.c:1504
#, c-format
msgid "%s has elements not in {%s}"
msgstr ""
#: validity.c:1507
#, c-format
msgid "%s has elements not in {%s}\\{%s}"
msgstr ""
#: validity.c:1510
#, c-format
msgid "%s is %d but columns are not stored in increasing order"
msgstr ""
#: validity.c:1513 validity.c:1516
#, c-format
msgid "traversal of '%s' slot does not complete in exactly %s steps"
msgstr ""
#: validity.c:1522 validity.c:1524
#, c-format
msgid "%s is not %d"
msgstr ""
#: validity.c:1545
#, c-format
msgid "column '%s' is stored first but %s is not 0"
msgstr ""
#: validity.c:1551
#, c-format
msgid "'%s' slot is not increasing when traversed in stored column order"
msgstr ""
#: validity.c:1553
#, c-format
msgid "'%s' slot allocates fewer than %s elements for column '%s'"
msgstr ""
#: validity.c:1556
#, c-format
msgid "'%s' slot allocates more than %s elements for column '%s'"
msgstr ""
#: validity.c:1570
#, c-format
msgid "first entry in column '%s' does not have row index '%s'"
msgstr ""
#: validity.c:1604 validity.c:1607
#, c-format
msgid "%s[%d] (%s) is negative"
msgstr ""
#: validity.c:1610
#, c-format
msgid "%s[%d] (%s) is not less than %s"
msgstr ""
#: validity.c:1628
#, c-format
msgid "'%s' slot has length less than %d"
msgstr ""
#: validity.c:1630
#, c-format
msgid "'%s' slot has length greater than %s"
msgstr ""
#: validity.c:1635
#, c-format
msgid "last element of '%s' slot is not %s"
msgstr ""
#: validity.c:1668
#, c-format
msgid "first differences of '%s' slot are less than those of '%s' slot"
msgstr ""
#: validity.c:1671
#, c-format
msgid "supernode lengths exceed %s"
msgstr ""
#: validity.c:1673
#, c-format
msgid "first differences of '%s' slot are not equal to supernode lengths"
msgstr ""
#: validity.c:1693
#, c-format
msgid ""
"'%s' slot is wrong within diagonal blocks (row and column indices do not "
"coincide)"
msgstr ""
#: validity.c:1696
#, c-format
msgid "'%s' slot is not increasing within supernodes"
msgstr ""
#: validity.c:1811
#, c-format
msgid "invalid class \"%s\" object: %s"
msgstr ""
#: vector.c:90
#, c-format
msgid "%s length cannot exceed %s"
msgstr ""
|