File: simplewebsrvstrconsts.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (102 lines) | stat: -rw-r--r-- 4,573 bytes parent folder | download
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
unit SimpleWebSrvStrConsts;

{$mode objfpc}{$H+}

interface

resourcestring
  rsSWSTitle = 'Simple Web Server';
  rsSWSPathOfCompileserver = 'Path of compileserver, macro $(SWSExe)';
  rsSWSAddress = 'Address';
  rsSWSPortMacro = 'Port, macro $(SWSPort)';
  rsSWTCPPort102465535YouCanUseMacroPortForBelowParams = 'TCP Port 1024..65535'
    +' (you can use macro $(port) for below params)';
  rsSWPort = 'Port';
  rsSWCustomServer = 'Custom Server';
  rsSWExecutable = 'Executable';
  rsSWWorkingDirectory = 'Working Directory';
  rsSWOrigin = 'Origin';
  rsSWNote = 'Note';
  rsSWCopyLocation = 'Copy Location';
  rsSWCopyURL = 'Copy URL';
  rsSWCopyWorkingDirectoryPath = 'Copy Working Directory Path';
  rsSWCopyOrigin = 'Copy Origin';
  rsSWParametersPleaseUseMacroPort = 'Parameters (please use macro $(port))';
  rsSWCommandLineParameters = 'Command line parameters';
  rsSWAddCustomServer = 'Add Custom Server';
  rsSWSelectDirectory = 'Select Directory';
  rsSWServerExtraCommandLineOptionsOnePerLine = 'Server extra command-line '
    +'options (one per line)';
  rsSWBrowserToOpenHTMLPageMacroSWSBrowser = 'Browser to open HTML page, macro'
    +' $(SWSBrowser)';
  rsSWAddExtraCommandLineOptionsForTheCommandWhichStarts = 'Add extra command-'
    +'line options for the command which starts the webserver.';
  rsSWUseThisBrowserWhenOpeningTheURLOrHTMLFileOfAWebBro = 'Use this browser '
    +'when opening the URL or HTML file of a web browser project';
  rsSWForCustomBrowser = 'For custom browser';
  rsSWSBindAny = 'Bind Any';
  rsSWSUserOrigin = 'User';
  rsSWUnableToAddLocation = 'Unable to add location:';
  rsSWMissingController = 'missing controller';
  rsSWMissingLocation = 'Missing Location.';
  rsSWAddSimpleWebServerLocation = 'Add Simple Web Server Location';
  rsSWLocation = 'Location';
  rsSWAnArbitraryNameForTheURLSubfolder = 'An arbitrary name for the URL '
    +'subfolder';
  rsSWLocalDirectory = 'Local Directory';
  rsSWWorkingDirectoryOnDiskUsuallyWhereTheServerFetches = 'Working directory '
    +'on disk, usually where the server fetches files from';
  rsSWAddLocation = 'Add Location';
  rsSWError = 'Error';
  rsSWBrowserFileNotFound = 'Browser file not found: "%s". See';
  rsSWMissingBrowserFilename = 'Missing browser filename. See';
  rsSWThereIsAlreadyAServerOnPortOriginPath = 'There is already a server on '
    +'port %s:%sOrigin: %sPath: %s';
  rsSWErrorFindingFreeTCPPort = 'Error finding free TCP port:';
  rsSWErrorKillingProcess = 'Error killing process %s:';
  rsSWErrorCheckingWhichProcessUsesTCPPort = 'Error checking which process '
    +'uses TCP port %s:';
  rsSWCannotFindBrowserSee = 'Cannot find browser. See';
  rsSWInvalidMacroSee = 'Invalid macro. See';
  rsSWToolsOptionsSimpleWebServerBrowser = 'Tools / Options / Simple Web '
    +'Server / Browser';
  rsSWServerExecutableNotFound = 'Server executable not found.';
  rsSWServerExeIsNotExecutable2 = 'Server exe is not executable.';
  rsSWInvalidPort = 'Invalid Port.';
  rsSWPortAlreadyUsed = 'Port already used.';
  rsSWLocalDirectoryNotFound = 'Local directory not found:';
  rsSWLocationAlreadyUsed = 'Location already used.';
  rsSWErrorWriting = 'Error writing "%s":';
  rsSWErrorCreatingDirectory = 'Error creating directory';
  rsSWDirectoryNotFound = 'Directory not found.';
  rsSWSimpleWebServerAddress = 'Simple Web Server Address';
  rsSWSimpleWebServerPort = 'Simple Web Server Port';
  rsSWSimpleWebServerExecutable = 'Simple Web Server Executable';
  rsSWWrongCompileserverExe = 'Wrong compileserver exe: %s';
  rsSWServerExeIsNotExecutable = 'Server exe is not executable: "%s"';
  rsSWFileNotFound = 'File not found: "%s"';
  rsSWServerExecutableNotFoundInPATH = 'Server executable "%s" not found in '
    +'PATH.';
  rsSWServerDirectoryNotFound = 'Server directory "%s" not found.';
  rsSWBindingOfSocketFailed = 'Binding of socket failed';
  rsSWTheFollowingProcessAlreadyListens = 'The following process already '
    +'listens:';
  rsSWKillProcess = 'Kill process?';
  rsSWKillPID = 'Kill PID %s';
  rsSWTryAnotherPort = 'Try another port';
  rsSWMissingServerExecutable = 'Missing server executable.';
  rsSWServerExecutableNotFoundInPATH2 = 'Server executable not found in PATH.';
  rsSWMissingLocalDirectory = 'Missing local directory.';
  rsSWStartServer = 'Start Server';
  rsSWStopServer = 'Stop Server';
  rsSWDelete = 'Delete?';
  rsSWDeleteServerAt = 'Delete server at "%s"?';
  rsSWConfigure = 'Configure';
  rsSWAdd = 'Add';
  rsSWDelete2 = 'Delete';
  rsSWDeleteLocation = 'Delete location "%s"?';

implementation

end.