mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-31 21:52:48 +02:00
19 lines
296 B
ObjectPascal
19 lines
296 B
ObjectPascal
unit SimpleWebSrvStrConsts;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
resourcestring
|
|
rsSWSTitle = 'Simple Web Server';
|
|
rsSWSPathOfCompileserver = 'Path of compileserver';
|
|
rsSWSAddress = 'Address';
|
|
rsSWSPort = 'Port';
|
|
rsSWSBindAny = 'Bind Any';
|
|
rsSWSUserOrigin = 'User';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|