home *** CD-ROM | disk | FTP | other *** search
/ PC Open 19 / pcopen19.iso / Zipped / CALMIR21.ZIP / SOURCE.ZIP / SRC / LOCALE.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-02-20  |  5.5 KB  |  189 lines

  1. {**************************************************************************}
  2. {                                                                          }
  3. {    Calmira shell for Microsoft« Windows(TM) 3.1                          }
  4. {    Source Release 2.0                                                    }
  5. {    Copyright (C) 1997-1998 Li-Hsin Huang                                 }
  6. {                                                                          }
  7. {    This program is free software; you can redistribute it and/or modify  }
  8. {    it under the terms of the GNU General Public License as published by  }
  9. {    the Free Software Foundation; either version 2 of the License, or     }
  10. {    (at your option) any later version.                                   }
  11. {                                                                          }
  12. {    This program is distributed in the hope that it will be useful,       }
  13. {    but WITHOUT ANY WARRANTY; without even the implied warranty of        }
  14. {    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         }
  15. {    GNU General Public License for more details.                          }
  16. {                                                                          }
  17. {    You should have received a copy of the GNU General Public License     }
  18. {    along with this program; if not, write to the Free Software           }
  19. {    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.             }
  20. {                                                                          }
  21. {**************************************************************************}
  22.  
  23. unit Locale;
  24.  
  25. interface
  26.  
  27. {$R LOCALE.RES}
  28.  
  29. const
  30.   SCannotFindLicense = 1024;
  31.   SCannotRunNotepad = 1025;
  32.   SWelcome = 1026;
  33.   SCannotMoveToBin = 1027;
  34.   SCannotRestoreItem = 1028;
  35.   SCannotRestoreFolderOverFile = 1029;
  36.   SQueryReplaceFile = 1030;
  37.   SDriveRefPrompt = 1031;
  38.   SFolderRefPrompt = 1032;
  39.   SFileRefPrompt = 1033;
  40.   SInternetRefPrompt = 1034;
  41.  
  42.   SMenuCascadeBrowsers = 1040;
  43.   SMenuArrangeIcons = 1041;
  44.   SMenuLineUpIcons = 1042;
  45.   SMenuCloseBrowsers = 1043;
  46.   SMenuClearDesktop = 1044;
  47.   SMenuProperties = 1045;
  48.   SMenuAbout = 1046;
  49.   SSelectFolder = 1047;
  50.   SAliasProperties = 1048;
  51.   SShortcutProperties = 1049;
  52.   SMenuShortcutProperties = 1050;
  53.   SMenuShortcutOpen = 1051;
  54.   SMenuShortcutRemove = 1052;
  55.   SMenuBinEmpty = 1053;
  56.  
  57.   SCloseUnnamedDialog = 1056;
  58.   SCloseSpecificDialog = 1057;
  59.   SNotifyEndWindows = 1058;
  60.   SQueryQuit = 1059;
  61.   SOpenFolder = 1060;
  62.   SFolderName = 1061;
  63.   SUnknownCommand = 1062;
  64.   SCannotOpenFolder = 1063;
  65.   SQueryReplaceAlias = 1064;
  66.   SCannotOpenTarget = 1065;
  67.   SQueryDeleteShortcut = 1066;
  68.  
  69.   SFileAlreadyExists = 1072;
  70.   SFolderAlreadyExists = 1073;
  71.   SCannotChangeAttr = 1074;
  72.   SInvalidFilename = 1075;
  73.   SCannotRename = 1076;
  74.   SChangeDescription = 1077;
  75.   SDescribe = 1078;
  76.   SCannotOpenFileWith = 1079;
  77.   SCannotPutFolderOnSelf = 1080;
  78.   SCannotPutFolderInSelf = 1081;
  79.   SCannotPutFolderOverFile = 1082;
  80.  
  81.   SQueryAffectProtected = 1088;
  82.   SCannotCopyFileToSelf = 1089;
  83.   SCannotMoveFileToSelf = 1090;
  84.   SCannotCreateFolder = 1091;
  85.   SCannotReplaceFile = 1092;
  86.   SCannotMoveFile = 1093;
  87.   SCannotCyclicCopy = 1094;
  88.   SCannotCyclicMove = 1095;
  89.   SCannotDeleteFile = 1096;
  90.   SNoFilesFound = 1097;
  91.   SCannotRunDefViewer = 1098;
  92.   SFileNotAssociated = 1099;
  93.   SCannotRunOrView = 1100;
  94.   SConfirmNewFolder = 1101;
  95.  
  96.   SNetSuccess = 1104;
  97.   SNetNotSupported = 1105;
  98.   SOutOfMemory = 1106;
  99.   SNetError = 1107;
  100.   SBadPointer = 1108;
  101.   SBadNetworkResource = 1109;
  102.   SBadLocalName = 1110;
  103.   SInvalidPassword = 1111;
  104.   SAccessDenied = 1112;
  105.   SFilesWereOpen = 1113;
  106.   SAlreadyConnected = 1114;
  107.   SNetOperationFailed = 1115;
  108.   SQueryCloseOpenFiles = 1116;
  109.  
  110.   SQueryCopyItems = 1120;
  111.   SQueryMoveItems = 1121;
  112.   SQueryDeleteItems = 1122;
  113.   SCannotPutToSelf = 1123;
  114.   SCreateFolder = 1124;
  115.   SNewFolderName =1125;
  116.   SRename = 1126;
  117.   SNewFilename = 1127;
  118.   SCreateAlias = 1128;
  119.   SAliasFilename = 1129;
  120.   SPrintFile = 1130;
  121.   SFilename = 1131;
  122.   SDuplicateFile = 1132;
  123.   SDirectoryOf = 1133;
  124.  
  125.   SCopy = 1136;
  126.   SMove = 1137;
  127.   SDelete = 1138;
  128.   SCopyFile = 1139;
  129.   SMoveFile = 1140;
  130.   SCopyFolder = 1141;
  131.   SMoveFolder = 1142;
  132.   SDeleteFile = 1143;
  133.   SDeleteFolder = 1144;
  134.   SProgressCopy = 1145;
  135.   SProgressMove = 1146;
  136.   SProgressDelete = 1147;
  137.   SProgressBinning = 1148;
  138.   SProgressRestoring = 1149;
  139.   SProgressEmptying = 1150;
  140.  
  141.   SAddMenuItem = 1152;
  142.   SInsertMenuItem = 1153;
  143.   SMenuItemProperties = 1154;
  144.   SQueryDeleteMenu = 1155;
  145.   SCannotFindProgman = 1156;
  146.   SCaptionNeedsText = 1157;
  147.   SQuerySaveAdvanced = 1158;
  148.   SAddAdvanced = 1159;
  149.   SIdentValue = 1160;
  150.   SModifyAdvanced = 1161;
  151.   SAddExclusion = 1162;
  152.   SModuleClass = 1163;
  153.   SAddApplet = 1164;
  154.   SAppletFormat = 1165;
  155.  
  156.   SUnknown = 1168;
  157.   SFolderContents = 1169;
  158.   SSelectionContents = 1170;
  159.   STotalContents = 1171;
  160.   SVersion = 1172;
  161.   SAssociation = 1173;
  162.   SAssociateTypeWith = 1174;
  163.   SNoRegCommand = 1175;
  164.   SSpecifyFiles = 1176;
  165.   SStopSearch = 1177;
  166.   SStartSearch = 1178;
  167.   SNoMatchingFiles = 1179;
  168.   SFindListboxFull = 1180;
  169.  
  170.   SProductName = 1184;
  171.   SLegalCopyright = 1185;
  172.   SDescription = 1186;
  173.   SType = 1187;
  174.   SSubType = 1188;
  175.   SFileOS = 1189;
  176.   SComments = 1190;
  177.   SProductVersion = 1191;
  178.   SFileVersion = 1192;
  179.   SCompany = 1193;
  180.   SLegalTrademarks = 1194;
  181.   SInternalName = 1195;
  182.   SPrivateBuild = 1196;
  183.   SSpecialBuild = 1197;
  184.   SOriginalFilename = 1198;
  185.  
  186. implementation
  187.  
  188. end.
  189.