File: fpwebstrconsts.pas

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (129 lines) | stat: -rw-r--r-- 4,895 bytes parent folder | download | duplicates (6)
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
unit fpWebStrConsts;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils; 

resourcestring
  SHTMLTitle         = 'Html &title - <title>';
  SHTMLAutor         = 'Html &author - <meta name="author">';
  SHTMLCopyright     = 'Html cop&yright - meta name="copyright">';
  SHTMLCharset       = 'HTML chars&et';
  SHTMLCssFile       = '&CSS file';
  SHTMLJSFile        = '&Javascript file';
  SNewHtmlFileProps  = 'New Html file properties';
  SEnterYouText      = 'Enter your text ...';

  SmiHTMLEditor      = 'HTML Editor';
  SmiHTMLStandart    = 'Standard';

  SmiHTMLTextBold           = 'Bold';
  SmiHTMLTextItalic         = 'Italic';
  SmiHTMLTextUnderline      = 'Underline';
  SmiHTMLInsertBR           = 'Insert new line';
  //para
  SmiHTMLInsertNBSP         = 'Insert Non Breaking Space';
  SmiHTMLInsertHR           = 'Insert horizontal line';
  SmiHTMLInsertComment      = 'Insert HTML comment';
  SmiHTMLInsertIMG          = 'Insert image';
  SmiHTMLInsertLink         = 'Insert link (HREF)';
  SmiHTMLTextAlignLeft      = 'Text align left';
  SmiHTMLTextAlignRight     = 'Text align right';
  SmiHTMLTextAlignCenter    = 'Text align center';
  SmiHTMLTextAlignJustify   = 'Text align justify';

  SmiHTMLStyle       = 'Styles';
  SmiHTMLLists       = 'Lists';
  SmiHTMLTables      = 'Tables';
  SmiHTMLForms       = 'Forms';
  SmiHTMLOther       = 'Other';

  SmiHTMLInsertTable        = 'Insert HTML table';
  SmiHTMLInsertTableRow     = 'Insert HTML table row';
  SmiHTMLInsertTableData    = 'Insert HTML table data';
  SmiHTMLInsertTableRowWD   = 'Insert HTML table row with dialog';
  SmiHTMLInsertTableDataWD  = 'Insert HTML table data with dialog';

  SmiHTMLInsertList         = 'Insert HTML list';

  SmiHTMLInsertHeader1Level = 'Insert HTML level 1 header';
  SmiHTMLInsertHeader2Level = 'Insert HTML level 2 header';
  SmiHTMLInsertHeader3Level = 'Insert HTML level 3 header';
  SmiHTMLInsertHeader4Level = 'Insert HTML level 4 header';
  SmiHTMLInsertHeader5Level = 'Insert HTML level 5 header';
  SmiHTMLInsertColor        = 'Insert HTML color value';
  SmiHTMLInsertDIVBlock     = 'Insert HTML DIV tag';
  SmiHTMLInsertSpanText     = 'Insert HTML SPAN tag';
  SmiHTMLInsertPre          = 'Insert HTML PRE tag';
  SmiHTMLInsertSub          = 'Insert Subscript';
  SmiHTMLInsertSuper        = 'Insert Superscript';


  SmiHTMLInsertForm         = 'Insert HTML Form';
  SmiHTMLFormSelect         = 'Insert Select control';
  SmiHTMLFormSelectOpt      = 'Insert Select options';
  SmiHTMLFormSelectOptWD    = 'Insert Select options with dialog';
  SmiHTMLFormCheckBox       = 'Insert CheckBox control';
  SmiHTMLFormRadioBtn       = 'Insert RadioBtn control';
  SmiHTMLFormButtton        = 'Insert Button control';
  SmiHTMLInsertInput        = 'Insert HTML INPUT tag';
  SmiHTMLInsertInputSubmit  = 'Insert "Submit" button ';
  SmiHTMLInsertInputReset   = 'Insert "Reset" button';
  SmiHTMLFormFieldSet       = 'Insert HTML FIELDSET tag';
  SmiHTMLFormLegend         = 'Insert HTML LEGEND tag';

  SmiOtherInsertFN          = 'Insert file name';

  SHTMLTagCaptionSubmit     = 'Submit';
  SHTMLTagCaptionReset      = 'Reset';

  SHtmlDesign               = 'HTML design';
  SHtmlFile                 = 'HTML file';
  SHtmlFileDesc             = 'Create new HTML file ...';

  SJSFile                   = 'Javascript file';
  SJSFileDesc               = 'Create new javascript file ...';
  SJSSource                 = 'Enter your javascript code here';

  SCSSFile                   = 'CSS file';
  SCSSFileDesc               = 'Create new CSS file ...';
  SCSSSource                 = 'Enter your classes/style definitions here';

  SHTMLTagProperty           = 'Tag property: %s';

  SHTMLTableFormCaption      = 'New HTML table ...';
  SHTMLTableFormColumnCount  = 'Column count';
  SHTMLTableFormRowCount     = 'Row count';
  SHTMLTableFormBorderWidth  = 'Border width';
  SHTMLTableFormUseHeader    = 'Use header row';
  SHTMLTableFormCellpadding  = 'Cell padding';
  SHTMLTableFormCellspacing  = 'Cell spacing';
  SHTMLTableFormWidth        = 'Width';
  SHTMLTableFormHeaderBGColor= 'Header bg color';

  SHTMLInputFormCaption      = 'Tag property: INPUT';
  SHTMLInputFormType         = 'Type';
  SHTMLInputFormName         = 'Name';
  SHTMLInputFormValue        = 'Value';
  SHTMLInputFormSize         = 'Size';
  SHTMLInputFormMaxLen       = 'Max length';
  SHTMLInputFormAlt          = 'Alt';
  SHTMLInputFormImageSrc     = 'Image src';
  SHTMLInputFormTabIndex     = 'Tab Index';
  SHTMLInputFormAlign        = 'Align';
  SHTMLInputFormAccessKey    = 'Access key';

  sHTTPPort = '&Port to listen for requests:';
  sNewHTTPApp = 'New HTTP application';
  sRegisterFiles = '&Register location to serve files from';
  sDocumentLocation = '&Location';
  sDocumentRoot = '&Directory';
  sUseThreads = 'Use &threads to serve requests in';

implementation

end.