summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--UConfig.pas4
-rw-r--r--ULocale.pas10
-rw-r--r--UMain.pas6
-rw-r--r--UPreferences.pas44
-rw-r--r--translations/UTranslation_CHS.pas94
-rw-r--r--translations/UTranslation_CHT.pas94
-rw-r--r--translations/UTranslation_CZ.pas48
-rw-r--r--translations/UTranslation_DE.pas49
-rw-r--r--translations/UTranslation_EN.pas49
-rw-r--r--translations/UTranslation_ES.pas49
-rw-r--r--translations/UTranslation_FR.pas49
-rw-r--r--translations/UTranslation_HU.pas49
-rw-r--r--translations/UTranslation_IT.pas48
-rw-r--r--translations/UTranslation_PL.pas49
-rw-r--r--translations/UTranslation_RU.pas49
-rw-r--r--translations/UTranslation_SR.pas48
-rw-r--r--translations/UTranslation_SV.pas48
-rw-r--r--translations/UTranslation_UA.pas48
18 files changed, 807 insertions, 28 deletions
diff --git a/UConfig.pas b/UConfig.pas
index 41f6256..59e0f46 100644
--- a/UConfig.pas
+++ b/UConfig.pas
@@ -25,8 +25,8 @@ uses Classes, ULocale;
resourcestring
ConstAppTitle = 'Tux Commander';
- ConstAboutVersion = '0.6.48-dev';
- ConstAboutBuildDate = '2008-09-05';
+ ConstAboutVersion = '0.6.49-dev';
+ ConstAboutBuildDate = '2008-09-08';
{$IFDEF FPC}
{$INCLUDE fpcver.inc}
diff --git a/ULocale.pas b/ULocale.pas
index 8ca927e..c314f5d 100644
--- a/ULocale.pas
+++ b/ULocale.pas
@@ -212,6 +212,16 @@ var LANGF2Button_Caption, LANGF3Button_Caption, LANGF4Button_Caption, LANGF5Butt
LANGFRunFromVFS_DateLabel, LANGFRunFromVFS_InfoLabel, LANGFRunFromVFS_OpensWithLabel, LANGFRunFromVFS_ExecuteButton,
LANGFRunFromVFS_ExecuteAllButton, LANGFSetPassword_Caption, LANGFSetPassword_Label1_Caption, LANGFSetPassword_Label2_Caption,
LANGFSetPassword_ShowPasswordCheckButton: string;
+
+ LANGCopyFileNamesToClipboard, LANGCopyFullPathNamesToClipboard, LANGCopyPathToClipboard, LANGPreferences_DateFormatLabel_Caption,
+ LANGPreferences_System, LANGPreferences_Custom, LANGPreferences_CustomDateFormatEntry_Tooltip, LANGPreferences_TimeFormatLabel_Caption,
+ LANGPreferences_CustomTimeFormatEntry_Tooltip, LANGPreferences_DateTimeFormatLabel_Caption, LANGPreferences_QuickRenameSkipExtCheckBox,
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip, LANGPreferences_SortDirectoriesLikeFilesCheckBox,
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip, LANGPreferences_QuickSearchLabel_Caption,
+ LANGPreferences_QuickSearchOptionMenu_Tooltip, LANGPreferences_QuickSearch_Option1, LANGPreferences_QuickSearch_Option2,
+ LANGPreferences_QuickSearch_Option3, LANGPreferences_QuickSearch_Option4, LANGPreferences_TempPathLabel_Caption,
+ LANGPreferences_VFSTempPathLabel_Caption, LANGPreferences_VFSTempPathEntry_Tooltip: string;
+
diff --git a/UMain.pas b/UMain.pas
index ffb4b39..89a5b2c 100644
--- a/UMain.pas
+++ b/UMain.pas
@@ -798,12 +798,12 @@ begin
mnuCommands.Add(miShowDirectorySizes);
mnuCommands.Add(TGTKMenuItem.CreateTyped(Self, itSeparator));
miCopyNames := TGTKMenuItem.CreateTyped(Self, itImageText);
- miCopyNames.Caption := '_Copy file names to clipboard';
+ miCopyNames.Caption := LANGCopyFileNamesToClipboard;
miCopyNames.ShortCuts.AddName('<Shift>F2');
miCopyNames.OnClick := miCopyNamesClick;
mnuCommands.Add(miCopyNames);
miCopyFullPaths := TGTKMenuItem.CreateTyped(Self, itImageText);
- miCopyFullPaths.Caption := 'Copy _full path names to clipboard';
+ miCopyFullPaths.Caption := LANGCopyFullPathNamesToClipboard;
miCopyFullPaths.ShortCuts.AddName('<Control>F2');
miCopyFullPaths.StockIcon := 'gtk-copy';
miCopyFullPaths.OnClick := miCopyNamesClick;
@@ -1020,7 +1020,7 @@ begin
PathBoxPopupMenu.Add(miPathBoxRefresh);
PathBoxPopupMenu.Add(TGTKMenuItem.CreateTyped(Self, itSeparator));
miPathBoxCopyPath := TGTKMenuItem.CreateTyped(Self, itImageText);
- miPathBoxCopyPath.Caption := '_Copy path to clipboard';
+ miPathBoxCopyPath.Caption := LANGCopyPathToClipboard;
miPathBoxCopyPath.StockIcon := 'gtk-copy';
miPathBoxCopyPath.OnClick := miPathBoxCopyPathClick;
PathBoxPopupMenu.Add(miPathBoxCopyPath);
diff --git a/UPreferences.pas b/UPreferences.pas
index 6a799d5..3d5d17d 100644
--- a/UPreferences.pas
+++ b/UPreferences.pas
@@ -256,13 +256,13 @@ begin
FormatTime := libc_time(nil);
DateFormatLabel := TGTKLabel.Create(Self);
- DateFormatLabel.Caption := 'Date _format:';
+ DateFormatLabel.Caption := LANGPreferences_DateFormatLabel_Caption;
DateFormatLabel.XAlign := 0;
DateFormatLabel.UseUnderline := True;
DateFormatOptionMenu := TGTKOptionMenu.Create(Self);
DateFormatLabel.FocusControl := DateFormatOptionMenu;
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := Format('%s (%s)', ['System', FormatDate(FormatTime, False, True, -1, 0, -1)]);
+ Item.Caption := Format('%s (%s)', [LANGPreferences_System, FormatDate(FormatTime, False, True, -1, 0, -1)]);
DateFormatOptionMenu.Items.Add(Item);
for i := 1 to 14 do begin
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
@@ -270,7 +270,7 @@ begin
DateFormatOptionMenu.Items.Add(Item);
end;
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'Custom...';
+ Item.Caption := LANGPreferences_Custom;
DateFormatOptionMenu.Items.Add(Item);
DateFormatOptionMenu.OnChanged := DateTimeFormatOptionMenuChanged;
Table2.AddControlEx(1, 9, 1, 1, DateFormatLabel, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 2);
@@ -278,18 +278,18 @@ begin
CustomDateFormatEntry := TGTKEntry.Create(Self);
CustomDateFormatEntry.Enabled := False;
- CustomDateFormatEntry.Tooltip := 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ CustomDateFormatEntry.Tooltip := LANGPreferences_CustomDateFormatEntry_Tooltip;
CustomDateFormatEntry.OnChanged := DateTimeFormatOptionMenuChanged;
Table2.AddControlEx(2, 10, 2, 1, CustomDateFormatEntry, [taoShrink], [taoShrink], 10, 2);
TimeFormatLabel := TGTKLabel.Create(Self);
- TimeFormatLabel.Caption := '_Time format:';
+ TimeFormatLabel.Caption := LANGPreferences_TimeFormatLabel_Caption;
TimeFormatLabel.XAlign := 0;
TimeFormatLabel.UseUnderline := True;
TimeFormatOptionMenu := TGTKOptionMenu.Create(Self);
TimeFormatLabel.FocusControl := TimeFormatOptionMenu;
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := Format('%s (%s)', ['System', FormatDate(FormatTime, True, False, 0, -1, -1)]);
+ Item.Caption := Format('%s (%s)', [LANGPreferences_System, FormatDate(FormatTime, True, False, 0, -1, -1)]);
TimeFormatOptionMenu.Items.Add(Item);
for i := 1 to 11 do begin
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
@@ -297,7 +297,7 @@ begin
TimeFormatOptionMenu.Items.Add(Item);
end;
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'Custom...';
+ Item.Caption := LANGPreferences_Custom;
TimeFormatOptionMenu.Items.Add(Item);
TimeFormatOptionMenu.OnChanged := DateTimeFormatOptionMenuChanged;
Table2.AddControlEx(1, 11, 1, 1, TimeFormatLabel, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 2);
@@ -305,12 +305,12 @@ begin
CustomTimeFormatEntry := TGTKEntry.Create(Self);
CustomTimeFormatEntry.Enabled := False;
- CustomTimeFormatEntry.Tooltip := 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ CustomTimeFormatEntry.Tooltip := LANGPreferences_CustomTimeFormatEntry_Tooltip;
CustomTimeFormatEntry.OnChanged := DateTimeFormatOptionMenuChanged;
Table2.AddControlEx(2, 12, 2, 1, CustomTimeFormatEntry, [taoShrink], [taoShrink], 10, 2);
DateTimeFormatLabel := TGTKLabel.Create(Self);
- DateTimeFormatLabel.Caption := 'Date/time _order:';
+ DateTimeFormatLabel.Caption := LANGPreferences_DateTimeFormatLabel_Caption;
DateTimeFormatLabel.XAlign := 0;
DateTimeFormatLabel.UseUnderline := True;
DateTimeFormatOptionMenu := TGTKOptionMenu.Create(Self);
@@ -342,14 +342,14 @@ begin
DisableMouseRename := TGTKCheckButton.CreateWithLabel(Self, LANGPreferences_DisableMouseRenaming);
DisableMouseRename.Tooltip := LANGPreferencesDisableMouseRename_Tooltip;
Table5.AddControl(0, 0, 2, 1, DisableMouseRename, 30, 2);
- QuickRenameSkipExtCheckBox := TGTKCheckButton.CreateWithLabel(Self, 'Select name part only on quick-rename');
- QuickRenameSkipExtCheckBox.Tooltip := 'Exclude filename extension from the selection when doing quick-rename';
+ QuickRenameSkipExtCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGPreferences_QuickRenameSkipExtCheckBox);
+ QuickRenameSkipExtCheckBox.Tooltip := LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip;
Table5.AddControl(0, 1, 2, 1, QuickRenameSkipExtCheckBox, 30, 2);
DisableFileTipsCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGPreferencesDisableFileTipsCheckBox_Caption);
DisableFileTipsCheckBox.Tooltip := LANGPreferencesDisableFileTipsCheckBox_Tooltip;
Table5.AddControl(0, 2, 2, 1, DisableFileTipsCheckBox, 30, 2);
- SortDirectoriesLikeFilesCheckBox := TGTKCheckButton.CreateWithLabel(Self, 'Sort directories lik_e files');
- SortDirectoriesLikeFilesCheckBox.Tooltip := 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ SortDirectoriesLikeFilesCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGPreferences_SortDirectoriesLikeFilesCheckBox);
+ SortDirectoriesLikeFilesCheckBox.Tooltip := LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
Table5.AddControl(0, 3, 2, 1, SortDirectoriesLikeFilesCheckBox, 30, 2);
Table5.AddControl(0, 4, 2, 1, TGTKVBox.Create(Self), 0, 7);
@@ -389,23 +389,23 @@ begin
Table5.AddControl(0, 15, 2, 1, SpaceMovesDownCheckBox, 30, 2);
QuickSearchLabel := TGTKLabel.Create(Self);
- QuickSearchLabel.Caption := 'Quick search _keystroke:';
+ QuickSearchLabel.Caption := LANGPreferences_QuickSearchLabel_Caption;
QuickSearchLabel.XAlign := 0;
QuickSearchLabel.UseUnderline := True;
QuickSearchOptionMenu := TGTKOptionMenu.Create(Self);
- QuickSearchOptionMenu.Tooltip := 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ QuickSearchOptionMenu.Tooltip := LANGPreferences_QuickSearchOptionMenu_Tooltip;
QuickSearchLabel.FocusControl := QuickSearchOptionMenu;
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'Ctrl+S/Alt+S and "/" only';
+ Item.Caption := LANGPreferences_QuickSearch_Option1;
QuickSearchOptionMenu.Items.Add(Item);
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'Ctrl+Alt+letters';
+ Item.Caption := LANGPreferences_QuickSearch_Option2;
QuickSearchOptionMenu.Items.Add(Item);
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'Alt+letters';
+ Item.Caption := LANGPreferences_QuickSearch_Option3;
QuickSearchOptionMenu.Items.Add(Item);
Item := TGTKMenuItem.CreateTyped(Self, itLabel);
- Item.Caption := 'letters directly';
+ Item.Caption := LANGPreferences_QuickSearch_Option4;
QuickSearchOptionMenu.Items.Add(Item);
Table5.AddControl(0, 16, 2, 1, TGTKVBox.Create(Self), 0, 2);
Table5.AddControlEx(0, 17, 1, 1, QuickSearchLabel, [taoShrink], [taoShrink], 35, 2);
@@ -524,18 +524,18 @@ begin
TempPathLabel := TGTKLabel.Create(Self);
TempPathLabel.XAlign := 0;
TempPathLabel.XPadding := 10;
- TempPathLabel.Caption := Format('<span weight="ultrabold">%s</span>', ['Temporary files']);
+ TempPathLabel.Caption := Format('<span weight="ultrabold">%s</span>', [LANGPreferences_TempPathLabel_Caption]);
TempPathLabel.UseMarkup := True;
Table1.AddControlEx(0, 15, 5, 1, TGTKVBox.Create(Self), [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 13);
Table1.AddControlEx(0, 16, 5, 1, TempPathLabel, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 0);
Table1.AddControlEx(0, 17, 5, 1, TGTKVBox.Create(Self), [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 2);
VFSTempPathLabel := TGTKLabel.Create(Self);
- VFSTempPathLabel.Caption := '_VFS temp files:';
+ VFSTempPathLabel.Caption := LANGPreferences_VFSTempPathLabel_Caption;
VFSTempPathLabel.XAlign := 0;
VFSTempPathLabel.UseUnderline := True;
VFSTempPathEntry := TGTKEntry.Create(Self);
- VFSTempPathEntry.Tooltip := 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+ VFSTempPathEntry.Tooltip := LANGPreferences_VFSTempPathEntry_Tooltip;
VFSTempPathLabel.FocusControl := VFSTempPathEntry;
Table1.AddControlEx(0, 18, 1, 1, TGTKVBox.Create(Self), [taoShrink], [taoShrink, taoExpand, taoFill], 12, 2);
Table1.AddControlEx(1, 18, 1, 1, VFSTempPathLabel, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 0, 2);
diff --git a/translations/UTranslation_CHS.pas b/translations/UTranslation_CHS.pas
index 1db94fd..9a63deb 100644
--- a/translations/UTranslation_CHS.pas
+++ b/translations/UTranslation_CHS.pas
@@ -622,6 +622,54 @@ const LANGchsF2Button_Caption = 'F2 - 重命名';
LANGchsCommandEntry_Tooltip = '使用 %s 作为文件/目录的占位符';
LANGchsmiFiles_Caption = '仅文件';
+ (*************** STRINGS ADDED TO v0.6.31 **********************************************************************************)
+ LANGchsPasswordButton_Tooltip = 'Archive requires password.'#10'Click to set';
+ LANGchsHandleRunFromArchive_Bytes = 'bytes';
+ LANGchsHandleRunFromArchive_FileTypeDesc_Unknown = '(unknown)';
+ LANGchsHandleRunFromArchive_NotAssociated = '(not associated)';
+ LANGchsHandleRunFromArchive_SelfExecutable = '(self-executable)';
+ LANGchsHandleRunFromArchive_CouldntCreateTemporaryDirectory = 'Couldn''t create temporary directory "%s": %s.'#10#10'Please check the temporary directory settings and try it again.';
+ LANGchsFRunFromVFS_Caption = 'Packed file properties';
+ LANGchsFRunFromVFS_TitleLabel = 'File Properties';
+ LANGchsFRunFromVFS_FileNameLabel = 'File name:';
+ LANGchsFRunFromVFS_FileTypeLabel = 'File type:';
+ LANGchsFRunFromVFS_SizeLabel = 'Size:';
+ LANGchsFRunFromVFS_PackedSizeLabel = 'Compressed size:';
+ LANGchsFRunFromVFS_DateLabel = 'Modify date:';
+ LANGchsFRunFromVFS_InfoLabel = 'Opening files directly from archives is not supported. By clicking the buttons below the file (all files respectively) will be extracted to a temporary location. Temporary files will be deleted when you close Tux Commander.';
+ LANGchsFRunFromVFS_OpensWithLabel = 'Open with:';
+ LANGchsFRunFromVFS_ExecuteButton = 'E_xtract and open';
+ LANGchsFRunFromVFS_ExecuteAllButton = 'Extract _all and open';
+ LANGchsFSetPassword_Caption = 'Set password';
+ LANGchsFSetPassword_Label1_Caption = 'Password required';
+ LANGchsFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
+ LANGchsFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGchsCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGchsCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGchsCopyPathToClipboard = '_Copy path to clipboard';
+ LANGchsPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGchsPreferences_System = 'System';
+ LANGchsPreferences_Custom = 'Custom...';
+ LANGchsPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGchsPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGchsPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGchsPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGchsPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGchsPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGchsPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGchsPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGchsPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGchsPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGchsPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGchsPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGchsPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGchsPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGchsPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGchsPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGchsPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
@@ -1208,6 +1256,52 @@ begin
LANGFilePopupMenu_Properties := LANGchsFilePopupMenu_Properties;
LANGCommandEntry_Tooltip := LANGchsCommandEntry_Tooltip;
LANGmiFiles_Caption := LANGchsmiFiles_Caption;
+
+ LANGPasswordButton_Tooltip := LANGchsPasswordButton_Tooltip;
+ LANGHandleRunFromArchive_Bytes := LANGchsHandleRunFromArchive_Bytes;
+ LANGHandleRunFromArchive_FileTypeDesc_Unknown := LANGchsHandleRunFromArchive_FileTypeDesc_Unknown;
+ LANGHandleRunFromArchive_NotAssociated := LANGchsHandleRunFromArchive_NotAssociated;
+ LANGHandleRunFromArchive_SelfExecutable := LANGchsHandleRunFromArchive_SelfExecutable;
+ LANGHandleRunFromArchive_CouldntCreateTemporaryDirectory := LANGchsHandleRunFromArchive_CouldntCreateTemporaryDirectory;
+ LANGFRunFromVFS_Caption := LANGchsFRunFromVFS_Caption;
+ LANGFRunFromVFS_TitleLabel := LANGchsFRunFromVFS_TitleLabel;
+ LANGFRunFromVFS_FileNameLabel := LANGchsFRunFromVFS_FileNameLabel;
+ LANGFRunFromVFS_FileTypeLabel := LANGchsFRunFromVFS_FileTypeLabel;
+ LANGFRunFromVFS_SizeLabel := LANGchsFRunFromVFS_SizeLabel;
+ LANGFRunFromVFS_PackedSizeLabel := LANGchsFRunFromVFS_PackedSizeLabel;
+ LANGFRunFromVFS_DateLabel := LANGchsFRunFromVFS_DateLabel;
+ LANGFRunFromVFS_InfoLabel := LANGchsFRunFromVFS_InfoLabel;
+ LANGFRunFromVFS_OpensWithLabel := LANGchsFRunFromVFS_OpensWithLabel;
+ LANGFRunFromVFS_ExecuteButton := LANGchsFRunFromVFS_ExecuteButton;
+ LANGFRunFromVFS_ExecuteAllButton := LANGchsFRunFromVFS_ExecuteAllButton;
+ LANGFSetPassword_Caption := LANGchsFSetPassword_Caption;
+ LANGFSetPassword_Label1_Caption := LANGchsFSetPassword_Label1_Caption;
+ LANGFSetPassword_Label2_Caption := LANGchsFSetPassword_Label2_Caption;
+ LANGFSetPassword_ShowPasswordCheckButton := LANGchsFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGchsCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGchsCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGchsCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGchsPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGchsPreferences_System;
+ LANGPreferences_Custom := LANGchsPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGchsPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGchsPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGchsPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGchsPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGchsPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGchsPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGchsPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGchsPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGchsPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGchsPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGchsPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGchsPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGchsPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGchsPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGchsPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGchsPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGchsPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_CHT.pas b/translations/UTranslation_CHT.pas
index 5d9ece2..a114993 100644
--- a/translations/UTranslation_CHT.pas
+++ b/translations/UTranslation_CHT.pas
@@ -622,6 +622,53 @@ const LANGchtF2Button_Caption = 'F2 - ㏑';
LANGchtCommandEntry_Tooltip = 'ㄏノ %s ゅン/ヘ魁才';
LANGchtmiFiles_Caption = '度ゅン';
+ (*************** STRINGS ADDED TO v0.6.31 **********************************************************************************)
+ LANGchtPasswordButton_Tooltip = 'Archive requires password.'#10'Click to set';
+ LANGchtHandleRunFromArchive_Bytes = 'bytes';
+ LANGchtHandleRunFromArchive_FileTypeDesc_Unknown = '(unknown)';
+ LANGchtHandleRunFromArchive_NotAssociated = '(not associated)';
+ LANGchtHandleRunFromArchive_SelfExecutable = '(self-executable)';
+ LANGchtHandleRunFromArchive_CouldntCreateTemporaryDirectory = 'Couldn''t create temporary directory "%s": %s.'#10#10'Please check the temporary directory settings and try it again.';
+ LANGchtFRunFromVFS_Caption = 'Packed file properties';
+ LANGchtFRunFromVFS_TitleLabel = 'File Properties';
+ LANGchtFRunFromVFS_FileNameLabel = 'File name:';
+ LANGchtFRunFromVFS_FileTypeLabel = 'File type:';
+ LANGchtFRunFromVFS_SizeLabel = 'Size:';
+ LANGchtFRunFromVFS_PackedSizeLabel = 'Compressed size:';
+ LANGchtFRunFromVFS_DateLabel = 'Modify date:';
+ LANGchtFRunFromVFS_InfoLabel = 'Opening files directly from archives is not supported. By clicking the buttons below the file (all files respectively) will be extracted to a temporary location. Temporary files will be deleted when you close Tux Commander.';
+ LANGchtFRunFromVFS_OpensWithLabel = 'Open with:';
+ LANGchtFRunFromVFS_ExecuteButton = 'E_xtract and open';
+ LANGchtFRunFromVFS_ExecuteAllButton = 'Extract _all and open';
+ LANGchtFSetPassword_Caption = 'Set password';
+ LANGchtFSetPassword_Label1_Caption = 'Password required';
+ LANGchtFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
+ LANGchtFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGchtCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGchtCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGchtCopyPathToClipboard = '_Copy path to clipboard';
+ LANGchtPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGchtPreferences_System = 'System';
+ LANGchtPreferences_Custom = 'Custom...';
+ LANGchtPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGchtPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGchtPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGchtPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGchtPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGchtPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGchtPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGchtPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGchtPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGchtPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGchtPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGchtPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGchtPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGchtPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGchtPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGchtPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGchtPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
(********************************************************************************************************************************)
@@ -1208,11 +1255,56 @@ begin
LANGFilePopupMenu_Properties := LANGchtFilePopupMenu_Properties;
LANGCommandEntry_Tooltip := LANGchtCommandEntry_Tooltip;
LANGmiFiles_Caption := LANGchtmiFiles_Caption;
+
+ LANGPasswordButton_Tooltip := LANGchtPasswordButton_Tooltip;
+ LANGHandleRunFromArchive_Bytes := LANGchtHandleRunFromArchive_Bytes;
+ LANGHandleRunFromArchive_FileTypeDesc_Unknown := LANGchtHandleRunFromArchive_FileTypeDesc_Unknown;
+ LANGHandleRunFromArchive_NotAssociated := LANGchtHandleRunFromArchive_NotAssociated;
+ LANGHandleRunFromArchive_SelfExecutable := LANGchtHandleRunFromArchive_SelfExecutable;
+ LANGHandleRunFromArchive_CouldntCreateTemporaryDirectory := LANGchtHandleRunFromArchive_CouldntCreateTemporaryDirectory;
+ LANGFRunFromVFS_Caption := LANGchtFRunFromVFS_Caption;
+ LANGFRunFromVFS_TitleLabel := LANGchtFRunFromVFS_TitleLabel;
+ LANGFRunFromVFS_FileNameLabel := LANGchtFRunFromVFS_FileNameLabel;
+ LANGFRunFromVFS_FileTypeLabel := LANGchtFRunFromVFS_FileTypeLabel;
+ LANGFRunFromVFS_SizeLabel := LANGchtFRunFromVFS_SizeLabel;
+ LANGFRunFromVFS_PackedSizeLabel := LANGchtFRunFromVFS_PackedSizeLabel;
+ LANGFRunFromVFS_DateLabel := LANGchtFRunFromVFS_DateLabel;
+ LANGFRunFromVFS_InfoLabel := LANGchtFRunFromVFS_InfoLabel;
+ LANGFRunFromVFS_OpensWithLabel := LANGchtFRunFromVFS_OpensWithLabel;
+ LANGFRunFromVFS_ExecuteButton := LANGchtFRunFromVFS_ExecuteButton;
+ LANGFRunFromVFS_ExecuteAllButton := LANGchtFRunFromVFS_ExecuteAllButton;
+ LANGFSetPassword_Caption := LANGchtFSetPassword_Caption;
+ LANGFSetPassword_Label1_Caption := LANGchtFSetPassword_Label1_Caption;
+ LANGFSetPassword_Label2_Caption := LANGchtFSetPassword_Label2_Caption;
+ LANGFSetPassword_ShowPasswordCheckButton := LANGchtFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGchtCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGchtCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGchtCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGchtPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGchtPreferences_System;
+ LANGPreferences_Custom := LANGchtPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGchtPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGchtPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGchtPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGchtPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGchtPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGchtPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGchtPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGchtPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGchtPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGchtPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGchtPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGchtPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGchtPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGchtPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGchtPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGchtPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGchtPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
AddTranslation('ZH', @SetTranslation);
AddTranslation('TW', @SetTranslation);
AddTranslation('zh_TW', @SetTranslation);
-// AddTranslation('C', @SetTranslation); // Please don't add this line to your translations, it is default "C" locale (of course English)
end.
diff --git a/translations/UTranslation_CZ.pas b/translations/UTranslation_CZ.pas
index cbaf654..818e332 100644
--- a/translations/UTranslation_CZ.pas
+++ b/translations/UTranslation_CZ.pas
@@ -638,6 +638,30 @@ const LANGcsF2Button_Caption = 'F2 - Přejmenovat';
LANGcsFSetPassword_Label2_Caption = 'Pro přístup a práci s obsahem archívu je potřeba zadat heslo';
LANGcsFSetPassword_ShowPasswordCheckButton = 'Od_krýt heslo';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGcsCopyFileNamesToClipboard = 'Zkopírovat jmé_na souborů do schránky';
+ LANGcsCopyFullPathNamesToClipboard = 'Zkopírovat _absolutní cesty do schránky';
+ LANGcsCopyPathToClipboard = 'Zkopírovat _cestu do schránky';
+ LANGcsPreferences_DateFormatLabel_Caption = '_Formát data:';
+ LANGcsPreferences_System = 'Systémový';
+ LANGcsPreferences_Custom = 'Vlastní...';
+ LANGcsPreferences_CustomDateFormatEntry_Tooltip = 'Zadejte prosím vlastní formát data.'#10'Formátovací značky lze nalézt v manuálové stránce "man strftime".';
+ LANGcsPreferences_TimeFormatLabel_Caption = 'Formát čas_u:';
+ LANGcsPreferences_CustomTimeFormatEntry_Tooltip = 'Zadejte prosím vlastní formát času.'#10'Formátovací značky lze nalézt v manuálové stránce "man strftime".';
+ LANGcsPreferences_DateTimeFormatLabel_Caption = '_Pořadí data a času:';
+ LANGcsPreferences_QuickRenameSkipExtCheckBox = 'Přej_menování bez koncovky souboru';
+ LANGcsPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Nezahrnovat do výběru koncovku souboru při přejmenovávání';
+ LANGcsPreferences_SortDirectoriesLikeFilesCheckBox = 'Řadit adresáře po_dle souborů';
+ LANGcsPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Je-li tato volba aktivní, budou adresáře řazeny stejně jako soubory. Adresáře se zobrazují vždy na začátku seznamu.'#10'Volba neaktivní: adresáře budou řazeny vždy podle jména.';
+ LANGcsPreferences_QuickSearchLabel_Caption = 'Klávesy _rychlého vyhledávání:';
+ LANGcsPreferences_QuickSearchOptionMenu_Tooltip = 'Klávesové zkratky Ctrl+S/Alt+S a "/" jsou aktivní vždy, nezávisle na dalším nastavení.';
+ LANGcsPreferences_QuickSearch_Option1 = 'Jen Ctrl+S/Alt+S a "/"';
+ LANGcsPreferences_QuickSearch_Option2 = 'Ctrl+Alt+písmena';
+ LANGcsPreferences_QuickSearch_Option3 = 'Alt+písmena';
+ LANGcsPreferences_QuickSearch_Option4 = 'přímo písmena';
+ LANGcsPreferences_TempPathLabel_Caption = 'Dočasné soubory';
+ LANGcsPreferences_VFSTempPathLabel_Caption = '_VFS subsystém:';
+ LANGcsPreferences_VFSTempPathEntry_Tooltip = 'Umístění dočasných souborů VFS subsystému, použitých např. při otevírání souborů přímo z archívu. Všechny dočasné soubory budou odstraněny při ukončení aplikace.';
@@ -1247,6 +1271,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGcsFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGcsFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGcsFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGcsCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGcsCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGcsCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGcsPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGcsPreferences_System;
+ LANGPreferences_Custom := LANGcsPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGcsPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGcsPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGcsPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGcsPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGcsPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGcsPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGcsPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGcsPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGcsPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGcsPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGcsPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGcsPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGcsPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGcsPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGcsPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGcsPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGcsPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_DE.pas b/translations/UTranslation_DE.pas
index d18736d..828c731 100644
--- a/translations/UTranslation_DE.pas
+++ b/translations/UTranslation_DE.pas
@@ -617,6 +617,31 @@ const LANGdeF2Button_Caption = 'F2 - Umbenennen';
LANGdeFSetPassword_Label2_Caption = 'Das Archiv ist verschlüsselt und benötigt ein Passwort, um die Dateien entpacken zu können';
LANGdeFSetPassword_ShowPasswordCheckButton = 'De_maskiere das Passwort';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGdeCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGdeCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGdeCopyPathToClipboard = '_Copy path to clipboard';
+ LANGdePreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGdePreferences_System = 'System';
+ LANGdePreferences_Custom = 'Custom...';
+ LANGdePreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGdePreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGdePreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGdePreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGdePreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGdePreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGdePreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGdePreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGdePreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGdePreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGdePreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGdePreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGdePreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGdePreferences_QuickSearch_Option4 = 'letters directly';
+ LANGdePreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGdePreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGdePreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1225,6 +1250,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGdeFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGdeFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGdeFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGdeCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGdeCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGdeCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGdePreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGdePreferences_System;
+ LANGPreferences_Custom := LANGdePreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGdePreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGdePreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGdePreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGdePreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGdePreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGdePreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGdePreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGdePreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGdePreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGdePreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGdePreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGdePreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGdePreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGdePreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGdePreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGdePreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGdePreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_EN.pas b/translations/UTranslation_EN.pas
index fa31434..8d067ae 100644
--- a/translations/UTranslation_EN.pas
+++ b/translations/UTranslation_EN.pas
@@ -648,6 +648,31 @@ const LANGenF2Button_Caption = 'F2 - Rename';
LANGenFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGenFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGenCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGenCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGenCopyPathToClipboard = '_Copy path to clipboard';
+ LANGenPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGenPreferences_System = 'System';
+ LANGenPreferences_Custom = 'Custom...';
+ LANGenPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGenPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGenPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGenPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGenPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGenPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGenPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGenPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGenPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGenPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGenPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGenPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGenPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGenPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGenPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGenPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGenPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
@@ -1257,6 +1282,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGenFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGenFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGenFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGenCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGenCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGenCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGenPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGenPreferences_System;
+ LANGPreferences_Custom := LANGenPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGenPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGenPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGenPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGenPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGenPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGenPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGenPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGenPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGenPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGenPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGenPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGenPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGenPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGenPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGenPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGenPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGenPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_ES.pas b/translations/UTranslation_ES.pas
index 72d7b8d..ecf40b5 100644
--- a/translations/UTranslation_ES.pas
+++ b/translations/UTranslation_ES.pas
@@ -637,6 +637,31 @@ const LANGesF2Button_Caption = 'F2 - Renombrar';
LANGesFSetPassword_Label2_Caption = 'El archivo esta encriptado y necesita de una contraseña para poder extraer la información';
LANGesFSetPassword_ShowPasswordCheckButton = '_Mostrar contraseña';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGesCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGesCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGesCopyPathToClipboard = '_Copy path to clipboard';
+ LANGesPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGesPreferences_System = 'System';
+ LANGesPreferences_Custom = 'Custom...';
+ LANGesPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGesPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGesPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGesPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGesPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGesPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGesPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGesPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGesPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGesPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGesPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGesPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGesPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGesPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGesPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGesPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGesPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1244,6 +1269,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGesFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGesFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGesFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGesCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGesCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGesCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGesPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGesPreferences_System;
+ LANGPreferences_Custom := LANGesPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGesPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGesPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGesPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGesPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGesPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGesPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGesPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGesPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGesPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGesPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGesPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGesPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGesPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGesPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGesPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGesPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGesPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_FR.pas b/translations/UTranslation_FR.pas
index 46051b4..35e4b3f 100644
--- a/translations/UTranslation_FR.pas
+++ b/translations/UTranslation_FR.pas
@@ -638,6 +638,31 @@ const LANGfrF2Button_Caption = 'F2 - Renommer';
LANGfrFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGfrFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGfrCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGfrCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGfrCopyPathToClipboard = '_Copy path to clipboard';
+ LANGfrPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGfrPreferences_System = 'System';
+ LANGfrPreferences_Custom = 'Custom...';
+ LANGfrPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGfrPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGfrPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGfrPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGfrPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGfrPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGfrPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGfrPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGfrPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGfrPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGfrPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGfrPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGfrPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGfrPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGfrPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGfrPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGfrPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
@@ -1246,6 +1271,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGfrFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGfrFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGfrFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGfrCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGfrCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGfrCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGfrPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGfrPreferences_System;
+ LANGPreferences_Custom := LANGfrPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGfrPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGfrPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGfrPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGfrPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGfrPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGfrPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGfrPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGfrPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGfrPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGfrPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGfrPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGfrPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGfrPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGfrPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGfrPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGfrPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGfrPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_HU.pas b/translations/UTranslation_HU.pas
index a9a72cc..2e6c79a 100644
--- a/translations/UTranslation_HU.pas
+++ b/translations/UTranslation_HU.pas
@@ -640,6 +640,31 @@ const LANGhuF2Button_Caption = 'F2 - Átnevezés';
LANGhuFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGhuFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGhuCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGhuCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGhuCopyPathToClipboard = '_Copy path to clipboard';
+ LANGhuPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGhuPreferences_System = 'System';
+ LANGhuPreferences_Custom = 'Custom...';
+ LANGhuPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGhuPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGhuPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGhuPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGhuPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGhuPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGhuPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGhuPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGhuPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGhuPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGhuPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGhuPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGhuPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGhuPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGhuPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGhuPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGhuPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1247,6 +1272,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGhuFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGhuFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGhuFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGhuCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGhuCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGhuCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGhuPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGhuPreferences_System;
+ LANGPreferences_Custom := LANGhuPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGhuPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGhuPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGhuPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGhuPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGhuPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGhuPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGhuPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGhuPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGhuPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGhuPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGhuPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGhuPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGhuPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGhuPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGhuPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGhuPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGhuPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_IT.pas b/translations/UTranslation_IT.pas
index ad84365..d3c2b9b 100644
--- a/translations/UTranslation_IT.pas
+++ b/translations/UTranslation_IT.pas
@@ -638,6 +638,30 @@ const LANGitF2Button_Caption = 'F2 - Rinomina';
LANGitFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGitFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGitCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGitCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGitCopyPathToClipboard = '_Copy path to clipboard';
+ LANGitPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGitPreferences_System = 'System';
+ LANGitPreferences_Custom = 'Custom...';
+ LANGitPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGitPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGitPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGitPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGitPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGitPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGitPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGitPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGitPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGitPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGitPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGitPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGitPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGitPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGitPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGitPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGitPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
@@ -1247,6 +1271,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGitFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGitFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGitFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGitCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGitCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGitCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGitPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGitPreferences_System;
+ LANGPreferences_Custom := LANGitPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGitPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGitPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGitPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGitPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGitPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGitPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGitPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGitPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGitPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGitPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGitPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGitPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGitPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGitPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGitPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGitPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGitPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_PL.pas b/translations/UTranslation_PL.pas
index df29a28..62e637e 100644
--- a/translations/UTranslation_PL.pas
+++ b/translations/UTranslation_PL.pas
@@ -565,6 +565,31 @@ const LANGplF2Button_Caption = 'F2 - Zmień nazwę';
LANGplFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGplFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGplCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGplCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGplCopyPathToClipboard = '_Copy path to clipboard';
+ LANGplPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGplPreferences_System = 'System';
+ LANGplPreferences_Custom = 'Custom...';
+ LANGplPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGplPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGplPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGplPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGplPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGplPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGplPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGplPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGplPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGplPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGplPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGplPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGplPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGplPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGplPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGplPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGplPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************)
procedure SetTranslation;
@@ -1100,6 +1125,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGplFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGplFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGplFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGplCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGplCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGplCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGplPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGplPreferences_System;
+ LANGPreferences_Custom := LANGplPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGplPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGplPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGplPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGplPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGplPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGplPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGplPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGplPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGplPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGplPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGplPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGplPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGplPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGplPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGplPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGplPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGplPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_RU.pas b/translations/UTranslation_RU.pas
index 0455466..8462229 100644
--- a/translations/UTranslation_RU.pas
+++ b/translations/UTranslation_RU.pas
@@ -638,6 +638,31 @@ const LANGruF2Button_Caption = 'F2 - Переименов';
LANGruFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGruFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGruCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGruCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGruCopyPathToClipboard = '_Copy path to clipboard';
+ LANGruPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGruPreferences_System = 'System';
+ LANGruPreferences_Custom = 'Custom...';
+ LANGruPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGruPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGruPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGruPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGruPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGruPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGruPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGruPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGruPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGruPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGruPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGruPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGruPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGruPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGruPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGruPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGruPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
+
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1245,6 +1270,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGruFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGruFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGruFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGruCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGruCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGruCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGruPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGruPreferences_System;
+ LANGPreferences_Custom := LANGruPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGruPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGruPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGruPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGruPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGruPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGruPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGruPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGruPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGruPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGruPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGruPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGruPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGruPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGruPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGruPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGruPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGruPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_SR.pas b/translations/UTranslation_SR.pas
index b6c9328..59a8752 100644
--- a/translations/UTranslation_SR.pas
+++ b/translations/UTranslation_SR.pas
@@ -645,6 +645,30 @@ const LANGsrF2Button_Caption = 'F2 - Преименуј';
LANGsrFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGsrFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGsrCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGsrCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGsrCopyPathToClipboard = '_Copy path to clipboard';
+ LANGsrPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGsrPreferences_System = 'System';
+ LANGsrPreferences_Custom = 'Custom...';
+ LANGsrPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGsrPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGsrPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGsrPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGsrPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGsrPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGsrPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGsrPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGsrPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGsrPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGsrPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGsrPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGsrPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGsrPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGsrPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGsrPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGsrPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1252,6 +1276,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGsrFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGsrFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGsrFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGsrCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGsrCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGsrCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGsrPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGsrPreferences_System;
+ LANGPreferences_Custom := LANGsrPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGsrPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGsrPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGsrPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGsrPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGsrPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGsrPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGsrPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGsrPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGsrPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGsrPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGsrPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGsrPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGsrPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGsrPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGsrPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGsrPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGsrPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_SV.pas b/translations/UTranslation_SV.pas
index d11ebcf..a51f293 100644
--- a/translations/UTranslation_SV.pas
+++ b/translations/UTranslation_SV.pas
@@ -637,6 +637,30 @@ const LANGsvF2Button_Caption = 'F2 - Byt namn';
LANGsvFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGsvFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGsvCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGsvCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGsvCopyPathToClipboard = '_Copy path to clipboard';
+ LANGsvPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGsvPreferences_System = 'System';
+ LANGsvPreferences_Custom = 'Custom...';
+ LANGsvPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGsvPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGsvPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGsvPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGsvPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGsvPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGsvPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGsvPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGsvPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGsvPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGsvPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGsvPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGsvPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGsvPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGsvPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGsvPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGsvPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
(********************************************************************************************************************************)
procedure SetTranslation;
@@ -1244,6 +1268,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGsvFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGsvFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGsvFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGsvCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGsvCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGsvCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGsvPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGsvPreferences_System;
+ LANGPreferences_Custom := LANGsvPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGsvPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGsvPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGsvPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGsvPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGsvPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGsvPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGsvPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGsvPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGsvPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGsvPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGsvPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGsvPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGsvPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGsvPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGsvPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGsvPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGsvPreferences_VFSTempPathEntry_Tooltip;
end;
initialization
diff --git a/translations/UTranslation_UA.pas b/translations/UTranslation_UA.pas
index bbd2ad7..cb2396a 100644
--- a/translations/UTranslation_UA.pas
+++ b/translations/UTranslation_UA.pas
@@ -647,6 +647,30 @@ const LANGuaF2Button_Caption = 'F2 - Перейменувати';
LANGuaFSetPassword_Label2_Caption = 'Архів зашифровано і необхідний пароль для того щоб розпакувати дані';
LANGuaFSetPassword_ShowPasswordCheckButton = '_Зняти маскування пароля';
+ (*************** STRINGS ADDED TO v0.6.48 **********************************************************************************)
+ LANGuaCopyFileNamesToClipboard = '_Copy file names to clipboard';
+ LANGuaCopyFullPathNamesToClipboard = 'Copy _full path names to clipboard';
+ LANGuaCopyPathToClipboard = '_Copy path to clipboard';
+ LANGuaPreferences_DateFormatLabel_Caption = 'Date _format:';
+ LANGuaPreferences_System = 'System';
+ LANGuaPreferences_Custom = 'Custom...';
+ LANGuaPreferences_CustomDateFormatEntry_Tooltip = 'Enter custom date format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGuaPreferences_TimeFormatLabel_Caption = '_Time format:';
+ LANGuaPreferences_CustomTimeFormatEntry_Tooltip = 'Enter custom time format string.'#10'Please see "man strftime" for syntax reference.';
+ LANGuaPreferences_DateTimeFormatLabel_Caption = 'Date/time _order:';
+ LANGuaPreferences_QuickRenameSkipExtCheckBox = 'Select name part only on quick-rename';
+ LANGuaPreferences_QuickRenameSkipExtCheckBox_Tooltip = 'Exclude filename extension from the selection when doing quick-rename';
+ LANGuaPreferences_SortDirectoriesLikeFilesCheckBox = 'Sort directories lik_e files';
+ LANGuaPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = 'Check this to allow sorting directories along with files. Directories are always first in the list.'#10'Unchecked: directories are always sorted by name.';
+ LANGuaPreferences_QuickSearchLabel_Caption = 'Quick search _keystroke:';
+ LANGuaPreferences_QuickSearchOptionMenu_Tooltip = 'The Ctrl+S/Alt+S and "/" keystrokes are always active, regardless on this setting.';
+ LANGuaPreferences_QuickSearch_Option1 = 'Ctrl+S/Alt+S and "/" only';
+ LANGuaPreferences_QuickSearch_Option2 = 'Ctrl+Alt+letters';
+ LANGuaPreferences_QuickSearch_Option3 = 'Alt+letters';
+ LANGuaPreferences_QuickSearch_Option4 = 'letters directly';
+ LANGuaPreferences_TempPathLabel_Caption = 'Temporary files';
+ LANGuaPreferences_VFSTempPathLabel_Caption = '_VFS temp files:';
+ LANGuaPreferences_VFSTempPathEntry_Tooltip = 'Location of temporary files used by VFS subsystem, e.g. when opening files directly from archives. All temporary files are cleaned on exit.';
(********************************************************************************************************************************)
@@ -1255,6 +1279,30 @@ begin
LANGFSetPassword_Label1_Caption := LANGuaFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGuaFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGuaFSetPassword_ShowPasswordCheckButton;
+
+ LANGCopyFileNamesToClipboard := LANGuaCopyFileNamesToClipboard;
+ LANGCopyFullPathNamesToClipboard := LANGuaCopyFullPathNamesToClipboard;
+ LANGCopyPathToClipboard := LANGuaCopyPathToClipboard;
+ LANGPreferences_DateFormatLabel_Caption := LANGuaPreferences_DateFormatLabel_Caption;
+ LANGPreferences_System := LANGuaPreferences_System;
+ LANGPreferences_Custom := LANGuaPreferences_Custom;
+ LANGPreferences_CustomDateFormatEntry_Tooltip := LANGuaPreferences_CustomDateFormatEntry_Tooltip;
+ LANGPreferences_TimeFormatLabel_Caption := LANGuaPreferences_TimeFormatLabel_Caption;
+ LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGuaPreferences_CustomTimeFormatEntry_Tooltip;
+ LANGPreferences_DateTimeFormatLabel_Caption := LANGuaPreferences_DateTimeFormatLabel_Caption;
+ LANGPreferences_QuickRenameSkipExtCheckBox := LANGuaPreferences_QuickRenameSkipExtCheckBox;
+ LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGuaPreferences_QuickRenameSkipExtCheckBox_Tooltip;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGuaPreferences_SortDirectoriesLikeFilesCheckBox;
+ LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGuaPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
+ LANGPreferences_QuickSearchLabel_Caption := LANGuaPreferences_QuickSearchLabel_Caption;
+ LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGuaPreferences_QuickSearchOptionMenu_Tooltip;
+ LANGPreferences_QuickSearch_Option1 := LANGuaPreferences_QuickSearch_Option1;
+ LANGPreferences_QuickSearch_Option2 := LANGuaPreferences_QuickSearch_Option2;
+ LANGPreferences_QuickSearch_Option3 := LANGuaPreferences_QuickSearch_Option3;
+ LANGPreferences_QuickSearch_Option4 := LANGuaPreferences_QuickSearch_Option4;
+ LANGPreferences_TempPathLabel_Caption := LANGuaPreferences_TempPathLabel_Caption;
+ LANGPreferences_VFSTempPathLabel_Caption := LANGuaPreferences_VFSTempPathLabel_Caption;
+ LANGPreferences_VFSTempPathEntry_Tooltip := LANGuaPreferences_VFSTempPathEntry_Tooltip;
end;
initialization