lazarus/components/fpweb/reslazsqldbrest.pp
michael 25b20abb61 * Fix SQLDBReschSchema component editor
git-svn-id: trunk@60616 -
2019-03-07 13:44:11 +00:00

28 lines
804 B
ObjectPascal

unit reslazsqldbrest;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
Resourcestring
SSQLDBRESTModule = 'SQLDB REST Bridge Module';
SSQLDBRESTModuleDesc = 'SQLDB REST Bridge: A Web datamodule for producing strict HTML.';
SExposeAConnection = 'Expose a connection';
SSaveSettingsToIni = 'Save settings to INI file';
SLoadSettingsFromIni = 'Load settings from INI file';
SJSONFilesFilter = 'JSON Files|*.json|All files|%s';
SSaveSchemaToJSONFile = 'Save schema to JSON file';
SLoadSchemaFromJSONFile = 'Load schema from JSON file';
SLoadSchemaFromConnection = 'Load schema from connection';
SErrNoConnectionsFound = 'No connections found on form/frame or datamodule';
SAddedNTables = 'Added %d tables as resources';
SClearSchema = 'Clear schema';
implementation
end.