unit cxWebStrs; interface resourcestring scxWebNoPage = 'Application does not have the default page'; scxWebPageNotFound = 'Web Page not found: %s'; scxWebPageContentIsEmpty = 'Web Page %s does not have content'; scxResourceNotFound = 'Resource %s not found'; scxWebSessionsLimitExceeded = 'Sessions limit is exceeded'; scxWebCannotChangePositioningType = 'The designer doesn''t support this positioning type'; scxWebDuplicateName = 'Component name "%s" is duplicated'; scxControlParentSetToSelf = 'A control cannot have itself as its parent'; // Script errors scxDuplicateScriptEngineID = 'The server-side script engine with ID ''%d'' is already registered.'; scxDuplicateScriptEngineName = 'The ''%s'' name is already used.'; scxCannotCreateScriptEngine = 'Cannot create script engine: %s.'#13#10'Error code: %x'; scxDuplicateItem = 'An item named %s already exists'; scxItemNameIsBlank = 'Item name cannot be blank'; scxObjectFactoryNotFound = 'Object factory for class %s missing'; scxScriptClassNotFound = 'Wrapper for class %s missing'; scxScriptErrorHTML = ''#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + '
Error[%0:u]: %1:s
Code:#%2:x
Description:%3:s
Source name:%4:s
Source line:%5:u
Position:%6:u
%7:s
%8:s
'#13#10; // Script parser errors scxWebScriptParserError = 'Server-side script parser error'; scxWebPreParsingError = 'Server-side script pre-parsing error'; scxCantFindIncludePage = 'Cannot find included page: %s'; scxCantFindIncludeFile = 'Cannot find included file: %s'; scxInclusionNotSupported = 'Page %s does not support inclusion'; scxRecursiveInclude = 'The %s %s recursively includes itself'; scxUnsupportedIncludeType = 'Unsupported include type ''%s'''; scxExpectedSymbol = 'Expected ''%s'''; scxUnknownScriptEngine = 'Unknown server-side script engine name: ''%s''.'; // HTML parser errors scxExpectedPropertyName = 'Expected property Name'; scxInvalidPropertyName = 'Invalid property name'; scxExpectedPropertyValue = 'Expected property value'; scxExpectedClassname = 'Expected classname'; scxExpectedClosingTag = 'Expected closing tag for %s'; scxUnexpectedClosingTag = 'Unexpected closing tag for %s'; scxTooManyForms = 'Too many forms'; scxComponentOutOfForm = 'Component with name "%s" out of form'; scxInvalidPropertyValue = 'The property value %s of the %s property is invalid'; scxInvalidComponentClassName = 'The web classname in the tag: ewf:%s is invalid'; scxIncorrectComponentClassName = 'The class name of the component: %s is not: %s'; scxCannotAssignProperty = 'Cannot assign the property %s of the %s component.'; scxInvalidComponentPropertyValue = 'The property %s of the %s component is invalid.'; scxUnexpectedEWFTag = 'The EWF tag cannot be placed on this module.'; // HTML builder errors scxUnableWriteAttribute = 'Unable write attribute'; scxInvalidAttribute = 'Invalid attribute'; scxInvalidStyleAttribute = 'Invalid style attribute'; scxInvalidEventAttribute = 'Invalid event attribute'; scxInvalidClosingTag = 'Invalid closing tag'; scxUnsupportedTag = 'Tag %s doesn''t supported in this browser'; // HTML Templates scxSmartRedirectHTML = ''#13#10 + ' '#13#10 + ' Document Moved 301'#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + '

Object Moved


'#13#10 + ' This Object may be found here.'#13#10 + ' '#13#10 + ''#13#10; scxPageTitleScript = '<%=Context.Page.Title%>'; scxFormNameScript = '<%=Form.Name%>'; scxDefaultHTMLTemplate = ''#13#10 + ' '#13#10 + ' %0:s'#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ' '#13#10 + ''#13#10; scxDebugHTMLFileName = 'htmlsource.ewf'; // WebGrid strings scxNodeBtnHint = 'Row #'; scxCancelBtnHint = 'Cancel edit'; scxDeleteBtnHint = 'Delete record'; scxInsertBtnHint = 'Insert record'; scxPostBtnHint = 'Post edit'; scxEmptyGroupPanelText = ' Drag a column header here to group by that column '; scxStatusBarText = 'Rows %d - %d From %d Visible'; scxStatusBarEmptyGridText = 'Data not loaded to grid'; // WebDataSources strings scxDeleteConfirmText = 'Delete record?'; implementation end.