mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Untranslatable string
This commit is contained in:
parent
a47057c850
commit
ec0bf953dc
2 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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?';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue