mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Make more inline strings translatable.
This commit is contained in:
@ -494,7 +494,7 @@ begin
|
||||
try
|
||||
Result := Data.TableName;
|
||||
except
|
||||
Result := 'UnknownTable';
|
||||
Result := _('UnknownTable');
|
||||
end;
|
||||
end;
|
||||
|
||||
@ -1959,7 +1959,7 @@ begin
|
||||
// Ask for saving modifications
|
||||
Result := mrOk;
|
||||
if Modified then begin
|
||||
ObjType := LowerCase(DBObject.ObjType);
|
||||
ObjType := _(LowerCase(DBObject.ObjType));
|
||||
if DBObject.Name <> '' then
|
||||
Msg := f_('Save modified %s "%s"?', [ObjType, DBObject.Name])
|
||||
else
|
||||
|
Reference in New Issue
Block a user