📄 qexport4consts.pas
字号:
unit QExport4Consts;
interface
resourcestring
{$IFDEF WIN32}
SMSExcelFilter = 'Microsoft Excel files (*.xls)|*.xls';
SMSAccessFilter = 'Microsoft Access files (*.mdb)|*.mdb'; // since 2.6
SMSWordFilter = 'Microsoft Word files (*.doc)|*.doc';
SRTFFilter = 'RTF files (*.rtf)|*.rtf';
SHTMLFilter = 'HTML files (*.html, *.htm)|*.html;*.htm';
SPDFFilter = 'PDF Documents (*pdf)|*.pdf'; // since 2.7
STextFilter = 'Text files (*.txt)|*.txt';
SXMLFilter = 'XML files (*.xml)|*.xml';
SCSVFilter = 'CSV files (*.csv)|*.csv';
SDIFFFilter = 'DIF files (*.dif)|*.dif';
SSYLKFilter = 'SYLK files (*.slk)|*.slk';
SLaTeXFilter = 'LaTeX files (*.tex)|*.tex';
SSQLFilter = 'SQL files (*.sql)|*.sql';
SODSFilter = 'ODS files (*.ods)|*.ods';
SODTFilter = 'ODT files (*.odt)|*.odt';
SDBFFilter = 'DBF files (*.dbf)|*.dbf';
SXLSXFilter = 'Microsoft Excel 2007 files (*.xlsx)|*.xlsx';
SDOCXFilter = 'Microsoft Word 2007 files (*.docx)||*.docx';
{$ENDIF}
{$IFDEF LINUX}
SMSExcelFilter = 'Microsoft Excel files (*.xls)';
SMSWordFilter = 'Microsoft Word files (*.doc)';
SRTFFilter = 'RTF files (*.rtf)';
SHTMLFilter = 'HTML files (*.html;*.htm)';
SPDFFilter = 'PDF Documents (*pdf)'; // since 2.7
STextFilter = 'Text files (*.txt)';
SXMLFilter = 'XML files (*.xml)';
SCSVFilter = 'CSV files (*.csv)';
SDIFFFilter = 'DIF files (*.dif)';
SSYLKFilter = 'SYLK files (*.slk)';
SLaTeXFilter = 'LaTeX files (*.tex)';
SSQLFilter = 'SQL files (*.sql)';
SDBFFilter = 'DBF files (*.dbf)';
SODSFilter = 'ODS files (*.ods)';
SODTFilter = 'ODT files (*.odt)';
SXLSXFilter = 'Microsoft Excel 2007 files (*.xlsx)';
SDOCXFilter = 'Microsoft Word 2007 files (*.docx)';
{$ENDIF}
QEM_ExportSourceNotAssigned = 'Export source (%s) is not assigned';
QEM_DefineSheetError = 'Sheet %s define with error: %s';
QEM_ExportSourceNotActive = 'Export source (%s) is closed';
QEM_ExportSourceEmpty = 'Export source (%s) is empty';
QEM_AllowedExportsEmpty = 'Property Allowed cannot be empty';
QEM_StopExportCaption = 'Are you sure?';
QEM_StopExportConfirm = 'Do you want to abort export?';
QEM_NewFormatValue = 'New format value';
QEM_EnterValue = 'Enter Value:';
QEM_FileNotPresent = 'Result file name not present';
QEM_ExportAccessOleError = 'You need install and register the MS Access application';
QEM_DirNotFound = 'Directory ''%s'' not found and cannot be created'; // since 2.81
QEPF_Letter = 'Letter'; // since 2.8
QEPF_Legal = 'Legal'; // since 2.8
QEPF_A3 = 'A3'; // since 2.8
QEPF_A4 = 'A4'; // since 2.8
QEPF_A5 = 'A5'; // since 2.8
QEPF_B5_JIS = 'B5(JIS)'; // since 2.8
QEPF_US_Std_Fanfold = 'US Std Fanfold'; // since 2.8
QEPF_Fanfold = 'Fanfold'; // since 2.8
QEPF_User = 'User'; // since 2.8
QEUN_Inch = 'Inches'; // since 2.8
QEUN_Millimeter = 'Millimeters'; // since 2.8
QEUN_Dot = 'Dots'; // since 2.8
QEPO_Portrait = 'Portrait'; // since 2.8
QEPO_Landscape = 'Landscape'; // since 2.8
QED_Title = 'Export dialog';
QED_AdvancedTitle = 'Export dialog -- Export to [%s]';
QED_CloseButtonCaption = '&Close';
QED_ExportTitle = 'Exporting...';
QED_CancelButtonCaption = '&Cancel';
QED_FileName = 'Destination file';
QED_SelectFile = 'Select...';
QED_OpenAfterExport = 'Open file after export';
QED_PrintAfterExport = 'Print file after export';
// Export Type
QED_ExportType_Title = 'Export &Type';
QED_ExportType_Formats = ' &Formats';
QED_ExportType_ExportTo = ' Export to ';
QED_ExportType_XLS = 'MS Excel';
QED_ExportType_Access = 'MS Access'; // since 2.6
QED_ExportType_DOC = 'MS Word';
QED_ExportType_RTF = 'RTF';
QED_ExportType_HTML = 'HTML';
QED_ExportType_PDF = 'PDF'; // since 2.7
QED_ExportType_TXT = 'Text File';
QED_ExportType_XML = 'XML';
QED_ExportType_DBF = 'DBF';
QED_ExportType_CSV = 'CSV File';
QED_ExportType_DIFF = 'DIF File';
QED_ExportType_SYLK = 'SYLK File';
QED_ExportType_LaTeX = 'LaTeX';
QED_ExportType_SQL = 'SQL';
QED_ExportType_Clipboard = 'Windows Clipboard';
QED_ExportType_ODS = 'ODS File';
QED_ExportType_ODT = 'ODT File';
QED_ExportType_Xlsx = 'MS Excel 2007';
QED_ExportType_Docx = 'MS Word 2007';
QED_ExportType_Options = '&Options';
QED_ExportType_Constraints = ' Constraints ';
QED_ExportType_Options_GoToFirstRecord = 'Go to the first record';
QED_ExportType_Options_CurrentRecordOnly = 'Current record only'; // since 2.25
QED_ExportType_Options_ExportEmpty = 'Allow export empty data source'; // since 2.6
QED_ExportType_ExportAllRecords = 'Export all records';
QED_ExportType_Options_ExportRecCount = 'Export only';
QED_ExportType_Options_SkipRecCount = 'Skip';
QED_ExportType_Options_Records = 'records';
QED_Tools = 'Tools'; // since 2.7
QED_ExportType_Save = 'Save Export Options...';
QED_ExportType_Load = 'Load Export Options...';
QED_ExportType_Start = '&Start Export';
QED_ExportType_Close = '&Close';
// Fields
QED_Fields_Title = 'F&ields';
QED_Fields_Available = 'Available fields:';
QED_Fields_Exported = 'Exported fields:';
QED_Fields_Add = '>';
QED_Fields_AddAll = '>>';
QED_Fields_Remove = '<';
QED_Fields_RemoveAll = '<<';
// Formats
QED_Formats_Title = '&Formats';
QED_Formats_Common = 'Common';
QED_Formats_Integer = 'Integer Format';
QED_Formats_Float = 'Float Format';
QED_Formats_Date = 'Date Format';
QED_Formats_Time = 'Time Format';
QED_Formats_DateTime = 'DateTime Format';
QED_Formats_Currency = 'Currency Format';
QED_Formats_BooleanTrue = 'Boolean true';
QED_Formats_BooleanFalse = 'Boolean false';
QED_Formats_NullString = 'Null string';
QED_Formats_User = 'User';
QED_Formats_Add = 'Add';
QED_Formats_Edit = 'Edit';
QED_Formats_Delete = 'Delete';
QED_Formats_Clear = 'Clear';
// Header & Footer
QED_Header_Footer_Title = 'Hea&der && Footer';
QED_Header_Footer_Header = 'Header text:';
QED_Header_Footer_Footer = 'Footer text:';
// Captions
QED_Captions_AllowCaptions = 'Allow captions';
QED_Captions_Title = '&Captions';
QED_Captions_FeldName = 'Field name';
QED_Captions_Caption = 'Caption';
QED_Captions_Width = 'Width';
QED_Captions_Align = 'Align';
QED_Align_Left = 'Left'; // since 2.25
QED_Align_Right = 'Right'; // since 2.25
QED_Align_Center = 'Center'; // since 2.25
QED_StringGrid_CaptionRow = 'Caption row'; //since 2.6
// Word / RTF
QED_RTF_Title = 'Word / RTF Options';
QED_RTF_DataStyles = 'Data Styles'; // since 3.0
QED_RTF_BaseStyles = 'Base Styles'; // since 3.0
QED_RTF_StripStyles = 'Strip Styles'; // since 3.0
QED_RTF_AddRTFStyle = 'Add Style'; // since 3.0
QED_RTF_DelRTFStyle = 'Del Style'; // since 3.0
QED_RTF_MoveRTFStyleUp = 'Move Style Up'; // since 3.0
QED_RTF_MoveRTFStyleDown = 'Move Style Down'; // since 3.0
QED_RTF_LoadRTFStyle = 'Load Styles'; // since 3.0
QED_RTF_SaveRTFStyle = 'Save Styles'; // since 3.0
QED_RTF_StripType = ' Strip type '; // since 3.0
QED_RTF_StripType_None = 'None'; // since 3.0
QED_RTF_StripType_Col = 'Col'; // since 3.0
QED_RTF_StripType_Row = 'Row'; // since 3.0
QED_RTF_Font = 'Font'; // since 3.0
QED_RTF_FontSize = 'Size'; // since 3.0
QED_RTF_FontColor = 'Font Color'; // since 3.0
QED_RTF_FontBold = 'Bold'; // since 3.0
QED_RTF_FontItalic = 'Italic'; // since 3.0
QED_RTF_FontStrikeOut = 'Strike Out'; // since 3.0
QED_RTF_FontUnderline = 'Underline'; // since 3.0
QED_RTF_Left = 'Left'; // since 3.0
QED_RTF_Center = 'Center'; // since 3.0
QED_RTF_Right = 'Right'; // since 3.0
QED_RTF_Fill = 'Fill'; // since 3.0
QED_RTF_BackgroundColor = 'Background Color'; // since 3.0
QED_RTF_HighlightColor = 'Highlight Color'; // since 3.0
QED_RTF_AllowBackground = 'Allow Background'; // since 3.0
QED_RTF_AllowHighlight = 'Allow Highlight'; // since 3.0
QED_RTF_Sample = ' Sample'; // since 3.0
QED_RTF_Advanced = 'Advanced'; // since 3.0
QED_RTF_PageOrientation = ' Page Orientation ';
QED_RTF_Reset_Item = 'Reset item'; // since 3.0
QED_RTF_Reset_SelectedItems = 'Reset selected'; // since 3.0
QED_RTF_Reset_All = 'Reset all'; // since 3.0
QED_RTF_Reset_All_Question_Caption = 'Attention!'; // since 3.0
QED_RTF_Reset_All_Question = 'All field formats will be reset the ' +
'default values.' +
#13#10 + 'Are you sure?'; // since 3.0
QED_RTF_Header = 'HEADER'; // since 3.0
QED_RTF_Caption = 'CAPTION'; // since 3.0
QED_RTF_Data = 'DATA'; // since 3.0
QED_RTF_Footer = 'FOOTER'; // since 3.0
QED_RTF_StyleItem = 'ITEM_'; // since 3.0
// XML
QED_XML_Title = 'XML Options';
QED_XML_Standalone = 'Standalone';
QED_XML_Encoding = 'Encoding';
// SQL
QED_SQL_Title = '&SQL Options';
QED_SQL_TableOptions = 'Table options';
QED_SQL_AddCreateTable = 'Add "Create Table" statement';
QED_SQL_TableName = 'Table name';
QED_SQL_Commit = 'Commit options';
QED_SQL_CommitAfter_01 = 'Commit after';
QED_SQL_CommitAfter_02 = 'record(s)';
QED_SQL_CommitAfterScript = 'Commit after script';
QED_SQL_CommitStatement = 'Commit statement';
QED_SQL_Other = 'Other Options';
QED_SQL_NullAs = 'Export null values as';
QED_SQL_StatementTerm = 'Statement term';
// HTML
QED_HTML_Title = '&HTML Options';
QED_HTML_Preview_Title = '&Preview';
QED_HTML_Preview_DefaultText = 'Default text';
QED_HTML_Preview_NonVisitedLink = 'Non-visited link';
QED_HTML_Preview_VisitedLink = 'Visited link';
QED_HTML_Preview_ActiveLink = 'Active link';
QED_HTML_Preview_Template = 'Template';
QED_HTML_Preview_SaveTemplate = 'Save as template...';
QED_HTML_Preview_LoadTemplate = 'Load template...';
QED_HTML_Basic_Title = '&Basic';
QED_HTML_Basic_PageTitle = 'Title';
QED_HTML_Basic_CSS = 'Cascade Style Sheets using';
QED_HTML_Basic_CSSInternal = 'Internal';
QED_HTML_Basic_CSSExternal = 'External';
QED_HTML_Basic_CSSFileName = 'CSS file name';
QED_HTML_Basic_OverwriteCSSFile = 'Overwrite CSS file if exists'; // since 2.7
QED_HTML_Multifile_Title = '&Multi-File'; // since 2.7
QED_HTML_MultiFile_IndexLinkTemplate = 'Index Link Template'; // since 2.7
QED_HTML_Basic_MultiFile_Options = 'Multi-file export';
QED_HTML_Basic_MultiFile_Use = 'Use multi-file export';
QED_HTML_Basic_MultiFile_RecCount_01 = 'Maximum';
QED_HTML_Basic_MultiFile_RecCount_02 = 'record(s) in single file';
QED_HTML_Basic_MultiFile_GenerateIndex = 'Generate index';
QED_HTML_Basic_MultiFile_Navigation = ' Navigation '; // since 2.7
QED_HTML_Basic_MultiFile_Navigation_OnTop = 'On Top'; // since 2.7
QED_HTML_Basic_MultiFile_Navigation_OnBottom = 'On Bottom'; // since 2.7
QED_HTML_Basic_MultiFile_IndexLinkTitle = 'Index'; // since 2.7
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -