mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 03:01:07 +08:00
Make more inline strings translatable.
This commit is contained in:
@ -763,7 +763,7 @@ begin
|
||||
NewCol.Comment := '';
|
||||
NewCol.Collation := '';
|
||||
end;
|
||||
NewCol.Name := 'Column '+IntToStr(idx+1);
|
||||
NewCol.Name := _('Column')+' '+IntToStr(idx+1);
|
||||
FColumns.Insert(idx, NewCol);
|
||||
NewNode := listColumns.InsertNode(fn, amInsertAfter, @NewCol);
|
||||
NewCol.Status := esAddedUntouched;
|
||||
@ -1364,7 +1364,7 @@ var
|
||||
begin
|
||||
// Add new index
|
||||
TblKey := TTableKey.Create(DBObject.Connection);
|
||||
TblKey.Name := 'Index '+IntToStr(FKeys.Count+1);
|
||||
TblKey.Name := _('Index')+' '+IntToStr(FKeys.Count+1);
|
||||
TblKey.OldName := TblKey.Name;
|
||||
TblKey.IndexType := KEY;
|
||||
TblKey.OldIndexType := TblKey.IndexType;
|
||||
|
Reference in New Issue
Block a user