mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 01:21:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			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.
 | |
| 
 | 
