1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
|
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef REV_INFO
#ifndef lint
static char rcsid[] = "$TOG: Messages.c /main/23 1997/03/19 11:49:58 dbl $"
#endif
#endif
/* Define _XmConst before including MessagesI.h, so that the
* declarations will be in agreement with the definitions.
*/
#ifndef _XmConst
#if defined(__STDC__) || !defined( NO_CONST )
#define _XmConst const
#else
#define _XmConst
#endif /* __STDC__ */
#endif /* _XmConst */
#include <Xm/XmP.h>
#include "MessagesI.h"
#if 0 /* Comments below contain nested comments. */
/*===========================================================================*/
/* IMPORTANT NOTICE!! Please READ before editing this file! */
/* */
/* This file is also used to generate the XPG4 type message catalog. */
/* NO MESSAGES CAN BE REMOVED! If a message is no longer used, it can */
/* be removed from the object module by adding an #if 0 or /* above the */
/* line(s) containing the message, and the corresponding #endif or */
/* end-of-comment after the line(s). */
/* */
/* When ADDING messages to existing "sets" - a set is found inside /**** *****/
/* always add the new "externaldef(messages)" definition after everything */
/* else in the set. Example: */
/* */
/* /**************** First.c ****************/
/* */
/* externaldef(messages) _XmConst char *_XmMsgFirst_0000 = */
/* "Memory error"; */
/* */
/* /* Needed for message catalog BC. Do not remove */
/* /***+MSG_First_1000 "Fake message."*/
/* /***+$ MSG_First_1000 message is obsolete - DO NOT localize this message.*/
/* */
/* */
/* /**************** Second.c ****************/
/* */
/* Messages added to the set "First" should be added after the line */
/* /****+MSG_First_1000 "Fake message."*/
/* not after "Memory error". */
/* */
/* If you need to add another message "set", do so right before the */
/* XME_WARNING definition. */
/* */
/*===========================================================================*/
#endif
/*
* Text for message catalog header
*/
/***+$ This message catalog contains messages issued by Motif toolkit library.*/
/***+$ Consult X-Window systems, OSF/MOTIF Programmer's Guide and OSF/MOTIF*/
/***+$ Programmer's Reference Manual for technical terms if you have any*/
/***+$ doubts about their meanings.*/
/***+$ Do not translate variables such as %s, %d %s ... etc.*/
/***+$ Do not translate Motif resource name, such as XmNlabelType.*/
/***+$ Special terms with capital letter(s) should not be translated.*/
/***+$ "False" and "True" are keywords. Do not translate.*/
/***+ */
/***+ */
/**************** ArrowButton.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ArrowButton_1000 The arrow direction is not correct.*/
/***+$ MSG_ArrowButton_1000 message is obsolete - DO NOT localize this message.*/
/**************** BulletinB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_BulletinB_1000 Incorrect resize policy.*/
/***+$ MSG_BulletinB_1000 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgBulletinB_0001 =
"Dialog style must be XmDIALOG_MODELESS.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_BulletinB_1001 Incorrect shadow type.*/
/***+$ MSG_BulletinB_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_BulletinB_1002 Null font list (no VendorShell default)*/
/***+$ MSG_BulletinB_1002 message is obsolete - DO NOT localize this message.*/
/**************** CascadeB.c / CascadeBG.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_CascadeB_1000 XmCascadeButton must have correct type of \n\*/
/***+XmRowColumnWidgetClass parent.*/
/***+$ MSG_CascadeB_1000 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgCascadeB_0001 =
"Only XmRowColumn widgets of type XmMENU_PULLDOWN can be submenus.";
/***+$ please do not translate submenus. */
externaldef(messages) _XmConst char *_XmMsgCascadeB_0002 =
"XmNmappingDelay must be greater than or equal to 0.";
externaldef(messages) _XmConst char *_XmMsgCascadeB_0000 =
"XmCascadeButton[Gadget] must have XmRowColumn parent with \n\
XmNrowColumnType XmMENU_PULLDOWN, XmMENU_POPUP, XmMENU_BAR or XmMENU_OPTION.";
externaldef(messages) _XmConst char *_XmMsgCascadeB_0003 =
"XtGrabPointer failed.";
externaldef(messages) _XmConst char *_XmMsgRowColText_0024 =
"XtGrabKeyboard failed.";
/**************** Command.c ****************/
externaldef(messages) _XmConst char *_XmMsgCommand_0000 =
"The dialog type must be XmDIALOG_COMMAND.";
externaldef(messages) _XmConst char *_XmMsgCommand_0001 =
"Invalid child type; Command widget does not have this child.";
/***+$ please do not translate Command.*/
externaldef(messages) _XmConst char *_XmMsgCommand_0002 =
"NULL or empty XmString.";
externaldef(messages) _XmConst char *_XmMsgCommand_0003 =
"NULL or empty XmString passed to XmCommandAppendValue.";
externaldef(messages) _XmConst char *_XmMsgCommand_0004 =
"XmNmustMatch is always False for a Command widget.";
/***+$ please do not translate False or Command. */
externaldef(messages) _XmConst char *_XmMsgCommand_0005 =
"XmNhistoryMaxItems must be a positive integer greater than zero.";
/**************** CutPaste.c ****************/
externaldef(messages) _XmConst char *_XmMsgCutPaste_0000 =
"Must call XmClipboardStartCopy() before XmClipboardCopy()";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0001 =
"Must call XmClipboardStartCopy() before XmClipboardEndCopy()";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0002 =
"Too many formats in XmClipboardCopy()";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0003 =
"ClipboardBadDataType";
/***+$ please do not translate ClipboardBadDataType.*/
externaldef(messages) _XmConst char *_XmMsgCutPaste_0004 =
"incorrect data type";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0005 =
"ClipboardCorrupt";
/***+$ please do not translate ClipboardCorrupt.*/
externaldef(messages) _XmConst char *_XmMsgCutPaste_0006 =
"internal error - corrupt data structure";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0007 =
"ClipboardBadFormat";
/***+$ please do not translate ClipboardBadFormat.*/
externaldef(messages) _XmConst char *_XmMsgCutPaste_0008 =
"Registered format length must be 8, 16, or 32";
externaldef(messages) _XmConst char *_XmMsgCutPaste_0009 =
"Registered format name must not be null";
/**************** DialogS.c ****************/
externaldef(messages) _XmConst char *_XmMsgDialogS_0000 =
"DialogShell widget supports only one RectObj child";
/***+$ please do not translate DialogShell and RectObj.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_DialogS_1000 gadgets aren't allowed in Shell*/
/***+$ MSG_DialogS_1000 message is obsolete - DO NOT localize this message.*/
/**************** DrawingA.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_DrawingA_1001 Margin width or height cannot be negative.*/
/***+$ MSG_DrawingA_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_DrawingA_1002 Incorrect resize policy.*/
/***+$ MSG_DrawingA_1002 message is obsolete - DO NOT localize this message.*/
/**************** Form.c ****************/
externaldef(messages) _XmConst char *_XmMsgForm_0000 =
"Fraction base cannot be zero.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_Form_1000 Incorrect Form attachment type.*/
/***+$ MSG_Form_1000 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Form_1001 Cannot set constraints for non-resizable widget.*/
/***+$ MSG_Form_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Form_1002 Attachment widget must not be null.*/
/***+$ MSG_Form_1002 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate Attachment.*/
externaldef(messages) _XmConst char *_XmMsgForm_0002 =
"Circular dependency in the children of the Form widget.\n\
Check for circular attachments between the children.";
/***+$ please do not translate Form.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Form_1006 Edge attached to a widget but no widget specified.*/
/***+$ MSG_Form_1006 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgForm_0003 =
"Abandoned edge synchronization after 10000 iterations.\n\
Check for contradictory constraints on the children of this Form widget.";
/***+$ please do not translate Form.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Form_0004 Attachment widget must have same parent as widget.*/
/***+$ MSG_Form_0004 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate Attachment.*/
/**************** Frame.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Frame_1000 Only one child should be inserted in a Frame.*/
/***+$ MSG_Frame_1000 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate Frame.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Frame_1001 Invalid margin width.*/
/***+$ MSG_Frame_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Frame_1002 Invalid margin height.*/
/***+$ MSG_Frame_1002 message is obsolete - DO NOT localize this message.*/
/**************** Gadget.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Gadget_1000 Invalid highlight thickness.*/
/***+$ MSG_Gadget_1000 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Gadget_1001 The unit type is incorrect.*/
/***+$ MSG_Gadget_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Gadget_1002 Invalid shadow thickness.*/
/***+$ MSG_Gadget_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Gadget_1003 Cannot set pixmap resource to unspecified.*/
/***+$ MSG_Gadget_1003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgGadget_0000 =
"Cannot change XmNlayoutDirection after initialization.";
/**************** Label.c / LabelG.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Label_1001 Invalid XmNlabelType*/
/***+$ MSG_Label_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Label_1002 Invalid value in XmNalignment*/
/***+$ MSG_Label_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Label_1003 Invalid value in XmNstringDirection*/
/***+$ MSG_Label_1003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgLabel_0003 =
"XmNlabelString must be a Compound String.";
/***+$ please do not translate Compound String.*/
externaldef(messages) _XmConst char *_XmMsgLabel_0004 =
"XmNacceleratorText must be a Compound String.";
/***+$ please do not translate Compound String.*/
/**************** List.c ****************/
externaldef(messages) _XmConst char *_XmMsgList_0000 =
"When changed, XmNvisibleItemCount must be at least 1.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1001 Invalid Selection Policy.*/
/***+$ MSG_List_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1002 Invalid Size Policy.*/
/***+$ MSG_List_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1003 Invalid ScrollBar Display Policy.*/
/***+$ MSG_List_1003 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1004 Invalid String Direction.*/
/***+$ MSG_List_1004 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgList_0005 =
"Cannot change XmNlistSizePolicy after initialization.";
externaldef(messages) _XmConst char *_XmMsgList_0006 =
"When changed, XmNitemCount must be non-negative.";
/***+$ non-negative means zero or positive.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1007 NULL font in SetValues ignored.*/
/***+$ MSG_List_1007 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate SetValues*/
externaldef(messages) _XmConst char *_XmMsgList_0007 =
"Item(s) to be deleted are not present in the list.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1009 No Horizontal Scrollbar to set.*/
/***+$ MSG_List_1009 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1010 Invalid Margin setting.*/
/***+$ MSG_List_1010 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgList_0008 =
"XmNlistSpacing must be non-negative.";
externaldef(messages) _XmConst char *_XmMsgList_0009 =
"Cannot set XmNitems to NULL when XmNitemCount is positive.";
externaldef(messages) _XmConst char *_XmMsgList_0010 =
"XmNselectedItemCount must not be negative.";
externaldef(messages) _XmConst char *_XmMsgList_0011 =
"Cannot set XmNselectedItems to NULL when XmNselectedItemCount \
is positive.";
externaldef(messages) _XmConst char *_XmMsgList_0012 =
"XmNtopItemPosition must be non-negative.";
externaldef(messages) _XmConst char *_XmMsgList_0013 =
"XmNitems and XmNitemCount mismatch!";
/* Needed for message catalog BC. Do not remove */
/***+MSG_List_1017 Cannot leave add mode in multiple selection.*/
/***+$ MSG_List_1017 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgList_0014 =
"XmNselectedPositionCount must not be negative.";
externaldef(messages) _XmConst char *_XmMsgList_0015 =
"Cannot set XmNselectedPositions to NULL when XmNselectedPositionCount \
is positive.";
/**************** MainW.c ****************/
externaldef(messages) _XmConst char *_XmMsgMainW_0000 =
"The MenuBar cannot be changed to NULL.";
/***+$ please do not translate MenuBar.*/
externaldef(messages) _XmConst char *_XmMsgMainW_0001 =
"The CommandWindow cannot be changed to NULL.";
/***+$ please do not translate CommandWindow.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_MainW_1003 Negative margin value ignored.*/
/***+$ MSG_MainW_1003 message is obsolete - DO NOT localize this message.*/
/**************** MenuShell.c ****************/
externaldef(messages) _XmConst char *_XmMsgMenuShell_0000 =
"MenuShell widgets accept only XmRowColumn children.";
/***+$ please do not translate MenuShell.*/
externaldef(messages) _XmConst char *_XmMsgMenuShell_0001 =
"Attempting to manage a pulldown menu that is not attached \n\
to a Cascade button.";
externaldef(messages) _XmConst char *_XmMsgMenuShell_0002 =
"XmPopup requires a subclass of shellWidgetClass.";
/***+$ please do not translate shellWidgetClass.*/
externaldef(messages) _XmConst char *_XmMsgMenuShell_0003 =
"XmPopdown requires a subclass of shellWidgetClass.";
/***+$ please do not translate shellWidgetClass.*/
externaldef(messages) _XmConst char *_XmMsgMenuShell_0004 =
"XtMenuPopup requires exactly one argument.";
externaldef(messages) _XmConst char *_XmMsgMenuShell_0005 =
"XtMenuPopup only supports ButtonPress, KeyPress or EnterNotify events.";
/***+$ please do not translate ButtonPress, KeyPress or EnterNotify.*/
externaldef(messages) _XmConst char *_XmMsgMenuShell_0006 =
"Cannot find popup widget \"%s\" in XtMenuPopup.";
externaldef(messages) _XmConst char *_XmMsgMenuShell_0007 =
"Cannot find popup widget \"%s\" in XtMenuPopdown.";
externaldef(messages) _XmConst char *_XmMsgMenuShell_0008 =
"XtMenuPopdown called with more than one argument.";
externaldef(messages) _XmConst char *_XmMsgMenuShell_0009 =
"Cannot change XmNlayoutDirection after initialization.";
/**************** MessageB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_MessageB_1001 Invalid Dialog Type.*/
/***+$ MSG_MessageB_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_MessageB_1002 Invalid Default Button Type.*/
/***+$ MSG_MessageB_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_MessageB_1003 Invalid Alignment Type.*/
/***+$ MSG_MessageB_1003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgMessageB_0003 =
"Invalid child type; widget does not have this child";
externaldef(messages) _XmConst char *_XmMsgMessageB_0004 =
"Cancel button cannot be changed.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_MessageB_1006 Use XmNdefaultButtonType to set MessageBox default button.*/
/***+$ MSG_MessageB_1006 message is obsolete - DO NOT localize this message.*/
/**************** PanedW.c ****************/
externaldef(messages) _XmConst char *_XmMsgPanedW_0000 =
"Minimum value must be greater than 0.";
externaldef(messages) _XmConst char *_XmMsgPanedW_0001 =
"Maximum value must be greater than 0.";
externaldef(messages) _XmConst char *_XmMsgPanedW_0002 =
"Minimum value must be less than maximum value.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_PanedW_0003 Constraints do not allow appropriate sizing.*/
/***+$ MSG_PanedW_0003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgPanedW_0004 =
"Too few parameters in sash callback.";
externaldef(messages) _XmConst char *_XmMsgPanedW_0005 =
"Invalid first parameter in sash callback.";
/**************** PWidget.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_PWI_1001 fontList is not defined*/
/***+$ MSG_PWI_1001 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate fontList.*/
/**************** Protocols.c ****************/
externaldef(messages) _XmConst char *_XmMsgProtocols_0000 =
"Widget must be a VendorShell.";
/***+$ please do not translate VendorShell.*/
externaldef(messages) _XmConst char *_XmMsgProtocols_0001 =
"Protocol manager already exists.";
externaldef(messages) _XmConst char *_XmMsgProtocols_0002 =
"There are more protocols than widget can handle; 32 is the limit.";
/**************** PushB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_PushB_1001 Not enough memory*/
/***+$ MSG_PushB_1001 message is obsolete - DO NOT localize this message.*/
/**************** RowColumn.c ****************/
/***+$ In this set, please do not translate the word that starts with "XmN" or "Xm". */
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1001 Attempt to set width to zero.\n\*/
/***+Set to default value 16.*/
/***+$ MSG_RowColumn_1001 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0000 =
"Attempt to set width to zero ignored";
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1003 Attempt to set height to zero.\n\*/
/***+Set to default value 16.*/
/***+$ MSG_RowColumn_1003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0001 =
"Attempt to set height to zero ignored";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0002 =
"XmNhelpWidget forced to NULL since it is not used by popup menus.";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0003 =
"XmNhelpWidget forced to NULL since it is not used by pulldown menus.";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0004 =
"XmNhelpWidget forced to NULL since it is not used by option menus.";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0005 =
"XmNhelpWidget forced to NULL since it is not used by Work Areas.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1009 Unknown value of XmNrowColumnType.\n\*/
/***+It is set to WorkArea.*/
/***+$ MSG_RowColumn_1009 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0007 =
"Widget hierarchy not appropriate for this XmNrowColumnType:\n\
defaulting to XmWORK_AREA.";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0008 =
"Attempt to change XmNrowColumnType after initialization ignored";
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1012 Unknown value of XmNorientation.\n\*/
/***+The default value is used.*/
/***+$ MSG_RowColumn_1012 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1013 Attempt to set XmNorientation to unknown value.\n\*/
/***+The value is ignored.*/
/***+$ MSG_RowColumn_1013 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1014 Unknown value of XmNpacking.\n\*/
/***+The default value is used.*/
/***+$ MSG_RowColumn_1014 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1015 Attempt to set XmNpacking to unknown value.\n\*/
/***+The value is ignored.*/
/***+$ MSG_RowColumn_1015 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1016 Unknown value of XmNentryAlignment.\n\*/
/***+The default value is used.*/
/***+$ MSG_RowColumn_1016 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1017 Attempt to set XmNentryAlignment to unknown value.\n\*/
/***+The value is ignored.*/
/***+$ MSG_RowColumn_1017 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0015 =
"Attempt to set XmNisHomogenous to FALSE for a RowColumn widget of type \
XmMENU_BAR ignored.";
/***+$ please do not translate FALSE and RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0016 =
"Attempt to change XmNentryClass for a RowColumn widget of type \
XmMENU_BAR ignored.";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0017 =
"Attempt to change XmNwhichButton via XtSetValues for a RowColumn widget \
of type XmMENU_PULLDOWN ignored.";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0018 =
"Attempt to change XmNmenuPost via XtSetValues for a RowColumn widget \
of type XmMENU_PULLDOWN ignored.";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0019 =
"Attempt to set XmNmenuPost to an illegal value ignored.";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0020 =
"Attempt to change XmNshadowThickness for a RowColumn widget not of type \
XmMENU_PULLDOWN or XmMENU_POPUP ignored.";
/***+$ please do not translate RowColumn.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_RowColumn_1024 Attempt to change XmNorientation for a RowColumn \n\*/
/***+widget of type XmMENU_OPTION.\n\*/
/***+The value is ignored.*/
/***+$ MSG_RowColumn_1024 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0022 =
"Attempt to add wrong child type to a menu (that is, XmRowColumn) widget";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0023 =
"Attempt to add wrong child type to a homogeneous RowColumn widget";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0025 =
"Attempt to change XmNisHomogeneous for a RowColumn widget of type \
XmMENU_OPTION ignored";
/***+$ please do not translate RowColumn.*/
externaldef(messages) _XmConst char *_XmMsgRowColumn_0026 =
"Enabling tear off on a shared menupane is not recommended";
externaldef(messages) _XmConst char *_XmMsgRowColumn_0027 =
"Illegal mnemonic character; Could not convert X KEYSYM to a keycode";
/***+$ please do not translate X KEYSYM.*/
/**************** Scale.c ****************/
externaldef(messages) _XmConst char *_XmMsgScale_0000 =
"The minimum scale value is greater than or equal to the maximum scale \
value.";
externaldef(messages) _XmConst char *_XmMsgScale_0001 =
"The specified scale value is less than the minimum scale value.";
externaldef(messages) _XmConst char *_XmMsgScale_0002 =
"The specified scale value is greater than the maximum scale value.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_Scale_1004 Incorrect orientation.*/
/***+$ MSG_Scale_1004 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgScaleScrBar_0004 =
"Incorrect processing direction.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_Scale_0005 = Invalid highlight thickness.*/
/***+$ MSG_Scale_0005 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgScale_0006 =
"Invalid XmNscaleMultiple; greater than (max - min)";
externaldef(messages) _XmConst char *_XmMsgScale_0007 =
"Invalid XmNscaleMultiple; less than zero";
externaldef(messages) _XmConst char *_XmMsgScale_0008 =
"(Maximum - minimum) cannot be greater than INT_MAX / 2;\n\
minimum has been set to zero, maximum may have been set to (INT_MAX/2).";
externaldef(messages) _XmConst char *_XmMsgScale_0009 =
"XmNshowValue has an incorrect value";
/**************** ScrollBar.c ****************/
externaldef(messages) _XmConst char *_XmMsgScrollBar_0000 =
"The minimum scrollbar value is greater than or equal to\n\
the maximum scrollbar value.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0001 =
"The specified slider size is less than 1.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0002 =
"The specified scrollbar value is less than the minimum\n\
scrollbar value.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0003 =
"The specified scrollbar value is greater than the maximum\n\
scrollbar value minus the scrollbar slider size.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrollBar_1005 Incorrect orientation.*/
/***+$ MSG_ScrollBar_1005 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrollBar_1006 Incorrect processing direction.*/
/***+$ MSG_ScrollBar_1006 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgScrollBar_0004 =
"The scrollbar increment is less than 1.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0005 =
"The scrollbar page increment is less than 1.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0006 =
"The scrollbar initial delay is less than 1.";
externaldef(messages) _XmConst char *_XmMsgScrollBar_0007 =
"The scrollbar repeat delay is less than 1.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrollBar_1011 Error in context manager; scrollbar backgrounds\n\*/
/***+cannot be set correctly*/
/***+$ MSG_ScrollBar_1011 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrollBar_1012 Error in context manager; scrollbar foregrounds\n\*/
/***+cannot be set correctly*/
/***+$ MSG_ScrollBar_1012 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgScrollBar_0008 =
"Specified slider size is greater than the maximum scrollbar\n\
value minus the minimum scrollbar value.";
/**************** ScrolledW.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrolledW_1001 Invalid ScrollBar Display policy.*/
/***+$ MSG_ScrolledW_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrolledW_1002 Invalid Scrolling Policy.*/
/***+$ MSG_ScrolledW_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrolledW_1003 Invalid Visual Policy.*/
/***+$ MSG_ScrolledW_1003 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ScrolledW_1004 Invalid placement policy.*/
/***+$ MSG_ScrolledW_1004 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgScrolledW_0004 =
"Cannot change scrolling policy after initialization.";
externaldef(messages) _XmConst char *_XmMsgScrolledW_0005 =
"Cannot change visual policy after initialization.";
externaldef(messages) _XmConst char *_XmMsgScrolledW_0006 =
"Cannot set AS_NEEDED scrollbar policy with a\n\
visual policy of VARIABLE.";
/***+$ please do not translate AS_NEEDED or VARIABLE.*/
externaldef(messages) _XmConst char *_XmMsgScrolledW_0007 =
"Cannot change scrollbar widget in AUTOMATIC mode.";
/***+$ please do not translate AUTOMATIC.*/
externaldef(messages) _XmConst char *_XmMsgScrolledW_0008 =
"Cannot change clip window";
externaldef(messages) _XmConst char *_XmMsgScrolledW_0009 =
"Cannot set visual policy of CONSTANT in APPLICATION_DEFINED mode.";
/***+$ please do not translate CONSTANT or APPLICATION_DEFINED.*/
externaldef(messages) _XmConst char *_XmMsgScrollVis_0000 =
"Wrong parameters passed to the XmScrollVisible function.";
/**************** SelectioB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_SelectioB_1001 Incorrect dialog type.*/
/***+$ MSG_SelectioB_1001 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgSelectioB_0001 =
"Dialog type cannot be modified.";
/***+$ please do not translate Dialog.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_SelectioB_1003 Only one work area child allowed.*/
/***+$ MSG_SelectioB_1003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgSelectioB_0002 =
"Widget does not support this child type.";
/**************** Separator.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Separator_1001 Invalid separator type.*/
/***+$ MSG_Separator_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Separator_1002 Invalid orientation.*/
/***+$ MSG_Separator_1002 message is obsolete - DO NOT localize this message.*/
/**************** Text.c ****************/
externaldef(messages) _XmConst char *_XmMsgText_0000 =
"Incorrect source text is ignored.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_Text_1003 Invalid edit mode.*/
/***+$ MSG_Text_1003 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Text_0002 Text widget is editable; XmNtraversalOn must be True.*/
/***+$ MSG_Text_0002 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate XmNtraversalOn and True.*/
externaldef(messages) _XmConst char *_XmMsgTextIn_0000 =
"Cannot find position while attempting to move to previous line.";
externaldef(messages) _XmConst char *_XmMsgTextOut_0000 =
"Number of rows must be greater than 0.";
externaldef(messages) _XmConst char *_XmMsgTextF_0002 =
"XmFontListInitFontContext failed.";
/***+$ please do not translate XmFontListInitFontContext.*/
externaldef(messages) _XmConst char *_XmMsgTextF_0003 =
"XmFontListGetNextFont failed.";
/***+$ please do not translate XmFontListGetNextFont.*/
externaldef(messages) _XmConst char *_XmMsgTextF_0004 =
"Character '%s' not supported in font. Discarded.";
externaldef(messages) _XmConst char *_XmMsgTextFWcs_0000 =
"Character '%s' not supported in font. Discarded.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_TextFWcs_0001 Cannot use multibyte locale without a fontset. Value discarded.*/
/***+$ MSG_TextFWcs_0001 message is obsolete - DO NOT localize this message.*/
/**************** TextF.c ****************/
externaldef(messages) _XmConst char *_XmMsgTextF_0000 =
"Cursor position must be greater than or equal to 0.";
externaldef(messages) _XmConst char *_XmMsgTextF_0001 =
"Number of columns must be greater than 0.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_TextF_0005 XmNtraversalOn must always be True.*/
/***+$ please do not translate XmNtraversalOn and True.*/
/***+$ MSG_TextF_0005 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgTextF_0006 =
"Number of columns must be greater than or equal to 0.";
/**************** ToggleB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ToggleB_1001 Indicator type should be either XmONE_OF_MANY or XmN_OF_MANY*/
/***+$ MSG_ToggleB_1001 message is obsolete - DO NOT localize this message.*/
/**************** Traversal.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Traversal_1001 Invalid value for navigation_type*/
/***+$ MSG_Traversal_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Traversal_1002 Wrong value in old for navigation_type!!*/
/***+$ MSG_Traversal_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Traversal_1003 Traversal bootstrap situation with bad parameters*/
/***+$ MSG_Traversal_1003 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Traversal_1004 Attempt to traverse to new tab using bad parameters*/
/***+$ MSG_Traversal_1004 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Traversal_1005 startWidget is not in child list*/
/***+$ MSG_Traversal_1005 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate startWidget*/
/***+MSG_Traversal_1006 Bad parameters to TraverseToChild*/
/***+$ MSG_Traversal_1006 message is obsolete - DO NOT localize this message.*/
/***+$ please do not translate TraverseToChild.*/
/**************** Vendor.c ****************/
externaldef(messages) _XmConst char *_XmMsgVendor_0000 =
"Invalid value for XmNdeleteResponse";
/* Needed for message catalog BC. Do not remove */
/***+MSG_Vendor_1002 Invalid XmNpreeditType, default to OverTheSpot*/
/***+$ MSG_Vendor_1002 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgVendor_0001 =
"Invalid value for XmNinputPolicy";
externaldef(messages) _XmConst char *_XmMsgVendor_0002 =
"XmNlayoutDirection cannot be changed.";
externaldef(messages) _XmConst char *_XmMsgVendor_0003 =
"Fatal Error: \n\
_XmGetDefaultDisplay cannot be used prior to VendorS.Initialize, returns NULL";
/***+$ please do not translate VendorS.Initialize.*/
/**************** VendorE.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_VendorE_1001 FetchUnitType: bad widget class*/
/***+$ MSG_VendorE_1001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_VendorE_0000 String to no-op conversion needs no extra arguments.*/
/***+$ MSG_VendorE_0000 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_VendorE_0005 FetchUnitType called without a widget to reference.*/
/***+$ please do not translate FetchUnitType.*/
/***+$ MSG_VendorE_0005 message is obsolete - DO NOT localize this message.*/
/**************** VirtKeys.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_VirtKey_1001 Virtual bindings Initialize hasn't been called*/
/***+$ MSG_VirtKey_1001 message is obsolete - DO NOT localize this message.*/
/**************** Visual.c ****************/
externaldef(messages) _XmConst char *_XmMsgVisual_0000 =
"Invalid color requested from _XmAccessColorData.";
externaldef(messages) _XmConst char *_XmMsgVisual_0001 =
"Cannot allocate colormap entry for default background.";
externaldef(messages) _XmConst char *_XmMsgVisual_0002 =
"Cannot parse default background color specification.";
/**************** XmIm.c *******************/
externaldef(messages) _XmConst char *_XmMsgXmIm_0000 =
"Cannot open input method - using XLookupString.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_XmIm_1002 Cannot create the Input Method Object*/
/***+$ MSG_XmIm_1002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_XmIm_1003 XmIMFocus invoked with NULL widget.*/
/***+$ MSG_XmIm_1003 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_XmIm_1004 XmIMMove invoked without the Input Method focus.*/
/***+$ MSG_XmIm_1004 message is obsolete - DO NOT localize this message.*/
/**************** Resources ************************/
externaldef(messages) _XmConst char *_XmMsgResource_0001 =
"OK";
/***+$ "OK" as in "Go ahead"/"Confirmed to proceed as instructed"/"Fine"*/
externaldef(messages) _XmConst char *_XmMsgResource_0002 =
"Cancel";
/***+$ ... as in "Never mind"/"abort this operation"/"Stop current request"*/
externaldef(messages) _XmConst char *_XmMsgResource_0003 =
"Selection";
/***+$ ... as in "choosing from a list of items"*/
externaldef(messages) _XmConst char *_XmMsgResource_0004 =
"Apply";
/***+$ ... as in "To do something with the things selected"*/
externaldef(messages) _XmConst char *_XmMsgResource_0005 =
"Help";
/***+$ ... as in "Need more guidance on how to deal with this dialog box"*/
externaldef(messages) _XmConst char *_XmMsgResource_0006 =
"Filter";
/***+$ ... the noun "Filter", as in "a sifter/a filter/a qualifier to screen out"*/
/***+$ files with*/
externaldef(messages) _XmConst char *_XmMsgResource_0007 =
"Files";
/***+$ ... as in "a list of the files"*/
externaldef(messages) _XmConst char *_XmMsgResource_0008 =
"Directories";
/***+$ ... as in "a list of the directories" */
externaldef(messages) _XmConst char *_XmMsgResource_0009 =
"Items";
/***+$ ... as in "a list of things to choose from"*/
externaldef(messages) _XmConst char *_XmMsgResource_0010 =
"Filter";
/***+$ ... the verb "Filter", as in "To screen out some files"*/
/***+$ Note this has a slightly different semantics from MSG_Res_1006.*/
/***+$ In English, it is the same word, but MSG_Res_1006 means "a sifter", and*/
/***+$ MSG_Res_1010 means "Push this button to filter out some files"*/
/***+$ MSG_Res_1006 is a label indicating "entry below is qualifier to filter out" */
/***+$ files with*/
externaldef(messages) _XmConst char *_XmMsgResource_0011 =
"Directory";
externaldef(messages) _XmConst char *_XmMsgResource_0012 =
">";
/***+$ command-line prompt in the Command widget. */
externaldef(messages) _XmConst char *_XmMsgResource_0013 =
"Find";
/*===========================================================================
* New for 1.2
*===========================================================================*/
/**************** BaseClass.c ****************/
externaldef(messages) _XmConst char *_XmMsgBaseClass_0000 =
"No context found for extension";
externaldef(messages) _XmConst char *_XmMsgBaseClass_0001 =
"_XmPopWidgetExtData; no extension found with XFindContext";
/* Needed for message catalog BC. Do not remove */
/***+MSG_BaseClass_0002 XmFreeWidgetExtData is an unsupported routine*/
/***+$ MSG_BaseClass_0002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_GetSecRes_0000 getLabelSecResData: Not enough memory*/
/***+$ please do not translate getLabelSecResData.*/
/***+$ MSG_GetSecRes_0000 message is obsolete - DO NOT localize this message.*/
/*************** Display.c ***************/
externaldef(messages) _XmConst char *_XmMsgDisplay_0001 =
"Creating multiple XmDisplays for the same X display. Only the\n\
first XmDisplay created for a particular X display can be referenced\n\
by calls to XmGetXmDisplay";
/***+$ please do not translate XmDisplay or XmGetXmDisplay*/
externaldef(messages) _XmConst char *_XmMsgDisplay_0002 =
"Received TOP_LEVEL_LEAVE with no active DragContext";
/***+$ please do not translate TOP_LEVEL_LEAVE or DragContext*/
externaldef(messages) _XmConst char *_XmMsgDisplay_0003 =
"Cannot set XmDisplay class to a non-subclass of XmDisplay";
/***+$ please do not translate XmDisplay*/
/**************** DragBS.c ****************/
externaldef(messages) _XmConst char *_XmMsgDragBS_0000 =
"_MOTIF_DRAG_WINDOW property has been destroyed";
/***+$ please do not translate _MOTIF_DRAG_WINDOW*/
externaldef(messages) _XmConst char *_XmMsgDragBS_0001 =
"The protocol version levels do not match.";
externaldef(messages) _XmConst char *_XmMsgDragBS_0002 =
"Unable to open display.";
externaldef(messages) _XmConst char *_XmMsgDragBS_0003 =
"The atom table is empty.";
externaldef(messages) _XmConst char *_XmMsgDragBS_0004 =
"The target table is empty.";
externaldef(messages) _XmConst char *_XmMsgDragBS_0005 =
"The target table has an inconsistent property.";
externaldef(messages) _XmConst char *_XmMsgDragBS_0006 =
"Invalid target table index.";
/*************** DragC.c *******************/
externaldef(messages) _XmConst char *_XmMsgDragC_0001 =
"GenerateCallback does not expect XmCR_DROP_SITE_ENTER as a reason.";
/***+$ please do not translate GenerateCallback or XmCR_DROP_SITE_ENTER*/
externaldef(messages) _XmConst char *_XmMsgDragC_0002 =
"Invalid selection in DropConvertCallback";
/***+$ please do not translate DropConvertCallback*/
externaldef(messages) _XmConst char *_XmMsgDragC_0003 =
"The drop selection was lost.";
externaldef(messages) _XmConst char *_XmMsgDragC_0004 =
"XGrabPointer failed.";
externaldef(messages) _XmConst char *_XmMsgDragC_0005 =
"ExternalNotifyHandler: the callback reason is not acceptable.";
/***+$ please do not translate ExternalNotifyHandler*/
externaldef(messages) _XmConst char *_XmMsgDragC_0006 =
"XmDragStart must be called as a result of a button press or motion event.";
/***+$ please do not translate XmDragStart*/
/**************** DragICC.c ****************/
externaldef(messages) _XmConst char *_XmMsgDragICC_0000 =
"Unknown drag and drop message type.";
externaldef(messages) _XmConst char *_XmMsgDragICC_0001 =
"The protocol version levels do not match.";
/**************** DragIcon.c ****************/
externaldef(messages) _XmConst char *_XmMsgDragIcon_0000 =
"No geometry specified for dragIcon pixmap";
/***+$ please do not translate dragIcon*/
externaldef(messages) _XmConst char *_XmMsgDragIcon_0001 =
"A dragIcon created with no pixmap";
/***+$ please do not translate dragIcon*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_DragIcon_0002 String to Bitmap converter needs Screen argument.*/
/***+$ MSG_DragIcon_0002 message is obsolete - DO NOT localize this message.*/
/**************** DragOverS.c ****************/
externaldef(messages) _XmConst char *_XmMsgDragOverS_0000 =
"Depth mismatch.";
externaldef(messages) _XmConst char *_XmMsgDragOverS_0001 =
"Unknown icon attachment.";
externaldef(messages) _XmConst char *_XmMsgDragOverS_0002 =
"Unknown drag state.";
externaldef(messages) _XmConst char *_XmMsgDragOverS_0003 =
"Unknown XmNblendModel.";
/***+$ please do not translate XmNblendModel */
/**************** DragUnder.c ****************/
externaldef(messages) _XmConst char *_XmMsgDragUnder_0000 =
"Unable to get drop site window geometry.";
externaldef(messages) _XmConst char *_XmMsgDragUnder_0001 =
"Invalid animationPixmapDepth.";
/***+$ please do not translate animationPixmapDepth*/
/*************** DropSMgr.c *******************/
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0001 =
"Cannot create drop sites that are children of a simple drop site.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0002 =
"Receiving motion events without an active drag context";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0003 =
"Receiving operation changed without an active drag context.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0004 =
"Creating an active drop site with no drop procedure.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0005 =
"Cannot set rectangles or number of rectangles of composite drop sites.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0006 =
"Registering a widget as a drop site out of sequence.\n\
Ancestors must be registered before any of their \n\
descendants are registered.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0007 =
"Cannot register widget as a drop site more than once.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0008 =
"Drop site type may only be set at creation time.";
/***+$ please do not translate DropSite*/
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0009 =
"Cannot change rectangles of non-simple drop site.";
externaldef(messages) _XmConst char *_XmMsgDropSMgr_0010 =
"Cannot register a Shell as a drop site.";
externaldef(messages) _XmConst char *_XmMsgDropSMgrI_0001 =
"Cannot register a drop site that is a descendent of a simple drop site";
externaldef(messages) _XmConst char *_XmMsgDropSMgrI_0002 =
"Cannot create a discontiguous child list for a composite drop site.";
externaldef(messages) _XmConst char *_XmMsgDropSMgrI_0003 =
"%s is not a drop site child of %s";
/*************** GeoUtils.c *******************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_GeoUtils_0000 Failure of geometry request to \"almost\" reply".*/
/***+$ please do not translate "almost"*/
/***+$ MSG_GeoUtils_0000 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_GeoUtils_0001 Invalid layout of children found.*/
/***+$ MSG_GeoUtils_0001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_GeoUtils_0002 Invalid order found in XmSelectionBox.*/
/***+$ MSG_GeoUtils_0002 message is obsolete - DO NOT localize this message.*/
/**************** Region.c ****************/
externaldef(messages) _XmConst char *_XmMsgRegion_0000 =
"Memory error";
/*************** RepType.c ***************/
externaldef(messages) _XmConst char *_XmMsgRepType_0001 =
"Illegal representation type id";
externaldef(messages) _XmConst char *_XmMsgRepType_0002 =
"Illegal value (%d) for rep type XmR%s";
/***+$ please do not translate XmR%s*/
externaldef(messages) _XmConst char *_XmMsgRepType_0000 =
"Reverse Conversion of ";
/**************** ResConvert.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ResConvert_0000 FetchUnitType: bad widget class.*/
/***+$ please do not translate FetchUnitType.*/
/***+$ MSG_ResConvert_0000 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgResConvert_0001 =
"Improperly defined default list! Exiting...";
externaldef(messages) _XmConst char *_XmMsgResConvert_0002 =
"Missing colon in font string \"%s\"; any remaining fonts in list unparsed";
externaldef(messages) _XmConst char *_XmMsgResConvert_0003 =
"Invalid delimiter in tag \"%s\"; any remaining fonts in list unparsed";
/* Needed for message catalog BC. Do not remove */
/***+MSG_ResConvert_0004 Unmatched quotation marks in string \"%s\"; any remaining fonts in list unparsed"*/
/***+$ MSG_ResConvert_0004 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgResConvert_0005 =
"Unmatched quotation marks in tag \"%s\"; any remaining fonts in list unparsed";
externaldef(messages) _XmConst char *_XmMsgResConvert_0006 =
"Null tag found when converting to type %s; any remaining fonts in list unparsed";
externaldef(messages) _XmConst char *_XmMsgResConvert_0007 =
"Cannot convert XmString to Compound Text";
externaldef(messages) _XmConst char *_XmMsgResConvert_0008 =
"Insufficient memory for XmbTextListToTextProperty";
externaldef(messages) _XmConst char *_XmMsgResConvert_0009 =
"Locale not supported for XmbTextListToTextProperty";
externaldef(messages) _XmConst char *_XmMsgResConvert_0010 =
"XmbTextListToTextProperty failed";
externaldef(messages) _XmConst char *_XmMsgResConvert_0011 =
"Cannot convert widget name to Widget.";
/***+$ please do not translate Widget.*/
externaldef(messages) _XmConst char *_XmMsgResConvert_0012 =
"Cannot convert compound text to XmString";
externaldef(messages) _XmConst char *_XmMsgResConvert_0013 =
"Cannot convert XmString to compound text";
/* Needed for message catalog BC. Do not remove */
/***+MSG_ResConvert_0014 FetchUnitType called without a widget to reference.*/
/***+$ please do not translate FetchUnitType.*/
/***+$ MSG_ResConvert_0014 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ResConvert_0015 FetchDisplayArg called without a widget to reference.*/
/***+$ please do not translate FetchDisplayArg.*/
/***+$ MSG_ResConvert_0015 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ResConvert_0016 FetchWidgetArg called without a widget to reference.*/
/***+$ please do not translate FetchWidgetArg.*/
/***+$ MSG_ResConvert_0016 message is obsolete - DO NOT localize this message.*/
/**************** Screen.c ****************/
externaldef(messages) _XmConst char *_XmMsgScreen_0000 =
"Icon screen mismatch";
externaldef(messages) _XmConst char *_XmMsgScreen_0001 =
"Cannot get XmScreen because XmDisplay was not found.";
/*===========================================================================
* New for CDE
*===========================================================================*/
/**************** ColObj.c ****************/
/* This is really for ColorObj.c, but CDE 1.0 established the message */
/* set name. We use their set name for backward compatibility. */
externaldef(messages) _XmConst char *_XmMsgColObj_0001 =
"Could not allocate memory for color object data.";
externaldef(messages) _XmConst char *_XmMsgColObj_0002 =
"Bad screen number from color server selection.";
/***+ */
/***+$set MS_IG*/
/***+ */
/***+MSG_IG_1 Incorrect alignment.*/
/***+$ MSG_IG_1 message is obsolete - DO NOT localize this message.*/
/***+MSG_IG_2 Incorrect behavior.*/
/***+$ MSG_IG_2 message is obsolete - DO NOT localize this message.*/
/***+MSG_IG_3 Incorrect fill mode.*/
/***+$ MSG_IG_3 message is obsolete - DO NOT localize this message.*/
/***+MSG_IG_4 Incorrect string or pixmap position.*/
/***+$ MSG_IG_4 message is obsolete - DO NOT localize this message.*/
/***+MSG_IG_5 Incorrect margin width or height.*/
/***+$ MSG_IG_5 message is obsolete - DO NOT localize this message.*/
/***+MSG_IG_6 Incorrect shadow type.*/
/***+$ MSG_IG_6 message is obsolete - DO NOT localize this message.*/
/*===========================================================================
* New for 2.0
*===========================================================================*/
/**************** ComboBox.c ****************/
externaldef(messages) _XmConst char *_XmMsgComboBox_0000 =
"Applications cannot add children to XmComboBox widgets.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0001 =
"XmNcomboBoxType resource cannot be changed by XtSetValues.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_ComboBox_0002 XmFontListGetNextFont failed.*/
/***+$ MSG_ComboBox_0002 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_ComboBox_0003 XmFontListInitFontContext failed.*/
/***+$ MSG_ComboBox_0003 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgComboBox_0004 =
"Internal widget has been destroyed. Behavior is undefined.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0005 =
"Internal widget has been unmanaged. Behavior is undefined.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0006 =
"XmQUICK_NAVIGATE is only valid for ComboBoxes of XmNcomboBoxType XmDROP_DOWN_LIST";
externaldef(messages) _XmConst char *_XmMsgComboBox_0007 =
"Action invoked with the wrong number of parameters.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0008 =
"Action routine called from a widget that is not a descendant of ComboBox";
externaldef(messages) _XmConst char *_XmMsgComboBox_0009 =
"XmComboBoxSelectItem called with an item not present in the ComboBox.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0010 =
"XmComboBoxSetItem called with an item not present in the ComboBox.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0011 =
"XmComboBoxDeletePos called with an invalid position.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0012 =
"XmComboBox utility routine called with an invalid widget.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0013 =
"Applications may not set the automatic XmComboBox widget children.";
externaldef(messages) _XmConst char *_XmMsgComboBox_0014 =
"XmComboBox positionMode cannot be changed after creation.";
/***+$ please do not translate positionMode. */
/**************** Container.c ****************/
externaldef(messages) _XmConst char *_XmMsgContainer_0000 =
"Action invoked with the wrong number of parameters.";
externaldef(messages) _XmConst char *_XmMsgContainer_0001 =
"XmNdetailColumnHeading and XmNdetailColumnHeadingCount do not match!";
/**************** CSText.c ***************/
/***+MSG_CSText_0000 Invalid margin height; must be greater than or equal to 0.*/
/***+$ MSG_CSText_0000 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0001 Invalid margin width; must be greater than or equal to 0.*/
/***+$ MSG_CSText_0001 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0002 Invalid edit mode.*/
/***+$ MSG_CSText_0002 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0003 XmNtraversalOn must always be true.*/
/***+$ MSG_CSText_0003 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0004 Cannot change XmNscrollHorizontal after initialization.*/
/***+$ MSG_CSText_0004 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0005 Cannot change XmNscrollVertical after initialization.*/
/***+$ MSG_CSText_0005 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0006 Cannot change XmNscrollTopSide after initialization.*/
/***+$ MSG_CSText_0006 message is obsolete - DO NOT localize this message.*/
/***+MSG_CSText_0007 Cannot change XmNscrollLeftSide after initialization.*/
/***+$ MSG_CSText_0007 message is obsolete - DO NOT localize this message.*/
/**************** GrabShell.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_GrabS_0000 XmPopup requires a subclass of shellWidgetClass.*/
/***+$ please do not translate shellWidgetClass.*/
/***+$ MSG_GrabS_0000 message is obsolete - DO NOT localize this message.*/
/**************** Manager.c ****************/
externaldef(messages) _XmConst char *_XmMsgManager_0000 =
"Widget class %s has invalid CompositeClassExtension record.";
/***+$ please do not translate CompositeClassExtension.*/
externaldef(messages) _XmConst char *_XmMsgManager_0001 =
"Cannot change XmNlayoutDirection or XmNstringDirection after initialization.";
/**************** NavigMap.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_NavigMap_0000 _XmNavigate called with invalid direction.*/
/***+$ MSG_NavigMap_0000 message is obsolete - DO NOT localize this message.*/
/**************** Notebook.c ****************/
externaldef(messages) _XmConst char *_XmMsgNotebook_0000 =
"XmNnotebookChildType resource cannot be set by XtSetValues.";
/**************** PixConv.c ****************/
externaldef(messages) _XmConst char *_XmMsgPixConv_0000 =
"Wrong number of parameters for CvtStringToPixmap";
/***+$ please do not translate CvtStringToPixmap.*/
/**************** Primitive.c ****************/
externaldef(messages) _XmConst char *_XmMsgPrimitive_0000 =
"Cannot change XmNlayoutDirection after initialization.";
/**************** ScrollFrameT.c ****************/
externaldef(messages) _XmConst char *_XmMsgScrollFrameT_0000 =
"AssocNavigator requires a navigator trait";
/***+$ please do not translate AssocNavigator.*/
externaldef(messages) _XmConst char *_XmMsgScrollFrameT_0001 =
"DeAssocNavigator requires a navigator trait";
/***+$ please do not translate DeAssocNavigator.*/
/**************** SpinB.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_SpinB_0001 Invalid value for XmNarrowLayout.*/
/***+$ MSG_SpinB_0001 message is obsolete - DO NOT localize this message.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_SpinB_0002 XmNminimumValue equals XmNmaximumValue.*/
/***+$ MSG_SpinB_0002 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgSpinB_0003 =
"No items supplied for XmSTRING child.";
externaldef(messages) _XmConst char *_XmMsgSpinB_0004 =
"XmNincrementValue cannot be 0. A value of 1 will be used.";
externaldef(messages) _XmConst char *_XmMsgSpinB_0005 =
"Spin direction specified by XmNincrementValue\n\
has been reversed to match the specified\n\
XmNminimumValue and XmNmaximumValue.";
externaldef(messages) _XmConst char *_XmMsgSpinB_0006 =
"XmNposition out of range; minimum XmNposition used.";
externaldef(messages) _XmConst char *_XmMsgSpinB_0007 =
"XmNposition out of range; maximum XmNposition used.";
externaldef(messages) _XmConst char *_XmMsgSpinB_0008 =
"Invalid value for XmNpositionType. Using default value.";
/* Needed for message catalog BC. Do not remove */
/***+MSG_SpinB_0009 XmNpositionType resource can only be set at creation time.*/
/***+$ MSG_SpinB_0009 message is obsolete - DO NOT localize this message.*/
/**************** Transfer.c ****************/
externaldef(messages) _XmConst char *_XmMsgTransfer_0000 =
"Calling SelectionCallbackWrapper when transfers should be finished";
/***+$ please do not translate SelectionCallbackWrapper.*/
/* Needed for message catalog BC. Do not remove */
/***+MSG_Transfer_0001 Cannot lock the clipboard; aborting transfer.*/
/***+$ MSG_Transfer_0001 message is obsolete - DO NOT localize this message.*/
externaldef(messages) _XmConst char *_XmMsgTransfer_0002 =
"The format and type of the callback supplied data does not match the data being merged.";
externaldef(messages) _XmConst char *_XmMsgTransfer_0003 =
"The status in the XmConvertCallbackStruct is not XmCONVERT_MERGE.";
externaldef(messages) _XmConst char *_XmMsgTransfer_0004 =
"CONVERT_MORE is not yet supported.";
/***+$ please do not translate CONVERT_MORE.*/
externaldef(messages) _XmConst char *_XmMsgTransfer_0005 =
"Bad atom value found.";
externaldef(messages) _XmConst char *_XmMsgTransfer_0006 =
"Warning: Attempt to start a MULTIPLE transfer when one is in progress.";
/***+$ please do not translate MULTIPLE.*/
externaldef(messages) _XmConst char *_XmMsgTransfer_0007 =
"Warning: Attempt to send a MULTIPLE transfer when one is not in progress.";
/***+$ please do not translate MULTIPLE.*/
/**************** VaSimple.c ****************/
externaldef(messages) _XmConst char *_XmMsgVaSimple_0000 =
"XtVaTypedArg conversion needs non-null widget handle.";
externaldef(messages) _XmConst char *_XmMsgVaSimple_0001 =
"Unable to find type of resource for conversion.";
externaldef(messages) _XmConst char *_XmMsgVaSimple_0002 =
"Type conversion failed.";
/*************** Xm.c *******************/
externaldef(messages) _XmConst char *_XmMsgMotif_0000 =
"\nName: %s\nClass: %s\n";
externaldef(messages) _XmConst char *_XmMsgMotif_0001 =
"Action invoked with the wrong number of parameters.";
/*************** XmRenderT.c ************/
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0000 =
"XmNtag cannot be NULL. Setting to empty string.";
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0001 =
"Display is NULL. Cannot load font.";
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0002 =
"XmNfontType invalid. Cannot load font.";
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0003 =
"Conversion failed. Cannot load font.";
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0004 =
"XmNfontType set to XmAS_IS. Cannot load font.";
externaldef(messages) _XmConst char *_XmMsgXmRenderT_0005 =
"XmNloadModel is XmLOAD_IMMEDIATE but XmNfont and XmNfontName not specified.\n\
Cannot load font.";
/**************** XmSelect.c ****************/
/* Needed for message catalog BC. Do not remove */
/***+MSG_XmSelect_0000 Internal error: no selection property context for display.*/
/***+$ MSG_XmSelect_0000 message is obsolete - DO NOT localize this message.*/
/***+MSG_XmSelect_0001 Selection owner returned type INCR property with format != 32.*/
/***+$ please do not translate INCR.*/
/***+$ MSG_XmSelect_0001 message is obsolete - DO NOT localize this message.*/
/***+MSG_XmSelect_0002 XtGetSelectionRequest called for widget \"%s\" outside of ConvertSelection proc.*/
/***+$ please do not translate ConvertSelection.*/
/***+$ MSG_XmSelect_0002 message is obsolete - DO NOT localize this message.*/
/*************** XmString.c ************/
externaldef(messages) _XmConst char *_XmMsgXmString_0000 =
"No font found.";
/*************** XmTabList.c ************/
externaldef(messages) _XmConst char *_XmMsgXmTabList_0000 =
"Tab value cannot be negative.";
/**************** SSpinB.c ****************/
externaldef(messages) _XmConst char *_XmMsgSSpinB_0001 =
"XmNtextField resource cannot be set.";
externaldef(messages) _XmConst char *_XmMsgSSpinB_0002 =
"XmNpositionType resource can only be set at creation time.";
externaldef(messages) _XmConst char *_XmMsgSSpinB_0003 =
"Item does not exist. XmNposition is unchanged.";
/**************** DataF.c ****************/
externaldef(messages) _XmConst char *_XmMsgDataF_0000 =
"Invalid cursor position, must be >= 0.";
externaldef(messages) _XmConst char *_XmMsgDataF_0001 =
"Invalid columns, must be > 0.";
externaldef(messages) _XmConst char *_XmMsgDataF_0002 =
"XmFontListInitFontContext Failed.";
externaldef(messages) _XmConst char *_XmMsgDataF_0003 =
"XmFontListGetNextFont Failed.";
externaldef(messages) _XmConst char *_XmMsgDataF_0004 =
"Character '%c', not supported in font. Discarded.";
externaldef(messages) _XmConst char *_XmMsgDataF_0005 =
"Traversal_on must always be true.";
externaldef(messages) _XmConst char *_XmMsgDataF_0006 =
"Invalid columns, must be >= 0.";
externaldef(messages) _XmConst char *_XmMsgDataFWcs_0000 =
"Character '%s', not supported in font. Discarded.";
externaldef(messages) _XmConst char *_XmMsgDataFWcs_0001 =
"Cannot use multibyte locale without a fontset. Value discarded.";
/*
* This one is not part of the message catalog
*/
externaldef(messages) _XmConst char *XME_WARNING="XmeWarning";
#ifndef NO_MESSAGE_CATALOG
externaldef(messages) nl_catd Xm_catd = NULL;
#endif
|