Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / sqlite / sqlitecompstrings.pas
Size: Mime:
unit sqlitecompstrings;

{$mode objfpc}{$H+}

interface

resourcestring
  sFilePath = 'File Path: %s';
  sTableName = 'Table Name: %s';
  sNoFieldsAddedTableWillNotBeCreated = 'No fields added. Table will not be created.';
  sItSNotAllowedFieldsWithTheSameName = 'Fields with identical names are not allowed.';
  sTableCreatedSuccessfully = 'Table created successfully.';
  sItWasNotPossibleToCreateTheTable = 'It was not possible to create the table.';
  sTableEditorFieldTypeNotRecognized = 'Field type not recognized.';
  sTableNameNotSetItSNotPossibleToCreateEditATable = 'Table name not set: it''s not possible to create/edit a table.';
  sFileNameNotSetItSNotPossibleToCreateEditATable = 'File name not set: it''s not possible to create/edit a table.';
  sCreateEditTable = 'Create/Edit Table';
  sATableNamedAlreadyExistsAreYouSureYouWantToReplace = 'A Table named "%s" already exists. Are you sure you want to replace this table?%sAll data stored will be lost.';
  sFieldName = 'Field Name';
  sFieldType = 'Field Type';
  sCreateTable = 'Create Table';
  sClose = 'Close';
  sAdd = 'Add';
  sDelete = 'Delete';

implementation

end.