mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-30 12:43:54 +02:00

strpas2jsdesign.pp, regenerated translations and updated Russian translation git-svn-id: trunk@56847 -
37 lines
874 B
ObjectPascal
37 lines
874 B
ObjectPascal
unit strpas2jsdesign;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
Resourcestring
|
|
// "Create new" dialog
|
|
pjsdWebApplication = 'Web Browser Application';
|
|
pjsdWebAppDescription = 'A pas2js program running in the browser';
|
|
pjsdNodeJSApplication = 'Node.js Application';
|
|
pjsdNodeJSAppDescription = 'A pas2js program running in node.js';
|
|
|
|
// menu item
|
|
SPasJSWebserversCaption = 'Pas2JS WebServers';
|
|
|
|
// Static texts webservers form
|
|
SWebserversStatus = 'Status';
|
|
SWebserversPort = 'Port';
|
|
SWebserversBaseDir = 'Root directory';
|
|
SWebserversProject = 'Project';
|
|
SWebserversExtra = 'Additional info';
|
|
SWebserversCount = 'Number of webserver processes:';
|
|
SWebserversCaption = 'Web server processes';
|
|
|
|
// Dynamic texts webservers form
|
|
SStatusRunning = 'Running';
|
|
SStatusStopped = 'Stopped';
|
|
SStatusError = 'Error starting';
|
|
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|