lazarus/components/sqlite/sqlitecompstrings.pas
maxim 1c567a9e5e Merged revision(s) 47585 #f43220d638 from trunk:
Components, sqlite: i18n and layout improvement, patch by Péter Gábor, bug #27390 with string corrections. Also added Russian translation.
........

git-svn-id: branches/fixes_1_4@47692 -
2015-02-10 22:46:31 +00:00

30 lines
1.1 KiB
ObjectPascal

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.