Merge remote-tracking branch 'upstream/master' into split-terminal-sync

# Conflicts:
#	src/fmain.pas
This commit is contained in:
Peter P. Lupo 2026-06-16 10:34:17 -04:00
commit 863aeba1ba
172 changed files with 4599 additions and 1490 deletions

View file

@ -92,7 +92,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: sudo apt install fpc patchelf libgtk-3-dev libdbus-1-dev
run: |
sudo apt update
sudo apt install fpc patchelf libgtk-3-dev libdbus-1-dev
- name: Get Lazarus source
uses: actions/checkout@v6

View file

@ -26,7 +26,7 @@ unit KASCDEdit;
interface
uses
Classes, SysUtils, LResources, Controls, Graphics, Dialogs, Types,
Classes, SysUtils, LazVersion, LResources, Controls, Graphics, Dialogs, Types,
Menus, CustomDrawnControls, CustomDrawnDrawers, CustomDrawn_Common;
type
@ -412,6 +412,12 @@ begin
begin
inherited MouseDown(Button, Shift, X, Y);
{$IF Laz_FullVersion >= 4990000}
// see also LCL 4b41b7a:
// customdrawn: remove redundant SetFocus from TCDControl.MouseDown
SetFocus();
{$ENDIF}
FDragDropStarted := True;
// Caret positioning

View file

@ -22,6 +22,7 @@
unit KASPathEdit;
{$mode delphi}
{$interfaces corba}
{$IF DEFINED(LCLCOCOA)}
{$modeswitch objectivec1}
{$ENDIF}
@ -38,15 +39,34 @@ uses
type
{ TKASPathEditGetFilesFunc }
TKASPathEditGetFilesFunc = Procedure (
const path: String;
const types: TObjectTypes;
const sort: TFileSortType;
files: TStringList );
{ IKASPathEditMate }
IKASPathEditMate = interface
function getFilesAtPath(
const path: String;
const types: TObjectTypes;
const sort: TFileSortType ): TStringList;
end;
{ TKASPathEdit }
TKASPathEdit = class(TEdit)
private
FMate: IKASPathEditMate;
FKeyDown: Word;
FBasePath: String;
FListBox: TListBox;
FPanel: THintWindow;
FAutoComplete: Boolean;
FGetFilesFunc: TKASPathEditGetFilesFunc;
FStringList: TStringList;
FObjectTypes: TObjectTypes;
FFileSortType: TFileSortType;
@ -80,6 +100,8 @@ type
onKeyRETURN: TNotifyEvent;
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property GetFilesFunc: TKASPathEditGetFilesFunc read FGetFilesFunc write FGetFilesFunc;
property Mate: IKASPathEditMate read FMate write FMate;
published
property ObjectTypes: TObjectTypes read FObjectTypes write SetObjectTypes;
property FileSortType: TFileSortType read FFileSortType write FFileSortType;
@ -129,77 +151,6 @@ begin
RegisterComponents('KASComponents', [TKASPathEdit]);
end;
function FilesSortAlphabet(List: TStringList; Index1, Index2: Integer): Integer;
begin
Result:= CompareFilenames(List[Index1], List[Index2]);
end;
function FilesSortFoldersFirst(List: TStringList; Index1, Index2: Integer): Integer;
var
Attr1, Attr2: IntPtr;
begin
Attr1:= IntPtr(List.Objects[Index1]);
Attr2:= IntPtr(List.Objects[Index2]);
if (Attr1 and faDirectory <> 0) and (Attr2 and faDirectory <> 0) then
Result:= CompareFilenames(List[Index1], List[Index2])
else begin
if (Attr1 and faDirectory <> 0) then
Result:= -1
else begin
Result:= 1;
end;
end;
end;
procedure GetFilesInDir(const ABaseDir: String; AMask: String; AObjectTypes: TObjectTypes;
AResult: TStringList; AFileSortType: TFileSortType);
var
ExcludeAttr: Integer;
SearchRec: TSearchRec;
{$IF DEFINED(MSWINDOWS)}
ErrMode : LongWord;
{$ENDIF}
begin
{$IF DEFINED(MSWINDOWS)}
ErrMode:= SetErrorMode(SEM_FAILCRITICALERRORS or SEM_NOALIGNMENTFAULTEXCEPT or SEM_NOGPFAULTERRORBOX or SEM_NOOPENFILEERRORBOX);
try
{$ENDIF}
if FindFirst(ABaseDir + AMask, faAnyFile, SearchRec) = 0 then
begin
ExcludeAttr:= 0;
if not (otHidden in AObjectTypes) then
ExcludeAttr:= ExcludeAttr or faHidden;
if not (otFolders in AObjectTypes) then
ExcludeAttr:= ExcludeAttr or faDirectory;
repeat
if (SearchRec.Attr and ExcludeAttr <> 0) then
Continue;
if (SearchRec.Name = '.') or (SearchRec.Name = '..')then
Continue;
if (SearchRec.Attr and faDirectory = 0) and not (otNonFolders in AObjectTypes) then
Continue;
AResult.AddObject(SearchRec.Name, TObject(IntPtr(SearchRec.Attr)));
until FindNext(SearchRec) <> 0;
if AResult.Count > 0 then
begin
case AFileSortType of
fstAlphabet: AResult.CustomSort(@FilesSortAlphabet);
fstFoldersFirst: AResult.CustomSort(@FilesSortFoldersFirst);
end;
end;
end;
SysUtils.FindClose(SearchRec);
{$IF DEFINED(MSWINDOWS)}
finally
SetErrorMode(ErrMode);
end;
{$ENDIF}
end;
{ TKASPathEdit }
function TKASPathEdit.isShowingListBox(): Boolean;
@ -226,49 +177,49 @@ begin
BasePath:= ExtractFilePath(Path);
if CompareFilenames(FBasePath, BasePath) <> 0 then
begin
FStringList.Clear;
FreeAndNil(FStringList);
FBasePath:= BasePath;
GetFilesInDir(BasePath, AllFilesMask, FObjectTypes, FStringList, FFileSortType);
if Assigned(FMate) then
FStringList:= FMate.getFilesAtPath(BasePath, FObjectTypes, FFileSortType);
end;
if (FStringList.Count > 0) then
begin
FListBox.Items.BeginUpdate;
try
// Check mask and make absolute file name
AMask:= TMask.Create(ExtractFileName(Path) + '*',
if (FStringList=nil) or (FStringList.Count<=0) then
Exit;
FListBox.Items.BeginUpdate;
try
// Check mask and make absolute file name
AMask:= TMask.Create(ExtractFileName(Path) + '*',
{$IF LCL_FULLVERSION < 4990000}
AFlags[FileNameCaseSensitive]
AFlags[FileNameCaseSensitive]
{$ELSE}
FileNameCaseSensitive
FileNameCaseSensitive
{$ENDIF}
);
for I:= 0 to FStringList.Count - 1 do
begin
if AMask.Matches(FStringList[I]) then
FListBox.Items.Add(BasePath + FStringList[I]);
end;
AMask.Free;
finally
FListBox.Items.EndUpdate;
end;
if FListBox.Items.Count = 0 then HideListBox;
if FListBox.Items.Count > 0 then
);
for I:= 0 to FStringList.Count - 1 do
begin
if AMask.Matches(FStringList[I]) then
FListBox.Items.Add(BasePath + FStringList[I]);
end;
AMask.Free;
finally
FListBox.Items.EndUpdate;
end;
if FListBox.Items.Count = 0 then HideListBox;
if FListBox.Items.Count > 0 then
begin
ShowListBox;
// Calculate ListBox height
with FListBox.ItemRect(0) do
I:= Bottom - Top; // TListBox.ItemHeight sometimes don't work under GTK2
with FListBox do
begin
ShowListBox;
// Calculate ListBox height
with FListBox.ItemRect(0) do
I:= Bottom - Top; // TListBox.ItemHeight sometimes don't work under GTK2
with FListBox do
begin
{$IF NOT DEFINED(LCLCOCOA)}
if Items.Count = 1 then
FPanel.ClientHeight:= Self.Height
else
FPanel.ClientHeight:= I * IfThen(Items.Count > 10, 11, Items.Count + 1);
if Items.Count = 1 then
FPanel.ClientHeight:= Self.Height
else
FPanel.ClientHeight:= I * IfThen(Items.Count > 10, 11, Items.Count + 1);
{$ELSE}
FPanel.ClientHeight:= I * IfThen(Items.Count > 10, 11, Items.Count + 1) + trunc(i/2);
FPanel.ClientHeight:= I * IfThen(Items.Count > 10, 11, Items.Count + 1) + trunc(i/2);
{$ENDIF}
end;
end;
end;
end;
@ -503,8 +454,6 @@ constructor TKASPathEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FStringList:= TStringList.Create;
FListBox:= TListBox.Create(Self);
FListBox.TabStop:= False;
FListBox.Align:= alClient;

View file

@ -82,6 +82,8 @@ const
S_IRWXU = S_IRUSR or S_IWUSR or S_IXUSR;
S_IRWXG = S_IRGRP or S_IWGRP or S_IXGRP;
S_IRWXO = S_IROTH or S_IWOTH or S_IXOTH;
S_IRUGO = S_IRUSR or S_IRGRP or S_IROTH;
S_IWUGO = S_IWUSR or S_IWGRP or S_IWOTH;
S_IXUGO = S_IXUSR or S_IXGRP or S_IXOTH;
{ POSIX setuid(), setgid(), and sticky bit }

View file

@ -619,6 +619,14 @@ begin
if Assigned(Errors) then Errors^[caoCopyOwnership]:= GetLastOSError;
end;
end;
if caoCopyTime in Options then
begin
if DC_SymLinkSetTime(sDst, StatInfo.mtime, StatInfo.atime) = false then
begin
Include(Result, caoCopyTime);
if Assigned(Errors) then Errors^[caoCopyTime]:= GetLastOSError;
end;
end;
{$IF DEFINED(HAIKU)}
if caoCopyXattributes in Options then
begin

View file

@ -184,6 +184,11 @@ function DC_FileSetTime(const FileName: String;
const birthtime: TFileTimeEx;
const atime : TFileTimeEx ): Boolean;
// nanoseconds supported, does not follow symbolic links
function DC_SymLinkSetTime(const FileName: String;
const mtime : TFileTimeEx;
const atime : TFileTimeEx ): Boolean;
{en
Set the close-on-exec flag to all
@ -371,6 +376,7 @@ end;
{$ENDIF}
function fputimes( path:pchar; times:Array of UnixType.timeval ): cint; cdecl; external clib name 'utimes';
function flutimes( path:pchar; times:Array of UnixType.timeval ): cint; cdecl; external clib name 'lutimes';
function DC_FileSetTime(const FileName: String;
const mtime : TFileTimeEx;
@ -396,6 +402,23 @@ begin
{$ENDIF}
end;
// Like DC_FileSetTime but uses lutimes() instead of utimes(), so the
// timestamp is set on the symlink itself rather than its target.
function DC_SymLinkSetTime(const FileName: String;
const mtime : TFileTimeEx;
const atime : TFileTimeEx ): Boolean;
var
timevals: Array[0..1] of UnixType.timeval;
begin
// last access time
timevals[0].tv_sec:= atime.sec;
timevals[0].tv_usec:= round( Extended(atime.nanosec) / 1000.0 );
// last modification time
timevals[1].tv_sec:= mtime.sec;
timevals[1].tv_usec:= round( Extended(mtime.nanosec) / 1000.0 );
Result:= flutimes(pchar(UTF8ToSys(FileName)), timevals) = 0;
end;
{$IF DEFINED(BSD)}
type rlim_t = Int64;
{$ENDIF}

View file

@ -850,7 +850,9 @@ end;
procedure TCustomComTerminal.ClearScreen;
begin
FBuffer.Init(0, 0);
FTopLeft := Classes.Point(1, 1);
MoveCaret(1, 1);
UpdateScrollRange;
Invalidate;
end;
@ -1973,7 +1975,9 @@ begin
ecEraseScreen:
begin
FBuffer.EraseScreenRight(1, 1);
MoveCaret(1, 1)
FTopLeft := Classes.Point(1, 1);
MoveCaret(1, 1);
UpdateScrollRange;
end;
ecEraseChar: FBuffer.EraseChar(FCaretPos.X, FCaretPos.Y, GetParam(1, AParams));
ecDeleteChar: FBuffer.DeleteChar(FCaretPos.X, FCaretPos.Y, GetParam(1, AParams));

View file

@ -1,6 +1,6 @@
<UniHighlighter version="1.8">
<Info>
<General Name="JSON" Extensions="json" Other="0"/>
<General Name="JSON" Extensions="json,jsonc" Other="0"/>
<Author Name="" Email="" Web="" Copyright="" Company="" Remark=""/>
<Version Version="1" Revision="1" Date="45338,8541038426"/>
<History>
@ -40,6 +40,14 @@
<Word Value=":"/>
</Keywords>
<Set Name="Numbers" Attributes="$00008000,$80000005;False:True." Style="" Symbols="0123456789"/>
<Range Name="Remark //" Attributes="$00A00000,$80000005;False:True." Style="" CaseSensitive="True"
Delimiters="!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^`{|}~">
<Rule OpenSymbol="//" CloseOnEol="True"/>
</Range>
<Range Name="Remark /*...*/" Attributes="$00A00000,$80000005;False:True." Style="" CaseSensitive="True"
Delimiters="!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^`{|}~">
<Rule OpenSymbol="/*" CloseSymbol="*/"/>
</Range>
<Range Name="Strings &quot;..&quot;" Attributes="$00000080,$80000005;False:True." Style=""
Delimiters="!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^`{|}~">
<Rule OpenSymbol="&quot;" OpenSymbolPartOfTerm="Right" CloseSymbol="&quot;" CloseSymbolPartOfTerm="Right" CloseOnEol="True"/>

View file

@ -234,6 +234,14 @@
}
],
Ranges : [
{
Name : "Remark //",
Attributes : "$00A00000,$80000005;False:True."
},
{
Name : "Remark /*...*/",
Attributes : "$00A00000,$80000005;False:True."
},
{
Name : "Strings \"..\"",
Attributes : "$00000080,$80000005;False:True.",
@ -826,6 +834,14 @@
}
],
Ranges : [
{
Name : "Remark //",
Attributes : "$00C09B61,$80000005;False:True."
},
{
Name : "Remark /*...*/",
Attributes : "$00C09B61,$80000005;False:True."
},
{
Name : "Strings \"..\"",
Attributes : "$00898BB9,$80000005;False:True.",

View file

@ -1093,6 +1093,10 @@ msgstr "Захаваць &як..."
msgid "Save As"
msgstr "Захаваць як"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1145,6 +1149,12 @@ msgstr "Падсвятленне сінтаксісу"
msgid "End Of Line"
msgstr "Канец радка"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Праглядзець"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2054,6 +2064,10 @@ msgstr "Скапіяваць шлях у загадны радок"
msgid "Add Plugin"
msgstr "Дадаць убудову"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Тэставанне"
@ -2311,6 +2325,10 @@ msgstr "Рэдагаваць новы файл"
msgid "Edit path field above file list"
msgstr "Рэдагаваць поле са шляхам па-над спісам файлаў"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Памяняць &панэлі"
@ -2599,6 +2617,10 @@ msgstr "Адкрыць &каталог у новай укладцы"
msgid "Open Drive by Index"
msgstr "Адкрыць дыск па індэксе"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Адкрыць спіс &VFS"
@ -2651,6 +2673,10 @@ msgstr "&Абнавіць"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Перазагрузіць апошнія загружаныя ўлюбёныя ўкладкі"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2777,6 +2803,10 @@ msgstr "Заблакаваць усе ўкладкі з магчымасцю з
msgid "Change &Attributes..."
msgstr "Змяніць &атрыбуты..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Заблакаваць і адкрываць каталогі ў новых укладках"
@ -11110,6 +11140,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14082,6 +14120,10 @@ msgstr "Аўтаматычна;1457664B - 3.5\" High Density 1.44M;1213952B - 5.
msgid "Select directory:"
msgstr "Абраць каталог:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Толькі прагляд"

View file

@ -1116,6 +1116,10 @@ msgstr "Съхраняване &като..."
msgid "Save As"
msgstr "Съхраняване &като"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1168,6 +1172,12 @@ msgstr "Синтактично подчертаване"
msgid "End Of Line"
msgstr "Край на реда"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Преглед"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
@ -2129,6 +2139,10 @@ msgstr "Преписване на пътя в реда управление"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2392,6 +2406,10 @@ msgstr "Обработка на нов файл"
msgid "Edit path field above file list"
msgstr "Обработка на полето за пътя над файловия списък"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Размяна на &крилата"
@ -2682,6 +2700,10 @@ msgstr "Отваряне на &папката в нов подпрозорец"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2736,6 +2758,10 @@ msgstr "О&пресняване"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Презареждане на последния зареден списък с предпочитания"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2863,6 +2889,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Промяна на &принадлежностите..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Заключен, с отваряне на папките в нови подпрозор&ци"
@ -11581,6 +11611,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14550,6 +14588,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Изберете папка:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1193,6 +1193,10 @@ msgstr "Anomena i desa..."
msgid "Save As"
msgstr "Anomena i desa"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1245,6 +1249,12 @@ msgstr "LLenguatge de codificació"
msgid "End Of Line"
msgstr "Fi de línia"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Visualització"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
#| msgid "Cancel"
@ -2264,6 +2274,10 @@ msgstr "Copia ruta a linia d'ordres"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2543,6 +2557,10 @@ msgstr "Edita nou Fitxer"
msgid "Edit path field above file list"
msgstr "Edita camp de ruta sobre la llista de fitxers"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Intercanvia panells"
@ -2857,6 +2875,10 @@ msgstr "Obre carpeta a nova pestanya"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
#, fuzzy
#| msgid "Open VFS List"
@ -2917,6 +2939,10 @@ msgstr "&Actualitza"
msgid "Reload the last Favorite Tabs loaded"
msgstr ""
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
#, fuzzy
#| msgid "Move"
@ -3054,6 +3080,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Canvia atributs..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloqueja carpetes obertes a pestanyes noves"
@ -12057,6 +12087,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -15037,6 +15075,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Escull carpeta:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1102,6 +1102,10 @@ msgstr "Uložit & jako..."
msgid "Save As"
msgstr "Uložit jako"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1154,6 +1158,12 @@ msgstr "Zvýraznění syntaxe"
msgid "End Of Line"
msgstr "Ukončení řádku"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Zobrazit"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2064,6 +2074,10 @@ msgstr "Kopírovat cestu do příkazového řádku"
msgid "Add Plugin"
msgstr "Přidat doplněk"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Benchmark"
@ -2321,6 +2335,10 @@ msgstr "Editovat nový soubor"
msgid "Edit path field above file list"
msgstr "Upravit cestu pole nad souborem seznamu"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zaměnit &panely"
@ -2609,6 +2627,10 @@ msgstr "Otevřít složku na nové záložce"
msgid "Open Drive by Index"
msgstr "Otevřít jednotku podle Indexu"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Otevřít &VFS seznam"
@ -2661,6 +2683,10 @@ msgstr "&Obnovit"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Načíst uložený stav záložek"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2787,6 +2813,10 @@ msgstr "Zamknout všechny záložky, ale dovolit změnu složky"
msgid "Change &Attributes..."
msgstr "Změnit &atributy..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Zamknout a při změně složky vytvořit novou záložku"
@ -11132,6 +11162,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14106,6 +14144,10 @@ msgstr "Automaticky;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High D
msgid "Select directory:"
msgstr "Výběr adresáře:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Pouze náhled"

View file

@ -1140,6 +1140,10 @@ msgstr "Gem &som..."
msgid "Save As"
msgstr "Gem som"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1192,6 +1196,12 @@ msgstr "Fremhæv syntaks"
msgid "End Of Line"
msgstr "Linjeafslutning"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Vis"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2137,6 +2147,10 @@ msgstr "Kopiér sti til kommandolinje"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Benchmark"
@ -2427,6 +2441,10 @@ msgstr "Rediger ny fil"
msgid "Edit path field above file list"
msgstr "Rediger stifeltet over fillisten"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
# Kommandoer
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
@ -2757,6 +2775,10 @@ msgstr "Åbn mappe i ny &fane"
msgid "Open Drive by Index"
msgstr "Åbn drev efter indeks"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
# Kommandoer
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
@ -2817,6 +2839,10 @@ msgstr "&Opdatér vindue"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Genindlæs seneste anvendte Favoritfaneblad"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2966,6 +2992,10 @@ msgstr "Alle faneblade låste. Tillad ændring af mappe"
msgid "Change &Attributes..."
msgstr "&Ændre attributter..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
# Faner - Indstillinger
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
@ -12178,6 +12208,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -15258,6 +15296,10 @@ msgstr "Automatisk;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High De
msgid "Select directory:"
msgstr "Vælg mappe:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
# Opsætning - Indstillinger - Layout - Mappeoversigt_Layout og Farver
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"

View file

@ -1088,6 +1088,10 @@ msgstr "Speichern &unter …"
msgid "Save As"
msgstr "Datei unter anderem Namen speichern"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1140,6 +1144,12 @@ msgstr "S&yntaxhervorhebung"
msgid "End Of Line"
msgstr "Ende der Zeile"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Betrachten"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2048,6 +2058,10 @@ msgstr "&Pfad in die Befehlszeile kopieren"
msgid "Add Plugin"
msgstr "Plugin hinzufügen"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "Benchmark"
@ -2305,6 +2319,10 @@ msgstr "Datei erstellen und bearbeiten"
msgid "Edit path field above file list"
msgstr "Pfadzeile über der Dateiliste bearbeiten"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Dateifenster tauschen"
@ -2593,6 +2611,10 @@ msgstr "Verzeichnis in neue&m Tab öffnen"
msgid "Open Drive by Index"
msgstr "Laufwerk/Medium per Index öffnen"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "&VFS-Liste öffnen"
@ -2645,6 +2667,10 @@ msgstr "A&ktualisieren"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Zuletzt geladenen ☆-Tab erneut laden"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2771,6 +2797,10 @@ msgstr "Alle Tabs gesperrt, Verzeichniswechsel möglich"
msgid "Change &Attributes..."
msgstr "Dateieigensch&aften ändern …"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Gesperrt, Verzeichniswechsel öffnet neuen Tab"
@ -11082,6 +11112,14 @@ msgstr "Netzwerk"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Als Dateimanager benötigt Double Commander volle Festplattenzugriffsrechte. Klicken Sie auf diese Schaltfläche, um die macOS-Systemeinstellungsseite zu öffnen. Bitte klicken Sie auf \"Datenschutz & Sicherheit\" und fügen Sie \"Double Commander.app\" zur Liste „Festplattenvollzugriff“ hinzu, um die Autorisierung abzuschließen."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Zugriffsrechte"
@ -14058,6 +14096,10 @@ msgstr "Automatisch;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High D
msgid "Select directory:"
msgstr "Wähle Verzeichnis:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Nur Vorschau"

View file

@ -1098,6 +1098,10 @@ msgstr "Αποθήκευση ως..."
msgid "Save As"
msgstr "Αποθήκευση ως"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1150,6 +1154,12 @@ msgstr "Επισήμανση Σύνταξης"
msgid "End Of Line"
msgstr "Τέλος Γραμμής"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "Προβολή"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2081,6 +2091,10 @@ msgstr "Αντιγραφή διαδρομής στη γραμμή εντολών
msgid "Add Plugin"
msgstr "Προσθήκη Προσθέτου"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "Benchmark"
@ -2344,6 +2358,10 @@ msgstr "Επεξεργασία νέου αρχείου"
msgid "Edit path field above file list"
msgstr "Επεξεργασία πεδίου διαδρομής πάνω από τη λίστα αρχείων"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Εναλλαγή Πάνελ"
@ -2634,6 +2652,10 @@ msgstr "Άνοιγμα Φακέλου σε Νέα Καρτέλα"
msgid "Open Drive by Index"
msgstr "Άνοιγμα Οδηγού με βάση το Ευρετήριο"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2688,6 +2710,10 @@ msgstr "Ανανέωση"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Επαναφόρτωση της τελευταίας φορτωμένης Αγαπημένης Καρτέλας"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2815,6 +2841,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Αλλαγή Ιδιοτήτων..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Κλειδωμένο με Καταλόγους Ανοικτούς σε νέες Καρτέλες"
@ -11303,6 +11333,14 @@ msgstr "δίκτυο"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Σαν διαχειριστής αρχείων, ο Double Commander απαιτεί πλήρεις άδειες δίσκου. Πατώντας αυτό το πλήκτρο θα εμφανιστεί σαν αναδυόμενο η καρτέλα ρυθμίσεων του συστήματος macOS. Παρακαλώ προσθέστε \"Double Commander.app\" στην λίστα \"Full Disk Access\" για ολοκλήρωση της αδειοδότησης."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Προνόμιο"
@ -14300,6 +14338,10 @@ msgstr "Αυτόματα;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" H
msgid "Select directory:"
msgstr "Επιλογή καταλόγου:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Μόνο προεπισκόπηση"

View file

@ -1102,6 +1102,10 @@ msgstr "Guardar &como..."
msgid "Save As"
msgstr "Guardar como"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1154,6 +1158,12 @@ msgstr "Resaltado de sintaxis"
msgid "End Of Line"
msgstr "Fin de línea"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Ver"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2074,6 +2084,10 @@ msgstr "Copiar ruta a la línea de comandos"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2331,6 +2345,10 @@ msgstr "Editar archivo nuevo"
msgid "Edit path field above file list"
msgstr "Editar campo de ruta encima de la lista de archivos"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Intercambiar paneles"
@ -2619,6 +2637,10 @@ msgstr "A&brir ruta en una pestaña nueva"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Abrir listado &VFS"
@ -2671,6 +2693,10 @@ msgstr "Actualiza&r"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Recargar la última pestaña favorita cargada"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2797,6 +2823,10 @@ msgstr "Todas bloqueadas, pero permite cambiar de ruta"
msgid "Change &Attributes..."
msgstr "Cambiar &atributos..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloqueada, abre las rutas en pes&tañas nuevas"
@ -11218,6 +11248,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14212,6 +14250,10 @@ msgstr "Automático;1457664B - 3.5\" Alta densidad 1.44M;1213952B - 5.25\" Alta
msgid "Select directory:"
msgstr "Seleccionar carpeta:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Solo vista previa"

View file

@ -1162,6 +1162,10 @@ msgstr "Enregistrer &sous..."
msgid "Save As"
msgstr "Enregistrer sous"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1216,6 +1220,12 @@ msgstr "Coloration syntaxique"
msgid "End Of Line"
msgstr "Fin de ligne"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Vue"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2150,6 +2160,10 @@ msgstr "Copier le chemin vers la ligne de commande"
msgid "Add Plugin"
msgstr "Ajouter un \"Plugin\""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "Étalonnage"
@ -2413,6 +2427,10 @@ msgstr "Éditer le nouveau fichier"
msgid "Edit path field above file list"
msgstr "Éditer le champ du chemin au dessus de la liste des fichiers"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "&Permuter les panneaux"
@ -2703,6 +2721,10 @@ msgstr "Ouvrir le &dossier dans un nouvel onglet"
msgid "Open Drive by Index"
msgstr "Ouvrir un lecteur par index"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2757,6 +2779,10 @@ msgstr "&Rafraîchir"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Recharger le groupe courant d'onglets favoris"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2884,6 +2910,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Changer les &attributs..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Verrouillé avec les dossiers ouverts dans des nouveaux &onglets"
@ -11433,6 +11463,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14494,6 +14532,10 @@ msgstr "Automatique;1457664B - 3.5\" Haute densité 1.44M;1213952B - 5.25\" Haut
msgid "Select directory:"
msgstr "Sélectionner un dossier :"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Juste un aperçu"

View file

@ -1154,6 +1154,10 @@ msgstr "Kopiraj&kao..."
msgid "Save As"
msgstr "Kopiraj kao"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1206,6 +1210,12 @@ msgstr "Isticanje sintakse"
msgid "End Of Line"
msgstr "Završetak linije"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Pregled"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
@ -2178,6 +2188,10 @@ msgstr "Kopiraj putanju u naredbenu liniju"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2445,6 +2459,10 @@ msgstr "Uredi novu datoteku"
msgid "Edit path field above file list"
msgstr "Uredi polje putanje iznad spiska"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zamjeni table"
@ -2780,6 +2798,10 @@ msgstr "Otvori &Mapu u novoj kartici"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2845,6 +2867,10 @@ msgctxt "tfrmmain.actreloadfavoritetabs.caption"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Ponovno učitajte posljednje učitane kartice "
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2982,6 +3008,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Promjeni &svojstva..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgctxt "tfrmmain.actsettaboptiondirsinnewtab.caption"
msgid "Locked with Directories Opened in New &Tabs"
@ -11786,6 +11816,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14788,6 +14826,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Izaberite Mapa:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1087,6 +1087,10 @@ msgstr "Mentés &másként..."
msgid "Save As"
msgstr "Mentés másként"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1139,6 +1143,12 @@ msgstr "Szintaxis kiemelés"
msgid "End Of Line"
msgstr "Sorvége jel"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Nézet"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2047,6 +2057,10 @@ msgstr "Útvonal másolása a parancssorba"
msgid "Add Plugin"
msgstr "Bővítmény hozzáadása"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Teljesítményteszt"
@ -2304,6 +2318,10 @@ msgstr "Új fájl szerkesztése"
msgid "Edit path field above file list"
msgstr "Elérési út mező szerkesztése a fájllista felett"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Panelek &cseréje"
@ -2592,6 +2610,10 @@ msgstr "Mappa megnyitása ú&j lapon"
msgid "Open Drive by Index"
msgstr "Meghajtó megnyitása index alapján"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "&VFS lista megnyitása"
@ -2644,6 +2666,10 @@ msgstr "&Frissítés"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Utoljára betöltött Kedvenc Lapok újratöltése"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2770,6 +2796,10 @@ msgstr "Minden lap zárt, de könyvtárváltás engedélyezett"
msgid "Change &Attributes..."
msgstr "Attribútumok módosítá&sa..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Zárt, új könyvtárak új la&pon nyílnak"
@ -11083,6 +11113,14 @@ msgstr "hálózat"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Fájlkezelőként a Double Commander teljes lemezhozzáférési engedélyt igényel. A gombra kattintva megjelenik a macOS rendszerbeállítások oldal. Adja hozzá a \"Double Commander.app\"-ot a \"Teljes lemezhozzáférés\" listához az engedélyezés befejezéséhez."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Jogosultság"
@ -14056,6 +14094,10 @@ msgstr "Automatikus;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High D
msgid "Select directory:"
msgstr "Válasszon mappát:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Csak előnézet"

View file

@ -1087,6 +1087,10 @@ msgstr "S&alva Come.."
msgid "Save As"
msgstr "Salva come"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1139,6 +1143,12 @@ msgstr "Evidenziazione sintassi"
msgid "End Of Line"
msgstr "Fine linea"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Mostra"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2047,6 +2057,10 @@ msgstr "Copia percorso completo nella riga di comando"
msgid "Add Plugin"
msgstr "Aggiungi Plugin"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Benchmark"
@ -2304,6 +2318,10 @@ msgstr "Modifica nuovo file"
msgid "Edit path field above file list"
msgstr "Modifica campo percorso precedente nella lista file"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Scambia &pannelli"
@ -2594,6 +2612,10 @@ msgstr "Apri car&tella in una nuova scheda"
msgid "Open Drive by Index"
msgstr "Apri unità per indice"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Apri lista &VFS"
@ -2646,6 +2668,10 @@ msgstr "&Aggiorna"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Ricarica le ultime schede preferite caricate"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2772,6 +2798,10 @@ msgstr "Tutte le schede bloccate, con modifiche alle cartelle consentite"
msgid "Change &Attributes..."
msgstr "Cambia &attributi..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloccato con cartelle aperte in &nuove schede"
@ -11094,6 +11124,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14066,6 +14104,10 @@ msgstr "Automatico;1457664B - 3,5\" Alta densità 1,44M;1213952B - 5,25\" Alta d
msgid "Select directory:"
msgstr "Seleziona cartella:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Solo anteprima"

View file

@ -1114,6 +1114,10 @@ msgstr "名前を付けて保存(&A)…"
msgid "Save As"
msgstr "名前を付けて保存"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1166,6 +1170,12 @@ msgstr "構文のハイライト表示"
msgid "End Of Line"
msgstr "行の末尾"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "表示(&V)"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2098,6 +2108,10 @@ msgstr "コマンドラインにパスをコピー"
msgid "Add Plugin"
msgstr "プラグインの追加"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "ベンチマーク(&B)"
@ -2361,6 +2375,10 @@ msgstr "新しいファイルを編集"
msgid "Edit path field above file list"
msgstr "ファイルリストのパスフィールドを編集"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "パネルの交換(&P)"
@ -2651,6 +2669,10 @@ msgstr "新しいタブでフォルダを開く(&F)"
msgid "Open Drive by Index"
msgstr "インデックスでドライブを開く"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2705,6 +2727,10 @@ msgstr "リフレッシュ(&R)"
msgid "Reload the last Favorite Tabs loaded"
msgstr "最後に読み込まれたお気に入りタブを再読み込み"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2832,6 +2858,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "属性の変更(&A)…"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "ロック済み:ディレクトリの変更は新しいタブで(&T)"
@ -11350,6 +11380,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14355,6 +14393,10 @@ msgstr "自動;1457664B - 3.5”高密度1.44M;1213952B - 5.25”高密度1.2M;7
msgid "Select directory:"
msgstr "ディレクトリを選択:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "プレビューだけ"

View file

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: Double Commander 1.1.0 alpha\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-15 11:15+0300\n"
"PO-Revision-Date: 2026-01-17 01:45+0900\n"
"PO-Revision-Date: 2026-06-12 15:00+0900\n"
"Last-Translator: VenusGirl <venusgirl@outlook.com>\n"
"Language-Team: 비너스걸: https://venusgirls.tistory.com/\n"
"Language: ko\n"
@ -11,7 +11,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Native-Language: 한국어\n"
"X-Generator: Poedit 3.8\n"
"X-Generator: Poedit 3.9\n"
#: fsyncdirsdlg.rscomparingpercent
#, object-pascal-format
@ -1079,6 +1079,10 @@ msgstr "다른 이름으로 저장(&A)..."
msgid "Save As"
msgstr "다음으로 저장"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr "자동 줄 바꿈(&W)"
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1131,6 +1135,11 @@ msgstr "구문 강조"
msgid "End Of Line"
msgstr "줄의 끝"
#: tfrmeditor.miview.caption
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "보기(&V)"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -1597,7 +1606,7 @@ msgstr "도움말(&H)"
#: tfrmfinddlg.btndrives.caption
msgid "Drives"
msgstr ""
msgstr "드라이브"
#: tfrmfinddlg.btnsavetemplate.caption
msgctxt "TFRMFINDDLG.BTNSAVETEMPLATE.CAPTION"
@ -2039,6 +2048,10 @@ msgstr "명령줄에 경로 복사"
msgid "Add Plugin"
msgstr "플러그인 추가"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr "보관함에 추가"
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "벤치마크(&B)"
@ -2296,6 +2309,10 @@ msgstr "새 파일 편집"
msgid "Edit path field above file list"
msgstr "파일 목록 위의 경로 필드 편집"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr "보관함 비우기"
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "패널 교환(&P)"
@ -2584,6 +2601,10 @@ msgstr "새 탭에 폴더 열기(&F)"
msgid "Open Drive by Index"
msgstr "인덱스로 드라이브 열기"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr "보관함 열기"
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "가상 파일 시스템 목록 열기(&V)"
@ -2636,6 +2657,10 @@ msgstr "새로 고침(&R)"
msgid "Reload the last Favorite Tabs loaded"
msgstr "마지막으로 불러온 즐겨찾기 탭 다시 불러오기"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr "보관함 항목 제거"
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2762,6 +2787,10 @@ msgstr "디렉터리 변경 허용으로 모든 탭이 잠김"
msgid "Change &Attributes..."
msgstr "속성 변경(&A)..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr "정렬 모드 설정"
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "새 탭에서 디렉터리를 열면 잠김(&T)"
@ -4320,7 +4349,6 @@ msgid "Right:"
msgstr "오른쪽:"
#: tfrmoptionscolors.lblselection.caption
#, fuzzy
msgctxt "tfrmoptionscolors.lblselection.caption"
msgid "Selection:"
msgstr "선택:"
@ -6390,7 +6418,7 @@ msgstr "사용할 기본 특성 마스크 값:"
#: tfrmoptionsfilesviewscomplement.lblextralinespan.caption
msgctxt "tfrmoptionsfilesviewscomplement.lblextralinespan.caption"
msgid "Extra line span:"
msgstr ""
msgstr "추가 줄 간격:"
#: tfrmoptionsfiletypescolors.btnaddcategory.caption
msgctxt "TFRMOPTIONSFILETYPESCOLORS.BTNADDCATEGORY.CAPTION"
@ -6665,6 +6693,8 @@ msgid ""
"Force F1, F2, etc. to be treated as function keys\n"
"ignore the settings in System Settings > Keyboard"
msgstr ""
"F1, F2 등을 기능 키로 취급하도록 강제하는 것은\n"
"시스템 설정 > 키보드의 설정을 무시합니다"
#: tfrmoptionskeyboard.cbfnkey.hint
msgid ""
@ -6676,6 +6706,13 @@ msgid ""
"Each time a new version of DC is installed, you must first\n"
"remove DC from the list and then add it back in."
msgstr ""
"이 기능은 추가 시스템 권한이 필요합니다.\n"
"\n"
"이 기능을 활성화하면 자동으로\n"
"시스템 설정 > 개인정보 보호 및 보안 > 접근성 패널로 이동합니다.\n"
"\n"
"DC의 새 버전을 설치할 때마다, 먼저 목록에서\n"
"DC를 제거한 다음 다시 추가해야 합니다."
#: tfrmoptionskeyboard.cblynxlike.caption
msgid "Le&ft, Right arrows change directory (Lynx-like movement)"
@ -7717,12 +7754,12 @@ msgstr "현재 도구 모음에 추가"
#: tfrmoptionstoolbarbase.miimportbackupaddmenucurrent.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTBACKUPADDMENUCURRENT.CAPTION"
msgid "to add to a new toolbar to current toolbar"
msgstr "새 도구 모음을 현재 도구 모음에 추가"
msgstr "현재 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimportbackupaddmenutop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTBACKUPADDMENUTOP.CAPTION"
msgid "to add to a new toolbar to top toolbar"
msgstr "상단 도구 모음에 새 도구 모음 추가"
msgstr "상단 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimportbackupaddtop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTBACKUPADDTOP.CAPTION"
@ -7746,12 +7783,12 @@ msgstr "현재 도구 모음에 추가"
#: tfrmoptionstoolbarbase.miimportdcbaraddmenucurrent.caption
msgctxt "tfrmoptionstoolbarbase.miimportdcbaraddmenucurrent.caption"
msgid "to add to a new toolbar to current toolbar"
msgstr "새 도구 모음을 현재 도구 모음에 추가"
msgstr "현재 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimportdcbaraddmenutop.caption
msgctxt "tfrmoptionstoolbarbase.miimportdcbaraddmenutop.caption"
msgid "to add to a new toolbar to top toolbar"
msgstr "상단 도구 모음에 새 도구 모음 추가"
msgstr "상단 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimportdcbaraddtop.caption
msgctxt "tfrmoptionstoolbarbase.miimportdcbaraddtop.caption"
@ -7775,12 +7812,12 @@ msgstr "현재 도구 모음에 추가"
#: tfrmoptionstoolbarbase.miimporttcbaraddmenucurrent.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCBARADDMENUCURRENT.CAPTION"
msgid "to add to a new toolbar to current toolbar"
msgstr "새 도구 모음을 현재 도구 모음에 추가"
msgstr "현재 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimporttcbaraddmenutop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCBARADDMENUTOP.CAPTION"
msgid "to add to a new toolbar to top toolbar"
msgstr "상단 도구 모음에 새 도구 모음 추가"
msgstr "상단 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimporttcbaraddtop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCBARADDTOP.CAPTION"
@ -7804,12 +7841,12 @@ msgstr "현재 도구 모음에 추가"
#: tfrmoptionstoolbarbase.miimporttciniaddmenucurrent.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCINIADDMENUCURRENT.CAPTION"
msgid "to add to a new toolbar to current toolbar"
msgstr "새 도구 모음을 현재 도구 모음에 추가"
msgstr "현재 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimporttciniaddmenutop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCINIADDMENUTOP.CAPTION"
msgid "to add to a new toolbar to top toolbar"
msgstr "상단 도구 모음에 새 도구 모음 추가"
msgstr "상단 도구 모음에 새 도구 모음 추가"
#: tfrmoptionstoolbarbase.miimporttciniaddtop.caption
msgctxt "tfrmoptionstoolbarbase.MIIMPORTTCINIADDTOP.CAPTION"
@ -10591,7 +10628,7 @@ msgstr "파일 찾기"
#: ulng.rsfindselectdrives
msgid "Select drives"
msgstr ""
msgstr "드라이브 선택"
#: ulng.rsfindtimeofscan
msgid "Time of scan: "
@ -11076,6 +11113,14 @@ msgstr "네트워크"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "파일 관리자인 Double Command에는 전체 디스크 액세스 권한이 필요합니다. 이 버튼을 클릭하면 macOS 시스템 설정 페이지가 나타납니다. “전체 디스크 액세스” 목록에 Double Commander.app을 추가하여 권한 부여를 완료하세요."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr "제가 보이면 DC가 아직 인증되지 않았다는 뜻입니다. 인증이 완료되면 DC가 저를 숨깁니다."
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr "새 버전을 설치할 때마다 다시 인증해야 합니다. 이 경우 먼저 목록에서 DC를 제거한 다음 다시 추가해야 합니다. 새 버전은 지문이 다르기 때문에 체크박스를 활성화하는 것만으로는 작동하지 않습니다."
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "권한"
@ -14050,6 +14095,10 @@ msgstr "자동;1457664B - 3.5\" 고밀도 1.44M;1213952B - 5.25\" 고밀도 1.2M
msgid "Select directory:"
msgstr "디렉터리 선택:"
#: ulng.rsstashname
msgid "Stash"
msgstr "보관함"
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "미리보기"

View file

@ -1118,6 +1118,10 @@ msgstr "&Lagr som..."
msgid "Save As"
msgstr "Lagr som"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1170,6 +1174,12 @@ msgstr "Framhev syntaks"
msgid "End Of Line"
msgstr "Linjeavslutning"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Vis"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2113,6 +2123,10 @@ msgstr "Kopiér sti til kommandolinje"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Testprogram"
@ -2376,6 +2390,10 @@ msgstr "Redigér ny fil"
msgid "Edit path field above file list"
msgstr "Redigér stifeltet over fillista"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "&Bytt om panelene"
@ -2668,6 +2686,10 @@ msgstr "&Åpn mappe i ny fane"
msgid "Open Drive by Index"
msgstr "Åpn drev ved indeksnr"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2722,6 +2744,10 @@ msgstr "&Oppdatér"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Gjeninnles siste brukte favorittfaner"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2849,6 +2875,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "&Endr attributt..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "&Lås fane med mapper. Åpnet i ny fane"
@ -11596,6 +11626,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14608,6 +14646,10 @@ msgstr "Automatisk;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High De
msgid "Select directory:"
msgstr "Velg mappe:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Forhåndsvis her"

View file

@ -1100,6 +1100,10 @@ msgstr "Opslaan &als..."
msgid "Save As"
msgstr "Opslaan als"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1152,6 +1156,12 @@ msgstr "Opmaakmarkering"
msgid "End Of Line"
msgstr "Einde van regel"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Tonen"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2061,6 +2071,10 @@ msgstr "Kopieer pad naar opdrachtregel"
msgid "Add Plugin"
msgstr "Invoegsel toevoegen"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "Prestatievergelijking"
@ -2318,6 +2332,10 @@ msgstr "Bewerk nieuw bestand"
msgid "Edit path field above file list"
msgstr "Bewerk padveld boven bestandenlijst"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Wissel panelen om"
@ -2606,6 +2624,10 @@ msgstr "Open map in een nieuw tabblad"
msgid "Open Drive by Index"
msgstr "Schijf openen per index"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Open VFS-lijst"
@ -2658,6 +2680,10 @@ msgstr "&Verversen"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Herlaad de laatst geladen favoriete tabbladen"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2784,6 +2810,10 @@ msgstr "Alle tabbladen vergrendeld met mapwijzigingen toegestaan"
msgid "Change &Attributes..."
msgstr "Wijzig attributen..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Vergrendeld met mappen geopend in nieuwe tabbladen"
@ -11129,6 +11159,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14101,6 +14139,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Kies map:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Alleen voorbeeldweergave"

View file

@ -1118,6 +1118,10 @@ msgstr "&Lagr som..."
msgid "Save As"
msgstr "Lagr som"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1170,6 +1174,12 @@ msgstr "Framhev syntaks"
msgid "End Of Line"
msgstr "Linjeavslutning"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Vis"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2113,6 +2123,10 @@ msgstr "Kopiér sti til kommandolinje"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Testprogram"
@ -2376,6 +2390,10 @@ msgstr "Redigér ny fil"
msgid "Edit path field above file list"
msgstr "Redigér stifeltet over fillista"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "&Bytt om panela"
@ -2668,6 +2686,10 @@ msgstr "&Opn mappe i ny fane"
msgid "Open Drive by Index"
msgstr "Opn drev ved indeksnr"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2722,6 +2744,10 @@ msgstr "&Oppdatér"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Gjeninnles siste brukte favorittfaner"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2849,6 +2875,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "&Endr attributt..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "&Lås fane med mapper. Opna i ny fane"
@ -11596,6 +11626,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14606,6 +14644,10 @@ msgstr "Automatisk;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High De
msgid "Select directory:"
msgstr "Vél mappe:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Førehandsvis her"

View file

@ -1085,6 +1085,10 @@ msgstr "Zapisz j&ako..."
msgid "Save As"
msgstr "Zapisz jako"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1137,6 +1141,12 @@ msgstr "Podświetlanie &składni"
msgid "End Of Line"
msgstr "Koniec wiersza"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Widok"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2041,6 +2051,10 @@ msgstr "Kopiuj ścieżkę do wiersza poleceń"
msgid "Add Plugin"
msgstr "Dodaj wtyczkę"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Test wydajności"
@ -2298,6 +2312,10 @@ msgstr "Edytuj nowy plik"
msgid "Edit path field above file list"
msgstr "Edytuj pole ścieżki nad listą plików"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zamień &panele"
@ -2586,6 +2604,10 @@ msgstr "Otwórz &katalog w nowej zakładce"
msgid "Open Drive by Index"
msgstr "Otwórz dysk według indeksu"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Otwórz listę &VFS"
@ -2638,6 +2660,10 @@ msgstr "&Odśwież"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Załaduj ponownie ostatnio wczytane ulubione zakładki"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2764,6 +2790,10 @@ msgstr "Wszystkie zakładki zablokowane z możliwością zmiany katalogu"
msgid "Change &Attributes..."
msgstr "Zmień &atrybuty..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Zablokowana z możliwością &otwierania katalogów w nowych zakładkach"
@ -11058,6 +11088,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14030,6 +14068,10 @@ msgstr "Automatycznie;1457664B - 3.5\" Wysoka gęstość 1.44M;1213952B - 5.25\"
msgid "Select directory:"
msgstr "Wybierz katalog:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Tylko podgląd"

View file

@ -1077,6 +1077,10 @@ msgstr ""
msgid "Save As"
msgstr ""
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1129,6 +1133,11 @@ msgstr ""
msgid "End Of Line"
msgstr ""
#: tfrmeditor.miview.caption
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr ""
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2037,6 +2046,10 @@ msgstr ""
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2294,6 +2307,10 @@ msgstr ""
msgid "Edit path field above file list"
msgstr ""
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr ""
@ -2582,6 +2599,10 @@ msgstr ""
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr ""
@ -2634,6 +2655,10 @@ msgstr ""
msgid "Reload the last Favorite Tabs loaded"
msgstr ""
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2760,6 +2785,10 @@ msgstr ""
msgid "Change &Attributes..."
msgstr ""
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr ""
@ -11056,6 +11085,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -13985,6 +14022,10 @@ msgstr ""
msgid "Select directory:"
msgstr ""
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1102,6 +1102,10 @@ msgstr "Gr&avar como..."
msgid "Save As"
msgstr "Gravar como"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1154,6 +1158,12 @@ msgstr "Realçar sintaxe"
msgid "End Of Line"
msgstr "Fim de linha"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Ver"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2091,6 +2101,10 @@ msgstr "Copiar caminho para a linha de comandos"
msgid "Add Plugin"
msgstr "Adicionar extensão"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Referência"
@ -2354,6 +2368,10 @@ msgstr "Editar novo ficheiro"
msgid "Edit path field above file list"
msgstr "Editar campo de caminho acima da lista de ficheiros"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Trocar &painéis"
@ -2644,6 +2662,10 @@ msgstr "Abrir &pasta em novo separador"
msgid "Open Drive by Index"
msgstr "Abrir unidade por índice"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2698,6 +2720,10 @@ msgstr "&Actualizar"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Recarregar os últimos favoritos carregados"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2825,6 +2851,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Alterar &atributos..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloqueado com pastas aber&tas em novos separadores"
@ -11323,6 +11353,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Como gestor de ficheiros, o Double Commander requer acesso total ao disco. Clicar neste botão abre a página de definições do macOS. Por favor, adicione \"Double Commander.app\" à lista \"Full Disk Access\" para concluir a autorização."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Privilégio"
@ -14317,6 +14355,10 @@ msgstr "Automático;1457664B - 3.5\" High Density 1.44M;1213952B - 5.25\" High D
msgid "Select directory:"
msgstr "Pasta seleccionada:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Só antevisão"

View file

@ -1119,6 +1119,10 @@ msgstr "Sal&var como..."
msgid "Save As"
msgstr "Salvar como"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1171,6 +1175,12 @@ msgstr "Realçar sintaxe"
msgid "End Of Line"
msgstr "Fim de linha"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Ver"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
@ -2143,6 +2153,10 @@ msgstr "Copiar caminho para a linha de comandos."
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2406,6 +2420,10 @@ msgstr "Editar novo arquivo."
msgid "Edit path field above file list"
msgstr "Editar campo de caminho acima da lista de arquivos."
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Trocar &painéis"
@ -2696,6 +2714,10 @@ msgstr "Abrir &pasta em nova guia"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2750,6 +2772,10 @@ msgstr "&Atualizar"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Recarregar a última guia Favoritos carregada."
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2877,6 +2903,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Alterar &atributos"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloqueado com pastas abertas em novos guias."
@ -11538,6 +11568,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14535,6 +14573,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Pasta selecionada:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1116,6 +1116,10 @@ msgstr "Salvare C&a.."
msgid "Save As"
msgstr "Salvează Ca"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1168,6 +1172,12 @@ msgstr "Evidențiere sintaxă"
msgid "End Of Line"
msgstr "Sfârșit de linie"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Vizualizare"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2109,6 +2119,10 @@ msgstr "Copiază calea la linia de comandă"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2372,6 +2386,10 @@ msgstr "Editează un fișier nou"
msgid "Edit path field above file list"
msgstr "Editează calea deasupra fișierului listă"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Comută &Panourile"
@ -2662,6 +2680,10 @@ msgstr "Deschide Dosarul într-o &Filă Nouă"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2716,6 +2738,10 @@ msgstr "&Reîmprospătează"
msgid "Reload the last Favorite Tabs loaded"
msgstr ""
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2843,6 +2869,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Schimbă &Atributele..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Bloca&t cu Dosarele Deschise în File Noi"
@ -11408,6 +11438,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14372,6 +14410,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Selectați directorul:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Double Commander 1.3.0 alpha\n"
"POT-Creation-Date: 2026-03-27 12:00+0300\n"
"PO-Revision-Date: 2026-03-27 13:29+0300\n"
"POT-Creation-Date: 2026-05-30 17:30+0300\n"
"PO-Revision-Date: 2026-05-30 20:30+0300\n"
"Last-Translator: Alexander Koblov <alexx2000@mail.ru>\n"
"Language-Team: \n"
"Language: ru\n"
@ -1091,6 +1091,10 @@ msgstr "Сохранить &как..."
msgid "Save As"
msgstr "Сохранить как..."
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr "&Перенос слов"
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1143,6 +1147,11 @@ msgstr "Подсветка &синтаксиса"
msgid "End Of Line"
msgstr "Конец строки"
#: tfrmeditor.miview.caption
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Вид"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2076,6 +2085,10 @@ msgstr "Копировать путь в командную строку"
msgid "Add Plugin"
msgstr "Добавить плагин"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Тест производительности"
@ -2339,6 +2352,10 @@ msgstr "Создать новый текстовый файл или откры
msgid "Edit path field above file list"
msgstr "Редактировать путь в заголовке панели"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "П&оменять панели местами"
@ -2629,6 +2646,10 @@ msgstr "Открыть пап&ку в новой вкладке"
msgid "Open Drive by Index"
msgstr "Открыть диск по индексу"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2683,6 +2704,10 @@ msgstr "&Обновить"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Перезагрузить последние загруженные избранные вкладки"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2810,6 +2835,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Изменить атри&буты"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Заблокировать и открывать каталоги в &новых вкладках"
@ -6531,7 +6560,7 @@ msgstr "Маска атрибута по умолчанию:"
#: tfrmoptionsfilesviewscomplement.lblextralinespan.caption
msgctxt "tfrmoptionsfilesviewscomplement.lblextralinespan.caption"
msgid "Extra line span:"
msgstr ""
msgstr "Добавить к высоте строк:"
#: tfrmoptionsfiletypescolors.btnaddcategory.caption
msgctxt "TFRMOPTIONSFILETYPESCOLORS.BTNADDCATEGORY.CAPTION"
@ -6834,7 +6863,7 @@ msgid ""
"Each time a new version of DC is installed, you must first\n"
"remove DC from the list and then add it back in."
msgstr ""
"Для этой функции требуется дополнительное системное разрешение.\n"
"Требуется дополнительное системное разрешение.\n"
"\n"
"Включение этой функции автоматически перенаправит вас в\n"
"Системные настройки > Конфиденциальность и безопасность > Универсальный доступ.\n"
@ -11342,6 +11371,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Как файловый менеджер, Double Commander требует разрешения на полный доступ к диску. Нажатие этой кнопки откроет страницу системных настроек macOS. Пожалуйста, добавьте \"Double Commande.app\" в список \"Полный доступ к диску\", чтобы завершить авторизацию."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Привилегия"
@ -14344,6 +14381,10 @@ msgstr "Автоматически;1457664 B - 3.5\" High Density 1.44 M;1213952
msgid "Select directory:"
msgstr "Выберите каталог:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Только просмотр"

View file

@ -1079,6 +1079,10 @@ msgstr "Uložiť &ako.."
msgid "Save As"
msgstr "Uložiť ako"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1131,6 +1135,12 @@ msgstr "Zvýrazňovanie syntaxe"
msgid "End Of Line"
msgstr "Koniec riadku"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Zobrazenie"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2039,6 +2049,10 @@ msgstr "Kopírovať cestu do príkazového riadku"
msgid "Add Plugin"
msgstr "Pridať zásuvný modul"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Benchmark"
@ -2296,6 +2310,10 @@ msgstr "Editovať nový súbor"
msgid "Edit path field above file list"
msgstr "Upraviť cestu nad zoznamom súborov"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zameniť &panely"
@ -2584,6 +2602,10 @@ msgstr "Otvoriť priečinok v novej karte"
msgid "Open Drive by Index"
msgstr "Otvoriť disk podľa indexu"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Otvoriť VFS zoznam"
@ -2636,6 +2658,10 @@ msgstr "&Obnoviť"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Znovunačítať posledné otvorené obľúbené karty"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2762,6 +2788,10 @@ msgstr "Všetky karty zamknuté s povolením zmeny priečinka"
msgid "Change &Attributes..."
msgstr "Zmena &atribútov..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Uzamknuté; priečinky otvárať v nových kartách"
@ -11084,6 +11114,14 @@ msgstr "sieť"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Double Commander ako správca súborov vyžaduje plné oprávnenie na prístup k disku. Kliknutím na toto tlačidlo sa zobrazí stránka systémových nastavení MacOS. Do zoznamu „Plný prístup na disk“ prosím pridajte „Double Commander.app“, aby ste dokončili autorizáciu."
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "Privilégiá"
@ -14057,6 +14095,10 @@ msgstr "Automatické;1457664B - 3.5\" Vysoká hustota 1.44M;1213952B - 5.25\" Vy
msgid "Select directory:"
msgstr "Zvoľte priečinok:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Iba náhľad"

View file

@ -1095,6 +1095,10 @@ msgstr "Shrani &kot ..."
msgid "Save As"
msgstr "Shrani kot"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1147,6 +1151,12 @@ msgstr "Poudarjanje skladnje"
msgid "End Of Line"
msgstr "Zapis konca vrstice"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Pogled"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "TFRMEDITSEARCHREPLACE.BUTTONPANEL.CANCELBUTTON.CAPTION"
msgid "&Cancel"
@ -2055,6 +2065,10 @@ msgstr "Kopira pot v ukazno vrstico"
msgid "Add Plugin"
msgstr "Dodaj vstavek"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Primerjalni preizkus"
@ -2312,6 +2326,10 @@ msgstr "Uredi novo datoteko"
msgid "Edit path field above file list"
msgstr "Uredi polje poti nad seznamom datotek"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zamenjaj &okni"
@ -2600,6 +2618,10 @@ msgstr "O&dpri mapo v novem zavihku"
msgid "Open Drive by Index"
msgstr "Odpri seznam pogona po določilu"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "Odpri seznam &VFS"
@ -2652,6 +2674,10 @@ msgstr "&Osveži"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Ponovno naloži zadnji naložen priljubljen zavihek"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2778,6 +2804,10 @@ msgstr "Nastavi vse zavihke kot zaklenjene z možnostjo spreminjanja map"
msgid "Change &Attributes..."
msgstr "Spremeni &atribute ..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Zaklenjen zavihek z možnostjo o&dpiranja map v novih zavihkih"
@ -11099,6 +11129,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14072,6 +14110,10 @@ msgstr "Samodejno;1457664B 3.5\" Visoke gostote 1.44M;1213952B 5.25\" Vi
msgid "Select directory:"
msgstr "Izbor mape:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Le predogled"

View file

@ -1104,6 +1104,10 @@ msgstr "Сачувај &као..."
msgid "Save As"
msgstr "Сачувај као"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1156,6 +1160,12 @@ msgstr "Истицање синтаксе"
msgid "End Of Line"
msgstr "Завршетак линије"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Преглед"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2088,6 +2098,10 @@ msgstr "Умножи путању у наредбену линију"
msgid "Add Plugin"
msgstr "Додај прикључак"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Опит"
@ -2351,6 +2365,10 @@ msgstr "Уреди нову датотеку"
msgid "Edit path field above file list"
msgstr "Уреди поље путање изнад списка"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Замени површи"
@ -2641,6 +2659,10 @@ msgstr "Отвори &фасциклу у новом листу"
msgid "Open Drive by Index"
msgstr "Отвори уређај по списку"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2695,6 +2717,10 @@ msgstr "&Освежи"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Поново учитај последње учитане омиљене листове"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2822,6 +2848,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Промени &својства..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Закључано са фасциклама отвореним у новом &листу"
@ -11330,6 +11360,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14331,6 +14369,10 @@ msgstr "Самостално;1457664B - 3.5\" висока густина 1.44M;
msgid "Select directory:"
msgstr "Изаберите фасциклу:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Само преглед"

View file

@ -1132,6 +1132,10 @@ msgstr "Sačuvaj &kao..."
msgid "Save As"
msgstr "Sačuvaj kao"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1184,6 +1188,12 @@ msgstr "Isticanje sintakse"
msgid "End Of Line"
msgstr "Završetak linije"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Pregled"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
@ -2129,6 +2139,10 @@ msgstr "Umnoži putanju u naredbenu liniju"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2395,6 +2409,10 @@ msgstr "Uredi novu datoteku"
msgid "Edit path field above file list"
msgstr "Uredi polje putanje iznad spiska"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Zameni površi"
@ -2687,6 +2705,10 @@ msgstr "Otvori &fasciklu u novom listu"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2741,6 +2763,10 @@ msgstr "&Osveži"
msgid "Reload the last Favorite Tabs loaded"
msgstr ""
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2868,6 +2894,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Promeni &svojstva..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Zaključano sa fasciklama otvorenim u novom &listu"
@ -11604,6 +11634,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14609,6 +14647,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Izaberite fasciklu:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1191,6 +1191,10 @@ msgstr "Farklı &Kaydet..."
msgid "Save As"
msgstr "Farklı Kaydet..."
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1243,6 +1247,12 @@ msgstr "Sözdizimi vurgulama"
msgid "End Of Line"
msgstr ""
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Göster"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
#, fuzzy
#| msgid "Cancel"
@ -2240,6 +2250,10 @@ msgstr "Komut satırına yolu kopyala"
msgid "Add Plugin"
msgstr ""
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr ""
@ -2507,6 +2521,10 @@ msgstr "Yeni dosya Düzenle"
msgid "Edit path field above file list"
msgstr "Dosya listesi üzerinde Yol alanını düzenle"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Panoları &Değiştir"
@ -2801,6 +2819,10 @@ msgstr "Klasörü &Yeni Sekmede Aç"
msgid "Open Drive by Index"
msgstr ""
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2855,6 +2877,10 @@ msgstr "&Yenile"
msgid "Reload the last Favorite Tabs loaded"
msgstr ""
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
#, fuzzy
#| msgid "Move F6"
@ -2986,6 +3012,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Öznitelikleri &Değiştir"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Kilitli Dizinleri &Yeni Sekmede Aç"
@ -11749,6 +11779,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14734,6 +14772,10 @@ msgstr ""
msgid "Select directory:"
msgstr "Dizin Seç:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -1114,6 +1114,10 @@ msgstr "Зберегти &як.."
msgid "Save As"
msgstr "Зберегти як"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr ""
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1166,6 +1170,12 @@ msgstr "&Підсвітка синтаксису"
msgid "End Of Line"
msgstr "Кінець рядка"
#: tfrmeditor.miview.caption
#, fuzzy
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "&Перегляд"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2103,6 +2113,10 @@ msgstr "Копіювати шлях в командний рядок"
msgid "Add Plugin"
msgstr "Додати плагін"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr ""
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "&Тест продуктивності"
@ -2366,6 +2380,10 @@ msgstr "Редагувати новий файл"
msgid "Edit path field above file list"
msgstr "Редагувати шлях в заголовку списку"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr ""
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "Поміняти панелі місцями"
@ -2657,6 +2675,10 @@ msgstr "Відкрити теку у новій вклад&ці"
msgid "Open Drive by Index"
msgstr "Відкрити диск за індексом"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr ""
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgctxt "TFRMMAIN.ACTOPENVIRTUALFILESYSTEMLIST.CAPTION"
msgid "Open &VFS List"
@ -2711,6 +2733,10 @@ msgstr "&Оновити"
msgid "Reload the last Favorite Tabs loaded"
msgstr "Перезавантажити останні завантажені обрані вкладки"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr ""
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2838,6 +2864,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "Змінити &атрибути..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr ""
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "Забло&кувати і відкривати каталоги у нових вкладках"
@ -11451,6 +11481,14 @@ msgstr ""
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr ""
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr ""
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr ""
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr ""
@ -14450,6 +14488,10 @@ msgstr "Автоматично;1457664B - 3.5\" Висока щільність
msgid "Select directory:"
msgstr "Виберіть каталог:"
#: ulng.rsstashname
msgid "Stash"
msgstr ""
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "Тільки перегляд"

View file

@ -1078,6 +1078,10 @@ msgstr "另存为(&A)..."
msgid "Save As"
msgstr "另存为"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr "自动换行(&W)"
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1130,6 +1134,11 @@ msgstr "语法高亮"
msgid "End Of Line"
msgstr "行末"
#: tfrmeditor.miview.caption
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "查看(&V)"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2038,6 +2047,10 @@ msgstr "复制路径到命令行"
msgid "Add Plugin"
msgstr "添加插件"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr "添加到暂存区"
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "基准测试(&B)"
@ -2295,6 +2308,10 @@ msgstr "编辑新文件"
msgid "Edit path field above file list"
msgstr "编辑文件列表上方的路径字段"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr "清空暂存区"
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "交换面板(&P)"
@ -2583,6 +2600,10 @@ msgstr "在新标签打开文件夹(&F)"
msgid "Open Drive by Index"
msgstr "按索引打开驱动器"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr "打开暂存区"
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "打开虚拟文件系统 (VFS) 列表(&V)"
@ -2635,6 +2656,10 @@ msgstr "刷新(&R)"
msgid "Reload the last Favorite Tabs loaded"
msgstr "重新加载上次加载的收藏夹标签"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr "从暂存区移除"
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2761,6 +2786,10 @@ msgstr "将所有标签设置为允许更改文件夹的锁定状态"
msgid "Change &Attributes..."
msgstr "更改属性(&A)..."
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr "设置排序模式"
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "锁定,并在新标签中打开文件夹(&T)"
@ -9490,7 +9519,7 @@ msgstr "文本方式显示(&T)"
#: tfrmviewer.actshowaswraptext.caption
msgid "Show as &Wrap text"
msgstr "换行文本方式显示(&W)"
msgstr "自动换行(&W)"
#: tfrmviewer.actshowcaret.caption
msgid "Show text c&ursor"
@ -9542,7 +9571,7 @@ msgstr "撤销"
#: tfrmviewer.actwraptext.caption
msgid "&Wrap text"
msgstr "文本换行(&W)"
msgstr "自动换行(&W)"
#: tfrmviewer.actzoom.caption
msgctxt "tfrmviewer.actzoom.caption"
@ -11087,6 +11116,14 @@ msgstr "网络连接"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Double Command作为文件管理器需要获得完全磁盘访问权限。点击此按钮将弹出macOS系统设置页请添加“Double Commander.app”到“完全磁盘访问权限”列表中完成授权。"
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr "如果你能看到我说明DC仍未获得授权。DC会在成功授权后隐藏我。"
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr "每次安装DC的新版本你都必须重新进行授权。这种情况你需要先将DC从列表中移除再重新将DC加入到列表中。因为新版本有不同的指纹单纯启用复选框是无效的。"
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "权限"
@ -14078,6 +14115,10 @@ msgstr "自动;1457664B - 3.5\" 高密度 1.44M;1213952B - 5.25\" 高密度 1.2M
msgid "Select directory:"
msgstr "选中的文件夹:"
#: ulng.rsstashname
msgid "Stash"
msgstr "暂存区"
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr "仅预览"

View file

@ -1091,6 +1091,10 @@ msgstr "另存新檔 (&A)..."
msgid "Save As"
msgstr "另存新檔"
#: tfrmeditor.actwordwrap.caption
msgid "&Word wrap"
msgstr "自動換行 (&W)"
#: tfrmeditor.actzoomin.caption
msgctxt "tfrmeditor.actzoomin.caption"
msgid "Zoom In"
@ -1143,6 +1147,11 @@ msgstr "語法高亮 (&S)"
msgid "End Of Line"
msgstr "換行符號"
#: tfrmeditor.miview.caption
msgctxt "tfrmeditor.miview.caption"
msgid "&View"
msgstr "檢視 (&V)"
#: tfrmeditsearchreplace.buttonpanel.cancelbutton.caption
msgctxt "tfrmeditsearchreplace.buttonpanel.cancelbutton.caption"
msgid "&Cancel"
@ -2073,6 +2082,10 @@ msgstr "複製路徑到指令行"
msgid "Add Plugin"
msgstr "添加插件"
#: tfrmmain.actaddtostash.caption
msgid "Add to Stash"
msgstr "添加至暫存區"
#: tfrmmain.actbenchmark.caption
msgid "&Benchmark"
msgstr "基準測試(&B)"
@ -2334,6 +2347,10 @@ msgstr "編輯新檔案"
msgid "Edit path field above file list"
msgstr "變更路徑"
#: tfrmmain.actemptystash.caption
msgid "Empty Stash"
msgstr "清空暫存區"
#: tfrmmain.actexchange.caption
msgid "Swap &Panels"
msgstr "交換面板 (&P)"
@ -2624,6 +2641,10 @@ msgstr "在新分頁開啟資料夾 (&F)"
msgid "Open Drive by Index"
msgstr "依索引開啟磁碟"
#: tfrmmain.actopenstash.caption
msgid "Open Stash"
msgstr "開啟暫存區"
#: tfrmmain.actopenvirtualfilesystemlist.caption
msgid "Open &VFS List"
msgstr "開啟虛擬檔案系統清單 (&V)"
@ -2677,6 +2698,10 @@ msgstr "重新整理 (&R)"
msgid "Reload the last Favorite Tabs loaded"
msgstr "重新載入上次加載的「我的最愛」分頁"
#: tfrmmain.actremovefromstash.caption
msgid "Remove Stash Items"
msgstr "從暫存區移除"
#: tfrmmain.actrename.caption
msgctxt "tfrmmain.actrename.caption"
msgid "Move"
@ -2804,6 +2829,10 @@ msgctxt "TFRMMAIN.ACTSETFILEPROPERTIES.CAPTION"
msgid "Change &Attributes..."
msgstr "變更檔案屬性... (&A)"
#: tfrmmain.actsetsortmode.caption
msgid "Set Sort Mode"
msgstr "設置排序模式"
#: tfrmmain.actsettaboptiondirsinnewtab.caption
msgid "Locked with Directories Opened in New &Tabs"
msgstr "鎖定並可在新分頁開啟資料夾 (&T)"
@ -5845,7 +5874,6 @@ msgid "C&lone"
msgstr ""
#: tfrmoptionsfileassoc.btncommands.hint
#, fuzzy
msgctxt "tfrmoptionsfileassoc.btncommands.hint"
msgid "Select your internal command"
msgstr "選擇內部指令"
@ -6298,7 +6326,6 @@ msgid "&Mark Color:"
msgstr "標記顏色 (&M):"
#: tfrmoptionsfilepanelscolors.lblpathactiveback.caption
#, fuzzy
msgctxt "tfrmoptionsfilepanelscolors.lblpathactiveback.caption"
msgid "Background:"
msgstr "背景顏色:"
@ -7770,7 +7797,6 @@ msgid "Parameter&s:"
msgstr "參數 (&S):"
#: tfrmoptionstoolbarbase.lblhelponinternalcommand.caption
#, fuzzy
msgctxt "tfrmoptionstoolbarbase.lblhelponinternalcommand.caption"
msgid "Help"
msgstr "說明"
@ -9747,7 +9773,7 @@ msgstr "顯示為文字 (&T)"
#: tfrmviewer.actshowaswraptext.caption
msgctxt "tfrmviewer.actshowaswraptext.caption"
msgid "Show as &Wrap text"
msgstr "顯示為自動換行文字 (&W)"
msgstr "自動換行 (&W)"
#: tfrmviewer.actshowcaret.caption
msgid "Show text c&ursor"
@ -9801,7 +9827,7 @@ msgstr "復原"
#: tfrmviewer.actwraptext.caption
msgid "&Wrap text"
msgstr ""
msgstr "自動換行 (&W)"
#: tfrmviewer.actzoom.caption
msgctxt "tfrmviewer.actzoom.caption"
@ -10220,7 +10246,6 @@ msgid "Read error:"
msgstr ""
#: ulng.rschecksumverifysuccess
#, fuzzy
msgctxt "ulng.rschecksumverifysuccess"
msgid "Success:"
msgstr "成功:"
@ -11332,6 +11357,14 @@ msgstr "網路連接"
msgid "As a file manager, Double Command requires full disk access permissions. Clicking this button will pop up the macOS system settings page. Please add \"Double Commander.app\" to the \"Full Disk Access\" list to complete the authorization."
msgstr "Double Command作為档案管理器需要獲得完全磁盤訪問特權。點擊此按鈕將彈出macOS系統設置頁請添加“Double Commander.app”到“完全磁盤訪問特權”列表中完成授權。"
#: ulng.rsmfstbiprivilegetips2
msgid "If you can see me, it means DC has not been authorized yet. DC will hide me once it is complete."
msgstr "如果你能看到我說明DC仍未獲得授權。DC會在成功授權後隱藏我。"
#: ulng.rsmfstbiprivilegetips3
msgid "You must re-authorize every time you install a new version. In this case you need to remove DC from the list first and then add DC back again. Because the new version has different fingerprints, simply enabling the checkboxes will not work."
msgstr "每次安裝DC的新版本你都必須重新進行授權。這種情況你需要先將DC從列表中移除再重新將DC加入到列表中。因為新版本有不同的指紋單純啓用復選框是無效的。"
#: ulng.rsmfstbiprivilegetitle
msgid "Privilege"
msgstr "特權"
@ -14175,7 +14208,6 @@ msgid "All"
msgstr "全部"
#: ulng.rssimplewordcategory
#, fuzzy
msgctxt "ulng.rssimplewordcategory"
msgid "Category"
msgstr "類別"
@ -14290,6 +14322,10 @@ msgstr ""
msgid "Select directory:"
msgstr "選擇資料夾:"
#: ulng.rsstashname
msgid "Stash"
msgstr "暫存區"
#: ulng.rsstrpreviewjustpreview
msgid "Just preview"
msgstr ""

View file

@ -59,6 +59,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -889,6 +894,10 @@ msgstr "Serveis"
msgid "Show All"
msgstr "Mostrar tots"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Activa/desactiva la pantalla completa"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1435,6 +1444,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -60,6 +60,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -829,6 +834,10 @@ msgstr "Servizii"
msgid "Show All"
msgstr "Tuttu affissà"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Attivà/disattivà u schermu pienu"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Cerriu"
@ -1370,6 +1379,10 @@ msgstr "Entrée"
msgid "Esc"
msgstr "Scap"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -60,6 +60,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -875,6 +880,10 @@ msgstr "Služby"
msgid "Show All"
msgstr "Ukázat vše"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Přepnout na celou obrazovku"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Kaštanová"
@ -1469,6 +1478,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2025-11-27 15:45+0100\n"
"PO-Revision-Date: 2026-04-04 15:25+0200\n"
"Last-Translator: Swen Heinig <swen@heinig.email>\n"
"Language-Team: Deutsch <lazarus@miraclec.com>\n"
"Language: de_DE\n"
@ -10,7 +10,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Generator: Poedit 3.7\n"
"X-Generator: Poedit 3.9\n"
#: lclstrconsts.hhshelpbrowsernotexecutable
#, object-pascal-format
@ -32,10 +32,9 @@ msgid "Unable to find a HTML browser."
msgstr "Kann den HTML-Browser nicht finden."
#: lclstrconsts.hhshelpnohtmlbrowserfoundpleasedefineone
#, object-pascal-format, fuzzy
#| msgid "No HTML Browser found.%sPlease define one in Tools -> Options -> Help -> Help Options"
#, object-pascal-format
msgid "No HTML Browser found.%sPlease define one in Tools -> Options -> Help -> Help Options."
msgstr "Kein HTML-Browser gefunden.%sBitte legen Sie einen fest unter Werkzeuge -> Einstellungen -> Hilfe -> Hilfeeinstellungen"
msgstr "Kein HTML-Browser gefunden.%sBitte legen Sie einen fest unter \"Werkzeuge\" -> \"Einstellungen\" ->\" Hilfe\" -> \"Hilfeeinstellungen\"."
#: lclstrconsts.hhshelpthehelpdatabasewasunabletofindfile
#, object-pascal-format
@ -59,6 +58,11 @@ msgstr "Strg"
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -122,7 +126,7 @@ msgstr "Aquamarin"
#: lclstrconsts.rsascannothaveasparent
#, object-pascal-format
msgid "Class %s cannot have %s as parent."
msgstr ""
msgstr "Klasse %s kann %s nicht als Vorfahren haben."
#: lclstrconsts.rsbackgroundcolorcaption
msgid "Desktop"
@ -154,7 +158,7 @@ msgstr "Schalterfläche"
#: lclstrconsts.rsbtnhighlightcolorcaption
msgid "Button Highlight"
msgstr "Schalter-Hervorheb."
msgstr "Schalter-Hervorhebung"
#: lclstrconsts.rsbtnshadowcolorcaption
msgid "Button Shadow"
@ -192,7 +196,7 @@ msgstr "Schreibweisenabhängig"
#: lclstrconsts.rscontrolclasscantcontainchildclass
#, object-pascal-format
msgid "Control of class '%s' can't have control of class '%s' as a child"
msgstr ""
msgstr "Ein Steuerelement der Klasse %s kann nicht ein Steuerelement der Klasse %s als Nachfahren haben."
#: lclstrconsts.rscontrolhasnoparentformorframe
#, object-pascal-format
@ -202,17 +206,15 @@ msgstr ""
#: lclstrconsts.rscontrolisnotaparent
#, object-pascal-format
msgid "'%s' is not a parent of '%s'"
msgstr ""
msgstr "'%s' ist kein Vorfahre von '%s'"
#: lclstrconsts.rscreamcolorcaption
msgid "Cream"
msgstr "Cremefarbig"
#: lclstrconsts.rscursor
#, fuzzy
#| msgid "Cursor"
msgid "Cursor Files"
msgstr "Zeiger"
msgstr "Cursor-Dateien"
#: lclstrconsts.rscustomcolorcaption
msgid "Custom ..."
@ -221,12 +223,12 @@ msgstr "Eigene ..."
#: lclstrconsts.rsdatetoolarge
#, object-pascal-format
msgid "Date cannot be past %s"
msgstr ""
msgstr "Datum darf nicht nach dem %s liegen"
#: lclstrconsts.rsdatetoosmall
#, object-pascal-format
msgid "Date cannot be before %s"
msgstr ""
msgstr "Datum darf nicht vor dem %s liegen"
#: lclstrconsts.rsdefaultcolorcaption
msgid "Default"
@ -438,11 +440,11 @@ msgstr "--g-fatal-warnings Von Gtk+/GDK generierte Warnungen und Fehler halte
#: lclstrconsts.rsgradientactivecaptioncolorcaption
msgid "Gradient Active Caption"
msgstr "Gradient der aktiven Titelleiste"
msgstr "Farbverlauf der aktiven Titelleiste"
#: lclstrconsts.rsgradientinactivecaptioncolorcaption
msgid "Gradient Inactive Caption"
msgstr "Gradient der inaktiven Titelleiste"
msgstr "Farbverlauf der inaktiven Titelleiste"
#: lclstrconsts.rsgraphic
msgid "Graphic"
@ -546,7 +548,7 @@ msgstr "Hilfe"
#: lclstrconsts.rshelpalreadyregistered
#, object-pascal-format
msgid "%s: already registered."
msgstr "%s: Bereits registriert,"
msgstr "%s: Bereits registriert."
#: lclstrconsts.rshelpcontextnotfound
msgid "A help database was found for this topic, but this topic was not found"
@ -642,7 +644,7 @@ msgstr "Hilfebetrachter nicht gefunden"
#: lclstrconsts.rshidedetails
msgid "Hide details"
msgstr ""
msgstr "Details verbergen"
#: lclstrconsts.rshighlightcolorcaption
msgid "Highlight"
@ -705,12 +707,12 @@ msgstr "Inaktive Titelleiste"
#: lclstrconsts.rsindexoutofbounds
#, object-pascal-format
msgid "%s Index %d out of bounds 0 .. %d"
msgstr "%s Index %d außerhalb des Bereichs 0 .. %d"
msgstr "%s Index %d außerhalb des Bereichs 0 ... %d"
#: lclstrconsts.rsindexoutofboundsminusone
#, object-pascal-format
msgid "%s Index %d out of bounds -1 .. %d"
msgstr ""
msgstr "%s Index %d außerhalb des Bereichs -1 ... %d"
#: lclstrconsts.rsindexoutofrange
#, object-pascal-format
@ -776,7 +778,7 @@ msgstr "Listenindex überschreitet Grenzen (%d)"
#: lclstrconsts.rsmacoscolordialogmbpick
msgid "Pick"
msgstr ""
msgstr "Auswählen"
#: lclstrconsts.rsmacoseditmenu
msgctxt "lclstrconsts.rsmacoseditmenu"
@ -811,19 +813,19 @@ msgstr "Rückgängig"
#: lclstrconsts.rsmacosfiledialogpackageswitchtips
msgid "Treat File Packages (such as *.app files) as Directories to access their internal files"
msgstr ""
msgstr "Dateipakete (etwa *.app-Dateien) als Verzeichnisse behandeln beim Zugriff auf die enthaltenen Dateien"
#: lclstrconsts.rsmacosfiledialogpackageswitchtitle
msgid "Show File Package Contents"
msgstr ""
msgstr "Inhalt des Dateipakets anzeigen"
#: lclstrconsts.rsmacosfileformat
msgid "File Format:"
msgstr ""
msgstr "Dateiformat:"
#: lclstrconsts.rsmacosfontdialogmbselect
msgid "Select"
msgstr ""
msgstr "Auswhählen"
#: lclstrconsts.rsmacosmenuabout
#, object-pascal-format
@ -856,6 +858,10 @@ msgstr "Dienste"
msgid "Show All"
msgstr "Alle anzeigen"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Vollbildmodus umschalten"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Kastanienbraun"
@ -1019,7 +1025,7 @@ msgstr "Übertragen"
#: lclstrconsts.rspressoktoignoreandriskdatacorruptionpressaborttok
#, object-pascal-format
msgid "%s%sPress OK to ignore and risk data corruption.%sPress Abort to kill the program."
msgstr ""
msgstr "%s%s\"OK\" klicken zum Ignorieren des Fehlers unter möglichem Datenverlust.%s \"Abbruch\" klicken, um das Programm zu beenden."
#: lclstrconsts.rspriorrecordhint
msgctxt "lclstrconsts.rspriorrecordhint"
@ -1207,7 +1213,7 @@ msgstr "Himmelblau"
#: lclstrconsts.rstcustomtabcontrolaccessibilitydescription
msgid "A control with tabs"
msgstr ""
msgstr "Ein Steuerelement mit Reitern"
#: lclstrconsts.rstealcolorcaption
msgid "Teal"
@ -1223,7 +1229,7 @@ msgstr "TGA-Bilddateien"
#: lclstrconsts.rsthebuiltinurlisreadonlychangethebaseurlinstead
msgid "The built-in URL is read only. Change the BaseURL instead."
msgstr ""
msgstr "Die eingebaute URL ist schreibgeschützt. Bitte stattdessen die Basis-URL ändern."
#: lclstrconsts.rstiff
#, fuzzy
@ -1239,12 +1245,12 @@ msgstr ""
#: lclstrconsts.rstsplitteraccessibilitydescription
msgctxt "lclstrconsts.rstsplitteraccessibilitydescription"
msgid "A grip to control how much size to give two parts of an area"
msgstr ""
msgstr "Ein Greifer zum Steuern, welche Größe zwei Teile einer Fläche bekommen sollen"
#: lclstrconsts.rsttreeviewaccessibilitydescription
msgctxt "lclstrconsts.rsttreeviewaccessibilitydescription"
msgid "A tree of items"
msgstr ""
msgstr "Eine Baumstruktur von Einträgen"
#: lclstrconsts.rsunabletoloaddefaultfont
msgid "Unable to load default font"
@ -1411,6 +1417,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"
@ -1427,7 +1437,7 @@ msgstr "Links"
#: lclstrconsts.smkcmeta
msgid "Meta+"
msgstr ""
msgstr "Meta+"
#: lclstrconsts.smkcpgdn
msgid "PgDn"
@ -1523,7 +1533,7 @@ msgstr "Ordner"
#: lclstrconsts.sshellctrlsgb
#, object-pascal-format
msgid "%s GB"
msgstr ""
msgstr "%s GB"
#: lclstrconsts.sshellctrlsinvalidpath
#, object-pascal-format
@ -1542,7 +1552,7 @@ msgid ""
"\"%s\"\n"
"in relation to rootpath:\n"
"\"%s\""
msgstr ""
msgstr "Ungültiger relativer Pfadname \"%s\" in Bezug auf den Wurzelpfad \"%s\""
#: lclstrconsts.sshellctrlsinvalidroot
#, object-pascal-format
@ -1557,16 +1567,14 @@ msgstr ""
#: lclstrconsts.sshellctrlskb
#, object-pascal-format
msgid "%s kB"
msgstr ""
msgstr "%s kB"
#: lclstrconsts.sshellctrlsmb
#, object-pascal-format
msgid "%s MB"
msgstr ""
msgstr "%s MB"
#: lclstrconsts.sshellctrlsmodificationdate
#, fuzzy
#| msgid "Modif.Date"
msgid "Date modified"
msgstr "Änderungsdatum"
@ -1579,7 +1587,7 @@ msgstr "Name"
msgid ""
"The selected item does not exist on disk:\n"
"\"%s\""
msgstr ""
msgstr "Der ausgewählte Eintrag existiert nicht auf Platte: \"%s\""
#: lclstrconsts.sshellctrlssize
msgid "Size"

View file

@ -50,6 +50,11 @@ msgstr ""
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -822,6 +827,10 @@ msgstr "Υπηρεσίες"
msgid "Show All"
msgstr "Προβολή όλων"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Εναλλαγή πλήρους οθόνης"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1363,6 +1372,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -866,6 +871,10 @@ msgstr "Servicios"
msgid "Show All"
msgstr "Mostrar todo"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Alternar pantalla completa"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Marrón"
@ -1460,6 +1469,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -56,6 +56,11 @@ msgstr ""
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -867,6 +872,10 @@ msgstr ""
msgid "Show All"
msgstr ""
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr ""
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1457,6 +1466,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Commande"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -873,6 +878,10 @@ msgstr "Services"
msgid "Show All"
msgstr "Tout Afficher"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Basculer vers le plein écran"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Marron"
@ -1469,6 +1478,10 @@ msgstr "Entrée"
msgid "Esc"
msgstr "Échap"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -59,6 +59,11 @@ msgstr "מקש קונטרול"
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -890,6 +895,10 @@ msgstr ""
msgid "Show All"
msgstr ""
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr ""
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "ערמוני"
@ -1484,6 +1493,10 @@ msgstr "מקש אנטר"
msgid "Esc"
msgstr "מקש בטל"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -873,6 +878,10 @@ msgstr "Szolgáltatások"
msgid "Show All"
msgstr "Összes megjelenítése"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Teljes képernyős nézet be-/kikapcsolása"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Gesztenyebarna"
@ -1467,6 +1476,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -60,6 +60,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -888,6 +893,10 @@ msgstr "Perkhidmatan"
msgid "Show All"
msgstr "Tunjukkan Al"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Beralih ke layar penuh"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1434,6 +1443,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -60,6 +60,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -878,6 +883,10 @@ msgstr "Servizi"
msgid "Show All"
msgstr "Mostra Tutto"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Attiva/disattiva la modalità a schermo intero"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Marrone"
@ -1472,6 +1481,10 @@ msgstr "Invio"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -874,6 +879,10 @@ msgstr "サービス"
msgid "Show All"
msgstr "すべて表示"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "全画面表示の切り替え"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "栗色"
@ -1468,6 +1477,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -827,6 +832,10 @@ msgstr "서비스"
msgid "Show All"
msgstr "모두 보이기"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "전체 화면 전환"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "적갈색"
@ -1368,6 +1377,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -60,6 +60,11 @@ msgstr "Vald"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -876,6 +881,10 @@ msgstr ""
msgid "Show All"
msgstr ""
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr ""
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Kaštoninė"
@ -1470,6 +1479,10 @@ msgstr "Įvesti"
msgid "Esc"
msgstr "Gr"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -63,6 +63,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -879,6 +884,10 @@ msgstr "Voorzieningen"
msgid "Show All"
msgstr "Toon alle"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Volledig scherm in-/uitschakelen"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Kastanje"
@ -1474,6 +1483,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -59,6 +59,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -885,6 +890,10 @@ msgstr ""
msgid "Show All"
msgstr ""
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr ""
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1433,6 +1442,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -59,6 +59,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Komend (cmd)"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -874,6 +879,10 @@ msgstr "Usługi"
msgid "Show All"
msgstr "Pokaż wszystko"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "przełącz na pełny ekran"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Bordowy"
@ -1469,6 +1478,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
#, fuzzy
msgctxt "lclstrconsts.smkchome"

View file

@ -50,6 +50,11 @@ msgstr ""
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -819,6 +824,10 @@ msgstr ""
msgid "Show All"
msgstr ""
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr ""
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1360,6 +1369,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

File diff suppressed because it is too large Load diff

View file

@ -58,6 +58,11 @@ msgstr "Ctl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -861,6 +866,10 @@ msgstr "Serviços"
msgid "Show All"
msgstr "Exibir tudo"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Alternar tela cheia"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Marrom"
@ -1449,6 +1458,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: lazaruside\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2026-01-18 22:45+0300\n"
"PO-Revision-Date: 2026-05-25 23:38+0300\n"
"Last-Translator: Maxim Ganetsky <maxkill@mail.ru>\n"
"Language-Team: \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
"X-Generator: Poedit 3.6\n"
#: lclstrconsts.hhshelpbrowsernotexecutable
#, object-pascal-format
@ -57,6 +57,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr "Fn"
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -826,6 +831,10 @@ msgstr "Службы"
msgid "Show All"
msgstr "Показать все"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Переключить полноэкранный режим"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Малиновый"
@ -1367,6 +1376,10 @@ msgstr "Ввод"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr "Fn+"
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -59,6 +59,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -838,6 +843,10 @@ msgstr "සේවා"
msgid "Show All"
msgstr "සියල්ල පෙන්වන්න"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "සම්පූර්ණ තිරය ටොගල කරන්න"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "මෙරූන්"
@ -1380,6 +1389,10 @@ msgstr "ඇතුල් කරන්න"
msgid "Esc"
msgstr "පිට වීම"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -59,6 +59,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -828,6 +833,10 @@ msgstr "Služby"
msgid "Show All"
msgstr "Zobraziť všetko"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "prepnúť na celú obrazovku"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Gaštanová"
@ -1369,6 +1378,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -861,6 +866,10 @@ msgstr "Servisler"
msgid "Show All"
msgstr "Tümünü göster"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "Tam ekranı aç/kapat"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Kestane Rengi"
@ -1449,6 +1458,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -61,6 +61,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -864,6 +869,10 @@ msgstr "Служби"
msgid "Show All"
msgstr "Показати все"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "перемикання на весь екран"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "Коричнево-малиновий"
@ -1452,6 +1461,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -58,6 +58,11 @@ msgstr "Ctrl"
msgid "Cmd"
msgstr "Cmd"
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -827,6 +832,10 @@ msgstr "服务"
msgid "Show All"
msgstr "全部显示"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "切换全屏模式"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr "褐红色"
@ -1369,6 +1378,10 @@ msgstr "Enter"
msgid "Esc"
msgstr "Esc"
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

View file

@ -57,6 +57,11 @@ msgstr ""
msgid "Cmd"
msgstr ""
#: lclstrconsts.ifsvk_fn
msgctxt "lclstrconsts.ifsvk_fn"
msgid "Fn"
msgstr ""
#: lclstrconsts.ifsvk_help
msgctxt "lclstrconsts.ifsvk_help"
msgid "Help"
@ -169,7 +174,7 @@ msgstr ""
#: lclstrconsts.rscancelrecordhint
msgctxt "lclstrconsts.rscancelrecordhint"
msgid "Cancel"
msgstr ""
msgstr "取消"
#: lclstrconsts.rscannotfocus
msgid "Cannot focus"
@ -826,6 +831,10 @@ msgstr "服務"
msgid "Show All"
msgstr "顯示全部"
#: lclstrconsts.rsmacosmenutogglefullscreen
msgid "Toggle Full Screen"
msgstr "切換全螢幕模式"
#: lclstrconsts.rsmarooncolorcaption
msgid "Maroon"
msgstr ""
@ -1367,6 +1376,10 @@ msgstr ""
msgid "Esc"
msgstr ""
#: lclstrconsts.smkcfn
msgid "Fn+"
msgstr ""
#: lclstrconsts.smkchome
msgctxt "lclstrconsts.smkchome"
msgid "Home"

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 677 B

After

Width:  |  Height:  |  Size: 497 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 526 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 719 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 958 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 642 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 869 B

After

Width:  |  Height:  |  Size: 843 B

Before After
Before After

Binary file not shown.

View file

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg4045"
height="48"
width="48"
version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#">
<defs
id="defs4047">
<radialGradient
xlink:href="#linearGradient5060"
id="radialGradient4154-6"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.02409718,0,0,0.01726377,26.522408,35.670139)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5060">
<stop
id="stop5062"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop5064"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<radialGradient
xlink:href="#linearGradient5060"
id="radialGradient4151-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.02409719,0,0,0.01726377,21.477583,35.670139)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
xlink:href="#linearGradient5048"
id="linearGradient4157-6"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.04970415,0,0,0.01852943,6.0355021,35.206225)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
id="linearGradient5048">
<stop
id="stop5050"
style="stop-color:#000000;stop-opacity:0"
offset="0" />
<stop
id="stop5056"
style="stop-color:#000000;stop-opacity:1"
offset="0.5" />
<stop
id="stop5052"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient15">
<stop
style="stop-color:#005ecc;stop-opacity:1;"
offset="0"
id="stop14" />
<stop
style="stop-color:#007aff;stop-opacity:1;"
offset="1"
id="stop15" />
</linearGradient>
<linearGradient
xlink:href="#linearGradient15"
id="linearGradient4"
x1="16.012304"
y1="6.2460198"
x2="15.987695"
y2="31.345875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4,0,0,1.4,1.5999997,1.9999998)" />
<linearGradient
xlink:href="#linearGradient15"
id="linearGradient1"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(8.0000001,-0.99999966)"
x1="16.012304"
y1="6.2460198"
x2="15.987695"
y2="31.345875" />
<linearGradient
xlink:href="#linearGradient15"
id="linearGradient3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6,0,0,0.6,14.399999,-4)"
x1="16.012304"
y1="6.2460198"
x2="15.987695"
y2="31.345875" />
</defs>
<metadata
id="metadata4050">
<rdf:RDF>
<cc:Work
rdf:about="" />
</rdf:RDF>
</metadata>
<path
d="m 12,42 c 0,0 0,4.192398 0,4.192398 -1.240944,0.0079 -3.0000002,-0.939305 -3.0000002,-2.09647 C 8.9999998,42.938766 10.3848,42 12,42 Z"
id="path2881"
style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient4154-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.999998;marker:none" />
<path
d="m 36.000002,42 c 0,0 0,4.192398 0,4.192398 1.240943,0.0079 3,-0.939305 3,-2.09647 0,-1.157162 -1.384805,-2.095928 -3,-2.095928 z"
id="path2883"
style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient4151-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.999998;marker:none" />
<rect
width="24"
height="4.5"
x="12"
y="42"
id="rect2879"
style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#linearGradient4157-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.999998;marker:none" />
<rect
style="display:inline;fill:url(#linearGradient4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.999996;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.5;paint-order:normal"
id="rect2"
width="28"
height="28"
x="10"
y="16"
rx="4.0000005"
ry="3.9989576" />
<path
id="rect1"
style="display:inline;fill:url(#linearGradient1);fill-rule:evenodd;stroke-width:0.999995;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.5"
d="m 18,9 h 12 c 2.216464,0 4,1.784042 4,4.000093 0,-0.03965 -20,0 -20,0 C 14,10.784042 15.783536,9 18,9 Z" />
<path
id="rect3"
style="display:inline;fill:url(#linearGradient3);fill-rule:evenodd;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.5"
d="m 22,2 h 4 c 2.217978,0 4,1.7822697 4,4 0,0 -12,-0.024457 -12,0 0,-2.2177303 1.782022,-4 4,-4 z" />
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
pixmaps/stuff/stash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1302,7 +1302,10 @@ begin
DoArchiveProgress( 100, Abort );
finally {NewStream}
OutGzHelp.Free;
if (FStream <> NewStream) then
{ Use FGzStream (not FStream) so the comparison is correct even when
SwapToTar was called and an exception prevented SwapToGzip from running.
FGzStream always holds the original gzip stream reference. }
if (FGzStream <> NewStream) then
NewStream.Free;
end;
end;

View file

@ -2556,6 +2556,10 @@ begin
end;
end; { aaAdd ... }
end; { case }
DoArchiveProgress(AbPercentage(succ(i), Count), Abort);
if Abort then
raise EAbUserAbort.Create;
end; { for i ... }
if NewStream.Position > 0 then

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="12"/>
<Version Value="13"/>
<PathDelim Value="\"/>
<General>
<Flags>
@ -50,7 +50,7 @@
</Target>
<SearchPaths>
<IncludeFiles Value="$(LazarusDir)\ide;$(ProjOutDir);..\sdk;..\units"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google;filesources\stash"/>
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/>
<SrcPath Value="$(LazarusDir)\lcl;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType);$(fpcsrcdir)\packages\fcl-base\src"/>
</SearchPaths>
@ -97,7 +97,7 @@ end;"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(LazarusDir)\ide;$(ProjOutDir);..\sdk;..\units"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google;filesources\stash"/>
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/>
<SrcPath Value="$(LazarusDir)\lcl;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType);$(fpcsrcdir)\packages\fcl-base\src"/>
</SearchPaths>
@ -140,7 +140,7 @@ end;"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(LazarusDir)\ide;$(ProjOutDir);..\sdk;..\units"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google;filesources\stash"/>
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/>
<SrcPath Value="$(LazarusDir)\lcl;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType);$(fpcsrcdir)\packages\fcl-base\src"/>
</SearchPaths>
@ -170,9 +170,14 @@ begin
UnitPath += &apos;platform/$(SrcOS)/qt6;platform/$(SrcOS)/wayland;&apos;;
end;
if (LCLWidgetType = &apos;gtk2&apos;) and (SrcOS = &apos;unix&apos;) and (TargetOS &lt;> &apos;darwin&apos;) then
if ((LCLWidgetType = &apos;gtk2&apos;) or (LCLWidgetType = &apos;gtk3&apos;)) and (SrcOS = &apos;unix&apos;) then
begin
UnitPath += &apos;platform/$(SrcOS)/$(LCLWidgetType);&apos;;
end;
if (SrcOS = &apos;unix&apos;) and (TargetOS &lt;> &apos;darwin&apos;) and (TargetOS &lt;> &apos;haiku&apos;) then
begin
CustomOptions += &apos; -dXDG -dRabbitVCS&apos;;
end;"/>
<Parsing>
<SyntaxOptions>
@ -224,7 +229,7 @@ end;"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(LazarusDir)\ide;$(ProjOutDir);..\sdk;..\units"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;..\components\DDetours\Source;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;..\components\DDetours\Source;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google;filesources\stash"/>
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/>
<SrcPath Value="$(LazarusDir)\lcl;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType);$(fpcsrcdir)\packages\fcl-base\src"/>
</SearchPaths>
@ -321,7 +326,7 @@ end;"/>
</Item8>
<Item9>
<PackageName Value="LCL"/>
<MinVersion Major="4" Minor="0" Valid="True"/>
<MinVersion Major="4" Valid="True"/>
</Item9>
<Item10>
<PackageName Value="SynEdit"/>
@ -338,7 +343,7 @@ end;"/>
<PackageName Value="Image32"/>
</Item13>
</RequiredPackages>
<Units Count="303">
<Units Count="306">
<Unit0>
<Filename Value="doublecmd.lpr"/>
<IsPartOfProject Value="True"/>
@ -1461,6 +1466,7 @@ end;"/>
<Unit183>
<Filename Value="filesources\wfxplugin\uwfxplugindeleteoperation.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="uWfxPluginDeleteOperation"/>
</Unit183>
<Unit184>
<Filename Value="filesources\wfxplugin\uwfxpluginexecuteoperation.pas"/>
@ -2184,6 +2190,22 @@ end;"/>
<IsPartOfProject Value="True"/>
<UnitName Value="uDarwinFNKey"/>
</Unit302>
<Unit303>
<Filename Value="filesources\stash\ustashfilesource.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="uStashFileSource"/>
</Unit303>
<Unit304>
<Filename Value="filesources\stash\ustashfilesourceoperation.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="uStashFileSourceOperation"/>
</Unit304>
<Unit305>
<Filename Value="filesources\stash\ustashfilesbackend.pas"/>
<IsPartOfProject Value="True"/>
<HasResources Value="True"/>
<UnitName Value="uStashFilesBackend"/>
</Unit305>
</Units>
</ProjectOptions>
<CompilerOptions>
@ -2194,7 +2216,7 @@ end;"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(LazarusDir)\ide;$(ProjOutDir);..\sdk;..\units"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google"/>
<OtherUnitFiles Value="platform;platform\$(SrcOS);platform\$(SrcOS)\$(TargetOS);..\sdk;frames;fileviews;filesources;filesources\filesystem;filesources\multiarchive;filesources\multilist;filesources\searchresult;filesources\tempfilesystem;filesources\vfs;filesources\wcxarchive;filesources\wfxplugin;filesources\winnet;platform\unix\glib;platform\unix\mime;filesources\gio;rpc;rpc\sys\$(SrcOS);rpc\sys;filesources\recyclebin;filesources\gio\trash;filesources\winnet\wsl;filesources\shellfolder;platform\win\winrt;filesources\gio\network;filesources\mounted;filesources\gio\google;filesources\stash"/>
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/>
<SrcPath Value="$(LazarusDir)\lcl;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType);$(fpcsrcdir)\packages\fcl-base\src"/>
</SearchPaths>
@ -2211,6 +2233,16 @@ end;
if (LCLWidgetType = &apos;qt6&apos;) and (TargetOS &lt;> &apos;darwin&apos;) then
begin
UnitPath += &apos;platform/$(SrcOS)/qt6;platform/$(SrcOS)/wayland;&apos;;
end;
if ((LCLWidgetType = &apos;gtk2&apos;) or (LCLWidgetType = &apos;gtk3&apos;)) and (SrcOS = &apos;unix&apos;) then
begin
UnitPath += &apos;platform/$(SrcOS)/$(LCLWidgetType);&apos;;
end;
if (SrcOS = &apos;unix&apos;) and (TargetOS &lt;> &apos;darwin&apos;) and (TargetOS &lt;> &apos;haiku&apos;) then
begin
CustomOptions += &apos; -dXDG -dRabbitVCS&apos;;
end;"/>
<Parsing>
<SyntaxOptions>

View file

@ -56,6 +56,9 @@ uses
{$IFDEF LCLGTK2}
uGtk2FixCursorPos,
{$ENDIF}
{$IFDEF LCLGTK3}
uGtk3WSControls,
{$ENDIF}
{$IFDEF darwin}
uDarwinApplication,
uiCloudDriveConfig,
@ -99,10 +102,8 @@ uses
, uMyUnix
{$ENDIF}
{$IFDEF LclCocoa}
{$if NOT defined(DisableCocoaModernForm)}
,uCocoaModernFormConfig
{$endif}
,CocoaConfig
, uCocoaModernFormConfig
, CocoaConfig
{$ENDIF}
;
@ -222,7 +223,7 @@ begin
InitPasswordStore;
LoadPixMapManager;
{$IF DEFINED(DARWIN)}
initCocoaModernFormConfig;
TDCCocoaModernFormUtils.initConfig;
iCloudDriveConfigUtil.load;
{$ENDIF}
Application.CreateForm(TfrmMain, frmMain); // main form

View file

@ -545,8 +545,7 @@ begin
FreeAndNil(ASelectedFiles);
end;
(FileView.FileSource as ILocalFileSource).AddSearchPath(
FileView.CurrentRealPath, FSelectedFiles );
FileView.FileSource.AddSearchPath( FileView.CurrentRealPath, FSelectedFiles );
FindInArchive(FileView);
@ -1741,15 +1740,18 @@ begin
if cbFindInArchive.Enabled then
begin
if (cmbFindPathStart.Text = '') then begin
cmbFindPathStart.Text:= mbGetCurrentDir;
end;
for sPath in SplitPath(cmbFindPathStart.Text) do
if FFileSource.IsClass(TFileSystemFileSource) then
begin
if not mbDirectoryExists(sPath) then
if (cmbFindPathStart.Text = '') then begin
cmbFindPathStart.Text:= mbGetCurrentDir;
end;
for sPath in SplitPath(cmbFindPathStart.Text) do
begin
ShowMessage(Format(rsFindDirNoEx, [sPath]));
Exit;
if not mbDirectoryExists(sPath) then
begin
ShowMessage(Format(rsFindDirNoEx, [sPath]));
Exit;
end;
end;
end;
end;
@ -2067,6 +2069,7 @@ begin
// Add new tab for search results.
Notebook := frmMain.ActiveNotebook;
NewPage := Notebook.NewPage(Notebook.ActiveView);
NewPage.FileView.clearFilesOnly;
if FLastSearchTemplate.SearchRecord.Duplicates then
begin
@ -2386,7 +2389,10 @@ begin
if cmbFindFileMask.CanSetFocus then
cmbFindFileMask.SetFocus;
cbSelectedFiles.Checked := FSelectedFiles.Count > 0;
if cbSelectedFiles.Checked <> (FSelectedFiles.Count > 0) then
cbSelectedFiles.Checked := NOT cbSelectedFiles.Checked
else
cbSelectedFilesChange( cbSelectedFiles );
cbSelectedFiles.Enabled := cbSelectedFiles.Checked;
end;

View file

@ -26,7 +26,7 @@ unit fCopyMoveDlg;
interface
uses
SysUtils, Classes, Controls, Forms, StdCtrls, Buttons, ExtCtrls, Menus,
SysUtils, Classes, Controls, Forms, StdCtrls, ShellCtrls, Buttons, ExtCtrls, Menus,
ActnList, KASPathEdit, uFileSource, uFileViewNotebook, uFileSourceOperation,
uFileSourceOperationOptionsUI, uOperationsManager, uFormCommands;
@ -38,7 +38,7 @@ type
{ TfrmCopyDlg }
TfrmCopyDlg = class(TForm, IFormCommands)
TfrmCopyDlg = class(TForm, IFormCommands, IKASPathEditMate)
btnCancel: TBitBtn;
btnOK: TBitBtn;
btnAddToQueue: TBitBtn;
@ -77,6 +77,7 @@ type
FDialogType: TCopyMoveDlgType;
noteb: TFileViewNotebook;
FFileSource: IFileSource;
FDestFileSource: IFileSource;
FOperationOptionsUIClass: TFileSourceOperationOptionsUIClass;
FOperationOptionsUI: TFileSourceOperationOptionsUI;
FCurrentCopyDlgNameSelectionStep: TCurrentCopyDlgNameSelectionStep;
@ -90,11 +91,16 @@ type
procedure ShowOptions(bShow: Boolean);
procedure UpdateSize;
function getFilesAtPath(
const path: String;
const types: TObjectTypes;
const sort: TFileSortType ): TStringList;
property {%H-}Commands: TFormCommands read FCommands implements IFormCommands;
public
constructor Create(TheOwner: TComponent; DialogType: TCopyMoveDlgType;
AFileSource: IFileSource;
AFileSource: IFileSource; ADestFileSource: IFileSource;
AOperationOptionsUIClass: TFileSourceOperationOptionsUIClass); reintroduce;
constructor Create(TheOwner: TComponent); override;
procedure SetOperationOptions(Operation: TFileSourceOperation);
@ -121,11 +127,12 @@ var
FQueueIdentifier: TOperationsManagerQueueIdentifier = SingleQueueId;
constructor TfrmCopyDlg.Create(TheOwner: TComponent; DialogType: TCopyMoveDlgType;
AFileSource: IFileSource;
AFileSource: IFileSource; ADestFileSource: IFileSource;
AOperationOptionsUIClass: TFileSourceOperationOptionsUIClass);
begin
FDialogType := DialogType;
FFileSource := AFileSource;
FDestFileSource := ADestFileSource;
FOperationOptionsUIClass := AOperationOptionsUIClass;
FCommands := TFormCommands.Create(Self);
inherited Create(TheOwner);
@ -133,7 +140,7 @@ end;
constructor TfrmCopyDlg.Create(TheOwner: TComponent);
begin
Create(TheOwner, cmdtCopy, nil, nil);
Create(TheOwner, cmdtCopy, nil, nil, nil);
end;
procedure TfrmCopyDlg.SetOperationOptions(Operation: TFileSourceOperation);
@ -458,6 +465,8 @@ begin
if Assigned(Hotkey) then
btnAddToQueue.Caption := btnAddToQueue.Caption + ' (' + ShortcutsToText(Hotkey.Shortcuts) + ')';
edtDst.Mate:= self;
end;
procedure TfrmCopyDlg.FormDestroy(Sender: TObject);
@ -480,6 +489,14 @@ begin
Self.Height := pnlOptions.Top;
end;
function TfrmCopyDlg.getFilesAtPath(
const path: String;
const types: TObjectTypes;
const sort: TFileSortType ): TStringList;
begin
Result:= FDestFileSource.GetFilesForPathAndType( path, types, sort );
end;
initialization
TFormCommands.RegisterCommandsForm(TfrmCopyDlg, HotkeysCategory, @rsHotkeyCategoryCopyMoveDialog);

View file

@ -307,7 +307,7 @@ uses
uShowMsg, DCClassesUtf8, dmCommonData, uDCUtils, uConvEncoding, uAdministrator,
LCLVersion, LCLStrConsts, uFileProcs
{$IFDEF DARWIN}
, uDarwinApplication, uEarlyConfig
, uCocoaModernFormConfig
{$ENDIF}
;
@ -1465,7 +1465,7 @@ begin
ToolBar.SetButtonSize(gToolIconsSize + ScaleX(6, 96),
gToolIconsSize + ScaleY(6, 96));
{$IFDEF DARWIN}
if gModernUI and TDarwinApplicationUtil.supportsModernForm then
if TDCCocoaModernFormUtils.isEnabled then
ToolBar.Hide;
{$ENDIF}
contextMenu.ImagesWidth:= gIconsInMenusSize;

View file

@ -862,6 +862,21 @@ object frmEditor: TfrmEditor
end
end
end
object miView: TMenuItem
Caption = '&View'
object miZoomIn: TMenuItem
Action = actZoomIn
end
object miZoomOut: TMenuItem
Action = actZoomOut
end
object miSeparator3: TMenuItem
Caption = '-'
end
object miWordWrap: TMenuItem
Action = actWordWrap
end
end
object miEncoding: TMenuItem
Caption = 'En&coding'
object miEncodingIn: TMenuItem
@ -883,7 +898,7 @@ object frmEditor: TfrmEditor
end
object ActListEdit: TActionList
Images = dmComData.ilEditorImages
Left = 112
Left = 120
Top = 32
object actAbout: TAction
Category = 'Help'
@ -1072,13 +1087,20 @@ object frmEditor: TfrmEditor
OnExecute = actExecute
end
object actZoomIn: TAction
Category = 'View'
Caption = 'Zoom In'
OnExecute = actExecute
end
object actZoomOut: TAction
Category = 'View'
Caption = 'Zoom Out'
OnExecute = actExecute
end
object actWordWrap: TAction
Category = 'View'
Caption = '&Word wrap'
OnExecute = actExecute
end
end
object pmContextMenu: TPopupMenu
Images = dmComData.ilEditorImages

View file

@ -3,6 +3,7 @@
{"hash":2805797,"name":"tfrmeditor.mifile.caption","sourcebytes":[38,70,105,108,101],"value":"&File"},
{"hash":2800388,"name":"tfrmeditor.miedit.caption","sourcebytes":[38,69,100,105,116],"value":"&Edit"},
{"hash":97085973,"name":"tfrmeditor.milineendtype.caption","sourcebytes":[69,110,100,32,79,102,32,76,105,110,101],"value":"End Of Line"},
{"hash":2871239,"name":"tfrmeditor.miview.caption","sourcebytes":[38,86,105,101,119],"value":"&View"},
{"hash":212198471,"name":"tfrmeditor.miencoding.caption","sourcebytes":[69,110,38,99,111,100,105,110,103],"value":"En&coding"},
{"hash":107742931,"name":"tfrmeditor.miencodingin.caption","sourcebytes":[79,112,101,110,32,97,115],"value":"Open as"},
{"hash":160200403,"name":"tfrmeditor.miencodingout.caption","sourcebytes":[83,97,118,101,32,97,115],"value":"Save as"},
@ -55,5 +56,6 @@
{"hash":97034739,"name":"tfrmeditor.acteditfindprevious.caption","sourcebytes":[70,105,110,100,32,112,114,101,118,105,111,117,115],"value":"Find previous"},
{"hash":93074804,"name":"tfrmeditor.actfilereload.caption","sourcebytes":[82,101,108,111,97,100],"value":"Reload"},
{"hash":23458974,"name":"tfrmeditor.actzoomin.caption","sourcebytes":[90,111,111,109,32,73,110],"value":"Zoom In"},
{"hash":106909908,"name":"tfrmeditor.actzoomout.caption","sourcebytes":[90,111,111,109,32,79,117,116],"value":"Zoom Out"}
{"hash":106909908,"name":"tfrmeditor.actzoomout.caption","sourcebytes":[90,111,111,109,32,79,117,116],"value":"Zoom Out"},
{"hash":140859104,"name":"tfrmeditor.actwordwrap.caption","sourcebytes":[38,87,111,114,100,32,119,114,97,112],"value":"&Word wrap"}
]}

View file

@ -60,6 +60,7 @@ type
actEditFindPrevious: TAction;
actFileReload: TAction;
actEditTimeDate: TAction;
actWordWrap: TAction;
actZoomOut: TAction;
actZoomIn: TAction;
ilBookmarks: TImageList;
@ -73,6 +74,10 @@ type
actFileNew: TAction;
actFileExit: TAction;
MenuItem1: TMenuItem;
miWordWrap: TMenuItem;
miZoomOut: TMenuItem;
miZoomIn: TMenuItem;
miView: TMenuItem;
miFileReload: TMenuItem;
miFindPrevious: TMenuItem;
miGotoLine: TMenuItem;
@ -116,6 +121,7 @@ type
miReplace: TMenuItem;
Help1: TMenuItem;
miAbout: TMenuItem;
miSeparator3: TMenuItem;
StatusBar: TStatusBar;
Editor: TSynEdit;
miHighlight: TMenuItem;
@ -168,6 +174,9 @@ type
FElevate: TDuplicates;
FCommands: TFormCommands;
FMultiCaret: TSynPluginMultiCaret;
{$if lcl_fullversion >= 4990000}
FSynEditWrap: TLazSynEditPlugin;
{$endif}
property Commands: TFormCommands read FCommands implements IFormCommands;
@ -236,6 +245,7 @@ type
procedure cm_EditRplc(const {%H-}Params:array of string);
procedure cm_ZoomIn(const {%H-}Params: array of string);
procedure cm_ZoomOut(const {%H-}Params: array of string);
procedure cm_WordWrap(const {%H-}Params: array of string);
end;
procedure ShowEditor(const sFileName: String; WaitData: TWaitData = nil);
@ -252,8 +262,11 @@ uses
uLng, uShowMsg, uGlobs, fOptions, DCClassesUtf8, uAdministrator, uHighlighters,
uOSUtils, uConvEncoding, fOptionsToolsEditor, uDCUtils, uClipboard, uFindFiles,
DCOSUtils
{$if lcl_fullversion >= 4990000}
, SynEditWrappedView
{$endif}
{$IFDEF DARWIN}
, uDarwinApplication, uEarlyConfig
, uCocoaModernFormConfig
{$ENDIF}
;
@ -387,6 +400,21 @@ begin
Editor.RightEdge := gEditorSynEditRightEdge;
Editor.BlockIndent := gEditorSynEditBlockIndent;
Editor.VisibleSpecialChars:= gEditorSynEditSpecialChars;
{$if lcl_fullversion >= 4990000}
if gEditorWordWrap then
begin
if not (eoScrollPastEoL in gEditorSynEditOptions) then
begin
Editor.ScrollBars:= ssVertical;
end;
FSynEditWrap:= TLazSynEditLineWrapPlugin.Create(Editor)
end;
actWordWrap.Checked := gEditorWordWrap
{$else}
actWordWrap.Enabled:= False;
actWordWrap.Visible:= False;
miSeparator3.Visible:= False;
{$endif}
end;
procedure TfrmEditor.actExecute(Sender: TObject);
@ -653,7 +681,7 @@ begin
tbToolBar.SetButtonSize(gToolIconsSize + ScaleX(6, 96),
gToolIconsSize + ScaleY(6, 96));
{$IFDEF DARWIN}
if gModernUI and TDarwinApplicationUtil.supportsModernForm then
if TDCCocoaModernFormUtils.isEnabled then
tbToolBar.Hide;
{$ENDIF}
pmContextMenu.ImagesWidth:= gIconsInMenusSize;
@ -1122,6 +1150,32 @@ begin
self.DoZoomOut;
end;
procedure TfrmEditor.cm_WordWrap(const Params: array of string);
{$if lcl_fullversion >= 4990000}
var
TopLine: Integer;
{$endif}
begin
gEditorWordWrap:= not gEditorWordWrap;
actWordWrap.Checked:= gEditorWordWrap;
{$if lcl_fullversion >= 4990000}
TopLine:= Editor.TopLine;
if gEditorWordWrap then
begin
if not (eoScrollPastEoL in Editor.Options) then
begin
Editor.ScrollBars:= ssVertical;
end;
FSynEditWrap:= TLazSynEditLineWrapPlugin.Create(Editor)
end
else begin
FreeAndNil(FSynEditWrap);
Editor.ScrollBars:= ssBoth;
end;
Editor.TopLine:= TopLine;
{$endif}
end;
procedure TfrmEditor.frmEditorClose(Sender: TObject;
var CloseAction: TCloseAction);
begin

View file

@ -71,6 +71,7 @@ implementation
uses
Dialogs,
uGlobs, uDCUtils, uShowMsg, uLng, DCStrUtils,
uFileSourceProperty,
uFileSourceOperation,
uFileSystemFileSource,
uArchiveFileSourceUtil,
@ -161,7 +162,7 @@ begin
end
else
// if filesystem
if SourceFileSource.IsClass(TFileSystemFileSource) then
if fspDirectAccess in SourceFileSource.Properties then
begin
// if archives count > 1 then put to queue
if (Count > 1) and (QueueIdentifier = FreeOperationsQueueId) then

View file

@ -87,7 +87,7 @@ var
begin
Result:= False;
try
TempFileSource:= TTempFileSystemFileSource.GetFileSource;
TempFileSource:= TTempFileSystemFileSource.Create;
if bWithAll then
begin
FileName:= TempFileSource.FileSystemRoot + ExcludeFrontPathDelimiter(aFile.FullPath);

View file

@ -552,7 +552,7 @@ var
begin
isFileSystem := FFileSource.IsClass(TFileSystemFileSource);
Idx := PixMapManager.GetIconByFile(FFiles[iIndex], isFileSystem, True, sim_all_and_exe, True);
Idx := PixMapManager.GetIconByFile(FFiles[iIndex], isFileSystem, True, sim_all_and_exe);
if Idx < 0 then Idx:= PixMapManager.GetDefaultIcon(FFiles[iIndex]);
ABitmap:= PixMapManager.GetBitmap(Idx);
imgFileIcon.Picture.Bitmap := ABitmap;
@ -560,8 +560,8 @@ begin
with FFiles[iIndex] do
begin
lblFileName.Caption:= Name;
lblFile.Caption:= Name;
lblFileName.Caption:= FFileSource.GetFileName(FFiles[iIndex]);
lblFile.Caption:= lblFileName.Caption;
lblFolder.Caption:= Path;
if not (fpCreationTime in SupportedProperties) then

View file

@ -160,6 +160,7 @@ begin
TreeBuilder.ExcludeEmptyTemplateDirectories := Self.ExcludeEmptyTemplateDirectories;
TreeBuilder.BuildFromFiles(SourceFiles);
Self.SymLinkOption := TreeBuilder.SymLinkOption;
FSourceFilesTree := TreeBuilder.ReleaseTree;
FStatistics.TotalFiles := TreeBuilder.FilesCount;
FStatistics.TotalBytes := TreeBuilder.FilesSize;

Some files were not shown because too many files have changed in this diff Show more