* All resource strings moved to separate unit

git-svn-id: trunk@60506 -
This commit is contained in:
michael 2019-02-25 20:30:52 +00:00
parent 1f0e10a60f
commit f2708bf395
2 changed files with 25 additions and 0 deletions

1
.gitattributes vendored
View File

@ -1837,6 +1837,7 @@ components/fpweb/lazsqldbrest_images.inc svneol=native#text/plain
components/fpweb/lazweb.pp svneol=native#text/plain
components/fpweb/lazwebextra.lpk svneol=native#text/plain
components/fpweb/reglazsqldbrest.pp svneol=native#text/plain
components/fpweb/reslazsqldbrest.pp svneol=native#text/plain
components/fpweb/restimages/filelist.txt svneol=native#text/plain
components/fpweb/restimages/genimages.bat svneol=native#text/plain
components/fpweb/restimages/genimages.sh svneol=native#text/plain

View File

@ -0,0 +1,24 @@
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';
implementation
end.