FIX: Untranslatable string

This commit is contained in:
Alexander Koblov 2023-07-17 17:51:52 +03:00
commit ec0bf953dc
2 changed files with 2 additions and 1 deletions

View file

@ -5322,7 +5322,7 @@ begin
CommandFuncResult:=Commands.Commands.ExecuteCommand(CommandItem.Command, CommandItem.Params);
if gToolbarReportErrorWithCommands AND (CommandFuncResult=cfrNotFound) then
begin
MsgError('Command not found! ('+CommandItem.Command+')');
MsgError(Format(rsMsgCommandNotFound, [CommandItem.Command]));
end;
end;
Draging := False;

View file

@ -239,6 +239,7 @@ resourcestring
rsMsgForTextFormatToImport = 'Select the text format to import';
rsMsgUserDidNotSetExtension = '<NO EXT>';
rsMsgUserDidNotSetName = '<NO NAME>';
rsMsgCommandNotFound = 'Command not found! (%s)';
rsMsgProblemExecutingCommand = 'Problem executing command (%s)';
rsMsgCopyBackward = 'The file %s has changed. Do you want to copy it backward?';
rsMsgCouldNotCopyBackward = 'Could not copy backward - do you want to keep the changed file?';