diff --git a/.gitattributes b/.gitattributes index e52b1d80fe..c3a662503a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/components/fpweb/reslazsqldbrest.pp b/components/fpweb/reslazsqldbrest.pp new file mode 100644 index 0000000000..0c6507a372 --- /dev/null +++ b/components/fpweb/reslazsqldbrest.pp @@ -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. +