mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
UPD: Localize duplicated name auto-rename style
This commit is contained in:
parent
9ffa26ecac
commit
efcd42d597
3 changed files with 5 additions and 8 deletions
|
|
@ -3,8 +3,8 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
|
|||
Width = 734
|
||||
ClientHeight = 602
|
||||
ClientWidth = 734
|
||||
DesignLeft = 156
|
||||
DesignTop = 261
|
||||
DesignLeft = 229
|
||||
DesignTop = 44
|
||||
object gbUserInterface: TGroupBox[0]
|
||||
AnchorSideLeft.Control = Owner
|
||||
AnchorSideTop.Control = Owner
|
||||
|
|
@ -293,11 +293,6 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
|
|||
ChildSizing.ControlsPerLine = 1
|
||||
ClientHeight = 57
|
||||
ClientWidth = 311
|
||||
Items.Strings = (
|
||||
'DC legacy - Copy (x) filename.ext'
|
||||
'Windows - filename (x).ext'
|
||||
'Other - filename(x).ext'
|
||||
)
|
||||
OnSelectionChanged = GenericSomethingChanged
|
||||
TabOrder = 4
|
||||
end
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@ end;
|
|||
procedure TfrmOptionsFileOperations.Init;
|
||||
begin
|
||||
ParseLineToList(rsOptFileOperationsProgressKind, cbProgressKind.Items);
|
||||
ParseLineToList(rsOptTypeOfDuplicatedRename, rgTypeOfDuplicatedRename.Items);
|
||||
end;
|
||||
|
||||
procedure TfrmOptionsFileOperations.cbDeleteToTrashChange(Sender: TObject);
|
||||
|
|
@ -138,7 +139,7 @@ begin
|
|||
cbMoveConfirmation.Checked := focMove in gFileOperationsConfirmations;
|
||||
cbDeleteConfirmation.Checked := focDelete in gFileOperationsConfirmations;
|
||||
cbDeleteToTrashConfirmation.Checked := focDeleteToTrash in gFileOperationsConfirmations;
|
||||
rgTypeOfDuplicatedRename.ItemIndex := Integer(gTypeOfDuplicatedRename);
|
||||
rgTypeOfDuplicatedRename.ItemIndex := Integer(gTypeOfDuplicatedRename);
|
||||
|
||||
FLoading := False;
|
||||
FModificationTookPlace := False;
|
||||
|
|
|
|||
|
|
@ -580,6 +580,7 @@ resourcestring
|
|||
rsOptNewFilesPosition = 'at the top of the file list;after directories (if directories are sorted before files);at sorted position;at the bottom of the file list';
|
||||
rsOptUpdatedFilesPosition = 'don''t change position;use the same setting as for new files;to sorted position';
|
||||
rsOptFileOperationsProgressKind = 'separate window;minimized separate window;operations panel';
|
||||
rsOptTypeOfDuplicatedRename = 'DC legacy - Copy (x) filename.ext;Windows - filename (x).ext;Other - filename(x).ext';
|
||||
rsOptFileSizeFormat = 'float;B;K;M;G';
|
||||
// Keyboard
|
||||
rsOptLetters = 'None;Command Line;Quick Search;Quick Filter';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue