From 46b015423b05773a97722309dee447ee2b6d4faa Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Mon, 5 Oct 2009 22:31:50 +0200 Subject: Preparation for localization --- UConfig.pas | 6 ++--- UConnectionManager.pas | 14 +++++----- UGnome.pas | 20 +++++++------- ULocale.pas | 13 ++++++++- UMain.pas | 8 +++--- UQuickConnect.pas | 6 ++--- USymlink.pas | 2 +- translations/UTranslation_CHS.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_CHT.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_CZ.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_DE.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_EN.pas | 54 ++++++++++++++++++++++++++++++++++++- translations/UTranslation_ES.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_FR.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_HU.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_IT.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_PL.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_RU.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_SR.pas | 53 +++++++++++++++++++++++++++++++++++- translations/UTranslation_SV.pas | 57 +++++++++++++++++++++++++++++++++++++++ translations/UTranslation_UA.pas | 57 +++++++++++++++++++++++++++++++++++++++ 21 files changed, 829 insertions(+), 31 deletions(-) diff --git a/UConfig.pas b/UConfig.pas index 341f1ca..577d24d 100644 --- a/UConfig.pas +++ b/UConfig.pas @@ -25,8 +25,8 @@ uses Classes, ULocale; resourcestring ConstAppTitle = 'Tux Commander'; - ConstAboutVersion = '0.6.66-dev'; - ConstAboutBuildDate = '2009-10-04'; + ConstAboutVersion = '0.6.67-dev'; + ConstAboutBuildDate = '2009-10-05'; {$IFDEF FPC} {$INCLUDE fpcver.inc} @@ -1180,7 +1180,7 @@ begin if Pos('--LANG=', s) = 1 then ConfParamForceLang := Copy(ParamStr(i), 8, Length(s) - 7) else if (s = '--HELP') or (s = '-H') then begin WriteLn('Tux Commander v', ConstAboutVersion, ' [built ', ConstAboutBuildDate, ']'); - WriteLn('Copyright (c) 2008 Tomas Bzatek'); + WriteLn('Copyright (c) 2009 Tomas Bzatek'); WriteLn('Website: tuxcmd.sourceforge.net'); WriteLn; WriteLn('Usage: tuxcmd [options...]'); diff --git a/UConnectionManager.pas b/UConnectionManager.pas index e441b24..1744dbc 100644 --- a/UConnectionManager.pas +++ b/UConnectionManager.pas @@ -180,9 +180,9 @@ begin RemoveButton.UseUnderline := True; RemoveButton.Tooltip := LANGConnMgr_RemoveButtonTooltip; DuplicateButton := TGTKImageButton.Create(Self); - DuplicateButton.Caption := 'D_uplicate...'; + DuplicateButton.Caption := LANGFConnectionManager_DuplicateButton_Caption; DuplicateButton.UseUnderline := True; - DuplicateButton.Tooltip := 'Duplicate selected connection'; + DuplicateButton.Tooltip := LANGFConnectionManager_DuplicateButton_Tooltip; QuickConnectButton := TGTKImageButton.Create(Self); QuickConnectButton.SetFromStock('gtk-connect', isSmallToolbar); @@ -199,10 +199,10 @@ begin ButtonBox.AddControl(DuplicateButton); ButtonBox.AddControl(RemoveButton); - DoNotSavePasswordsCheckBox := TGTKCheckButton.CreateWithLabel(Self, '_Do not store passwords internally (but still use gnome-keyring)'); - DoNotSavePasswordsCheckBox.Tooltip := 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; - DoNotSynchronizeKeyringCheckBox := TGTKCheckButton.CreateWithLabel(Self, 'Do not synchronize passwords to gnome-_keyring'); - DoNotSynchronizeKeyringCheckBox.Tooltip := 'Don''t tell gnome-keyring to save any passwords.'; + DoNotSavePasswordsCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label); + DoNotSavePasswordsCheckBox.Tooltip := LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + DoNotSynchronizeKeyringCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label); + DoNotSynchronizeKeyringCheckBox.Tooltip := LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; ListViewTable.AddControlEx(0, 1, 3, 5, ListViewScrolledWindow, [taoExpand, taoFill], [taoExpand, taoFill], 0, 5); ListViewTable.AddControlEx(0, 6, 3, 1, DoNotSavePasswordsCheckBox, [taoExpand, taoFill], [taoShrink], 10, 0); @@ -228,7 +228,7 @@ begin RemoveMenuItem.StockIcon := 'gtk-remove'; RemoveMenuItem.OnClick := RemoveButtonClick; DuplicateMenuItem := TGTKMenuItem.CreateTyped(Self, itImageText); - DuplicateMenuItem.Caption := 'D_uplicate...'; + DuplicateMenuItem.Caption := LANGFConnectionManager_DuplicateMenuItem_Caption; DuplicateMenuItem.OnClick := DuplicateButtonClick; ItemsPopupMenu.Add(ConnectMenuItem); ItemsPopupMenu.Add(TGTKMenuItem.CreateTyped(Self, itSeparator)); diff --git a/UGnome.pas b/UGnome.pas index 71b8a37..d058f55 100644 --- a/UGnome.pas +++ b/UGnome.pas @@ -1442,12 +1442,12 @@ begin anon_box := gtk_vbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (vbox), anon_box, FALSE, FALSE, 0); - priv.choice_anon := gtk_radio_button_new_with_mnemonic (nil, 'Connect _anonymously'); + priv.choice_anon := gtk_radio_button_new_with_mnemonic (nil, PChar(LANGGtkMountOperation_ConnectAnonymously)); gtk_box_pack_start (GTK_BOX (anon_box), priv.choice_anon, FALSE, FALSE, 0); g_signal_connect (priv.choice_anon, 'toggled', G_CALLBACK (@pw_dialog_anonymous_toggled), @priv); group := gtk_radio_button_get_group (GTK_RADIO_BUTTON (priv.choice_anon)); - priv.choice_user := gtk_radio_button_new_with_mnemonic (group, 'Connect as u_ser:'); + priv.choice_user := gtk_radio_button_new_with_mnemonic (group, PChar(LANGGtkMountOperation_ConnectAsUser)); gtk_box_pack_start (GTK_BOX (anon_box), priv.choice_user, FALSE, FALSE, 0); g_signal_connect (priv.choice_user, 'toggled', G_CALLBACK (@pw_dialog_anonymous_toggled), @priv); end; @@ -1470,15 +1470,15 @@ begin Rows := 0; if (flags and VFS_ASK_PASSWORD_NEED_USERNAME) = VFS_ASK_PASSWORD_NEED_USERNAME then begin - priv.username_entry := table_add_entry (table, rows, '_Username:', default_user, @priv); + priv.username_entry := table_add_entry (table, rows, PChar(LANGGtkMountOperation_Username), default_user, @priv); Inc(Rows); end; if (flags and VFS_ASK_PASSWORD_NEED_DOMAIN) = VFS_ASK_PASSWORD_NEED_DOMAIN then begin - priv.domain_entry := table_add_entry (table, rows, '_Domain:', default_domain, @priv); + priv.domain_entry := table_add_entry (table, rows, PChar(LANGGtkMountOperation_Domain), default_domain, @priv); Inc(Rows); end; if (flags and VFS_ASK_PASSWORD_NEED_PASSWORD) = VFS_ASK_PASSWORD_NEED_PASSWORD then begin - priv.password_entry := table_add_entry (table, rows, '_Password:', nil, @priv); + priv.password_entry := table_add_entry (table, rows, PChar(LANGGtkMountOperation_Password), nil, @priv); if (default_password <> nil) and (strlen(default_password) > 0) then gtk_entry_set_text(priv.password_entry, default_password); // Inc(Rows); @@ -1498,21 +1498,21 @@ begin remember_box := gtk_vbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (vbox), remember_box, FALSE, FALSE, 0); - if (flags and VFS_ASK_PASSWORD_SAVING_SUPPORTED) = 0 then s := 'Do not save password' - else s := 'Forget password _immediately'; + if (flags and VFS_ASK_PASSWORD_SAVING_SUPPORTED) = 0 then s := PChar(LANGGtkMountOperation_DoNotSavePassword) + else s := PChar(LANGGtkMountOperation_ForgetPasswordImmediately); radio_forget := gtk_radio_button_new_with_mnemonic (nil, s); gtk_box_pack_start (GTK_BOX (remember_box), radio_forget, FALSE, FALSE, 0); group := gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio_forget)); // gnome-keyring only if (flags and VFS_ASK_PASSWORD_SAVING_SUPPORTED) = VFS_ASK_PASSWORD_SAVING_SUPPORTED then begin - radio_session := gtk_radio_button_new_with_mnemonic (group, 'Remember password until you _logout'); + radio_session := gtk_radio_button_new_with_mnemonic (group, PChar(LANGGtkMountOperation_RememberPasswordUntilYouLogout)); gtk_box_pack_start (GTK_BOX (remember_box), radio_session, FALSE, FALSE, 0); group := gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio_session)); end; - if (flags and VFS_ASK_PASSWORD_SAVING_SUPPORTED) = 0 then s := '_Save password in Connection Manager' - else s := 'Remember _forever'; + if (flags and VFS_ASK_PASSWORD_SAVING_SUPPORTED) = 0 then s := PChar(LANGGtkMountOperation_SavePasswordInConnectionManager) + else s := PChar(LANGGtkMountOperation_RememberForever); radio_remember := gtk_radio_button_new_with_mnemonic (group, s); gtk_box_pack_start (GTK_BOX (remember_box), radio_remember, FALSE, FALSE, 0); diff --git a/ULocale.pas b/ULocale.pas index 1586261..ab8f3bf 100644 --- a/ULocale.pas +++ b/ULocale.pas @@ -222,7 +222,18 @@ var LANGF2Button_Caption, LANGF3Button_Caption, LANGF4Button_Caption, LANGF5Butt LANGPreferences_QuickSearch_Option3, LANGPreferences_QuickSearch_Option4, LANGPreferences_TempPathLabel_Caption, LANGPreferences_VFSTempPathLabel_Caption, LANGPreferences_VFSTempPathEntry_Tooltip: string; - LANGPreferences_RightClickSelectCheckBox, LANGPreferences_RightClickSelectCheckBox_Tooltip: string; + LANGPreferences_RightClickSelectCheckBox, LANGPreferences_RightClickSelectCheckBox_Tooltip, + LANGGtkMountOperation_ConnectAnonymously, LANGGtkMountOperation_ConnectAsUser, LANGGtkMountOperation_Username, + LANGGtkMountOperation_Domain, LANGGtkMountOperation_Password, LANGGtkMountOperation_DoNotSavePassword, + LANGGtkMountOperation_ForgetPasswordImmediately, LANGGtkMountOperation_RememberPasswordUntilYouLogout, + LANGGtkMountOperation_SavePasswordInConnectionManager, LANGGtkMountOperation_RememberForever, LANGFSymlink_RelativePath, + LANGFConnectionManager_DuplicateButton_Caption, LANGFConnectionManager_DuplicateButton_Tooltip, + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label, LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip, + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label, LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip, + LANGFConnectionManager_DuplicateMenuItem_Caption, LANGFQuickConnect_Caption, LANGFQuickConnect_TitleLabel_Caption, + LANGFQuickConnect_ConnectToURILabel_Caption, LANGLinkToS, LANGOpenDirectoryInBackgroundTab, LANGTheActiveConnectionHasNotBeenSaved, + LANGTheArchiveIsEncryptedAndRequiresPassword: string; + diff --git a/UMain.pas b/UMain.pas index 80f22f2..a09b088 100644 --- a/UMain.pas +++ b/UMain.pas @@ -4248,7 +4248,7 @@ begin else s1 := IncludeTrailingPathDelimiter(Engine.Path) + PDataItem(AListView.Selected.Data)^.FName; if Engine.Path <> EngineOpposite.Path then s2 := IncludeTrailingPathDelimiter(EngineOpposite.Path) + PDataItem(AListView.Selected.Data)^.FName - else s2 := IncludeTrailingPathDelimiter(EngineOpposite.Path) + Format('Link to %s', [PDataItem(AListView.Selected.Data)^.FName]); + else s2 := IncludeTrailingPathDelimiter(EngineOpposite.Path) + Format(LANGLinkToS, [PDataItem(AListView.Selected.Data)^.FName]); if CreateSymlink(s1, s2, Engine) then begin DoRefresh(LeftPanel, True, True); @@ -4356,7 +4356,7 @@ begin // Open directory in background tab if not UpDir then begin Item := TGTKMenuItem.CreateTyped(Self, itImageText); - Item.Caption := 'Open directory in _background tab'; + Item.Caption := LANGOpenDirectoryInBackgroundTab; Item.Data := Pointer(3); Item.OnClick := FilePopupMenuItemClick; FilePopupMenu.Add(Item); @@ -6093,7 +6093,7 @@ begin if ConfWarnUnsavedConnection then begin DontShowAgain := False; - res := MessageBoxShowOnce(PGtkWindow(FWidget), PChar(Format('The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s', [Engine.GetPathURI])), LANGDontShowAgain, DontShowAgain, Buttons, mbWarning, mbNo, CancelButton); + res := MessageBoxShowOnce(PGtkWindow(FWidget), PChar(Format(LANGTheActiveConnectionHasNotBeenSaved, [Engine.GetPathURI])), LANGDontShowAgain, DontShowAgain, Buttons, mbWarning, mbNo, CancelButton); if DontShowAgain then begin ConfWarnUnsavedConnection := False; WriteMainGUISettings; @@ -6640,7 +6640,7 @@ begin if not (Engine is TVFSEngine) then Exit; try Password := nil; - if HandleVFSAskPasswordCallback(FWidget, PChar('The archive is encrypted and requires password'), + if HandleVFSAskPasswordCallback(FWidget, PChar(LANGTheArchiveIsEncryptedAndRequiresPassword), nil, nil, PChar(TVFSEngine(Engine).Password), VFS_ASK_PASSWORD_NEED_PASSWORD or VFS_ASK_PASSWORD_ARCHIVE_MODE, nil, @Password, nil, nil, nil) then diff --git a/UQuickConnect.pas b/UQuickConnect.pas index 2e22148..ca2824a 100644 --- a/UQuickConnect.pas +++ b/UQuickConnect.pas @@ -75,7 +75,7 @@ begin ConnectionManager := nil; AFConnectionManager := nil; SetDefaultSize(435, 200); - Caption := 'Quick connect'; + Caption := LANGFQuickConnect_Caption; Buttons := []; ShowSeparator := False; @@ -99,7 +99,7 @@ begin TitleEventBox := TGTKEventBox.Create(Self); TitleLabel := TGTKLabel.Create(Self); - TitleLabel.Caption := Format('%s', ['Quick connect']); + TitleLabel.Caption := Format('%s', [LANGFQuickConnect_TitleLabel_Caption]); TitleLabel.UseMarkup := True; TitleLabel.XAlign := 0; TitleLabel.XPadding := 0; @@ -127,7 +127,7 @@ begin PluginOptionMenu := TGTKOptionMenu.Create(Self); Label1 := TGTKLabel.Create(Self); - Label1.Caption := Format('%s', ['C_onnect to URI:']); + Label1.Caption := Format('%s', [LANGFQuickConnect_ConnectToURILabel_Caption]); Label1.FocusControl := URIComboBox.Entry; Label1.UseMarkup := True; Label1.UseUnderline := True; diff --git a/USymlink.pas b/USymlink.pas index 7ce6fda..b98c2ab 100644 --- a/USymlink.pas +++ b/USymlink.pas @@ -67,7 +67,7 @@ begin Label2.XPadding := 0; ToEntry := TGTKEntry.Create(Self); Label2.FocusControl := ToEntry; - RelativeCheckButton := TGTKCheckButton.CreateWithLabel(Self, '_Relative path'); + RelativeCheckButton := TGTKCheckButton.CreateWithLabel(Self, LANGFSymlink_RelativePath); RelativeCheckButton.OnToggled := RelativeCheckButtonToggled; Box.AddControlEx(Label1, False, False, 2); Box.AddControlEx(FromEntry, False, False, 0); diff --git a/translations/UTranslation_CHS.pas b/translations/UTranslation_CHS.pas index 925fdc9..6914268 100644 --- a/translations/UTranslation_CHS.pas +++ b/translations/UTranslation_CHS.pas @@ -670,6 +670,35 @@ const LANGchsF2Button_Caption = 'F2 - 重命名'; LANGchsPreferences_VFSTempPathLabel_Caption = '_VFS 临时文件:'; LANGchsPreferences_VFSTempPathEntry_Tooltip = 'VFS 子系统使用的临时文件路径, 例如. 当直接从压缩文档中打开文件时. 所有临时文件将在退出时删除.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGchsPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGchsPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGchsGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGchsGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGchsGtkMountOperation_Username = '_Username:'; + LANGchsGtkMountOperation_Domain = '_Domain:'; + LANGchsGtkMountOperation_Password = '_Password:'; + LANGchsGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGchsGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGchsGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGchsGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGchsGtkMountOperation_RememberForever = 'Remember _forever'; + LANGchsFSymlink_RelativePath = '_Relative path'; + LANGchsFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGchsFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGchsFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGchsFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGchsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGchsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGchsFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGchsFQuickConnect_Caption = 'Quick connect'; + LANGchsFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGchsFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGchsLinkToS = 'Link to %s'; + LANGchsOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGchsTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGchsTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1301,6 +1330,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGchsPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGchsPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGchsPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGchsPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGchsPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGchsGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGchsGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGchsGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGchsGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGchsGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGchsGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGchsGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGchsGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGchsGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGchsGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGchsFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGchsFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGchsFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGchsFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGchsFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGchsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGchsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGchsFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGchsFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGchsFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGchsFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGchsLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGchsOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGchsTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGchsTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_CHT.pas b/translations/UTranslation_CHT.pas index 4344bfc..aab0118 100644 --- a/translations/UTranslation_CHT.pas +++ b/translations/UTranslation_CHT.pas @@ -670,6 +670,35 @@ const LANGchtF2Button_Caption = 'F2 - ㏑'; LANGchtPreferences_VFSTempPathLabel_Caption = '_VFS 羬ゅン:'; LANGchtPreferences_VFSTempPathEntry_Tooltip = 'VFS ╰参ㄏノ羬ゅン隔畖, ㄒ. 讽钡眖溃罽ゅ郎いゴ秨ゅン. ┮Τ羬ゅン盢癶埃.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGchtPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGchtPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGchtGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGchtGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGchtGtkMountOperation_Username = '_Username:'; + LANGchtGtkMountOperation_Domain = '_Domain:'; + LANGchtGtkMountOperation_Password = '_Password:'; + LANGchtGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGchtGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGchtGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGchtGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGchtGtkMountOperation_RememberForever = 'Remember _forever'; + LANGchtFSymlink_RelativePath = '_Relative path'; + LANGchtFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGchtFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGchtFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGchtFQuickConnect_Caption = 'Quick connect'; + LANGchtFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGchtFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGchtLinkToS = 'Link to %s'; + LANGchtOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGchtTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGchtTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1301,6 +1330,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGchtPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGchtPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGchtPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGchtPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGchtPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGchtGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGchtGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGchtGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGchtGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGchtGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGchtGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGchtGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGchtGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGchtGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGchtGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGchtFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGchtFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGchtFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGchtFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGchtFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGchtFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGchtFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGchtLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGchtOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGchtTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGchtTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_CZ.pas b/translations/UTranslation_CZ.pas index 818e332..0fd4cca 100644 --- a/translations/UTranslation_CZ.pas +++ b/translations/UTranslation_CZ.pas @@ -663,6 +663,35 @@ const LANGcsF2Button_Caption = 'F2 - Přejmenovat'; 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.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGcsPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGcsPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGcsGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGcsGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGcsGtkMountOperation_Username = '_Username:'; + LANGcsGtkMountOperation_Domain = '_Domain:'; + LANGcsGtkMountOperation_Password = '_Password:'; + LANGcsGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGcsGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGcsGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGcsGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGcsGtkMountOperation_RememberForever = 'Remember _forever'; + LANGcsFSymlink_RelativePath = '_Relative path'; + LANGcsFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGcsFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGcsFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGcsFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGcsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGcsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGcsFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGcsFQuickConnect_Caption = 'Quick connect'; + LANGcsFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGcsFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGcsLinkToS = 'Link to %s'; + LANGcsOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGcsTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGcsTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) @@ -1295,6 +1324,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGcsPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGcsPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGcsPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGcsPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGcsPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGcsGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGcsGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGcsGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGcsGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGcsGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGcsGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGcsGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGcsGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGcsGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGcsGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGcsFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGcsFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGcsFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGcsFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGcsFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGcsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGcsFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGcsFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGcsFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGcsFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGcsFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGcsLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGcsOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGcsTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGcsTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_DE.pas b/translations/UTranslation_DE.pas index 5237a27..b625b0f 100644 --- a/translations/UTranslation_DE.pas +++ b/translations/UTranslation_DE.pas @@ -642,6 +642,35 @@ const LANGdeF2Button_Caption = 'F2 - Umbenennen'; LANGdePreferences_VFSTempPathLabel_Caption = '_VFS temporäre Dateien:'; LANGdePreferences_VFSTempPathEntry_Tooltip = 'Ort der temporären Dateien, die vom VFS-subsystem benutzt werden, z.B. beim Öffnen direkt aus einem Archiv. Alle temporären Dateien werden am Ende gelöscht.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGdePreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGdePreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGdeGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGdeGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGdeGtkMountOperation_Username = '_Username:'; + LANGdeGtkMountOperation_Domain = '_Domain:'; + LANGdeGtkMountOperation_Password = '_Password:'; + LANGdeGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGdeGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGdeGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGdeGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGdeGtkMountOperation_RememberForever = 'Remember _forever'; + LANGdeFSymlink_RelativePath = '_Relative path'; + LANGdeFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGdeFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGdeFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGdeFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGdeFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGdeFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGdeFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGdeFQuickConnect_Caption = 'Quick connect'; + LANGdeFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGdeFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGdeLinkToS = 'Link to %s'; + LANGdeOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGdeTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGdeTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1274,6 +1303,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGdePreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGdePreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGdePreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGdePreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGdePreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGdeGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGdeGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGdeGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGdeGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGdeGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGdeGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGdeGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGdeGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGdeGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGdeGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGdeFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGdeFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGdeFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGdeFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGdeFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGdeFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGdeFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGdeFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGdeFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGdeFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGdeFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGdeLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGdeOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGdeTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGdeTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_EN.pas b/translations/UTranslation_EN.pas index 3b69483..1a338b1 100644 --- a/translations/UTranslation_EN.pas +++ b/translations/UTranslation_EN.pas @@ -673,9 +673,36 @@ const LANGenF2Button_Caption = 'F2 - Rename'; 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.'; - (*************** STRINGS ADDED TO v0.6.55 **********************************************************************************) + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) LANGenPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; LANGenPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGenGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGenGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGenGtkMountOperation_Username = '_Username:'; + LANGenGtkMountOperation_Domain = '_Domain:'; + LANGenGtkMountOperation_Password = '_Password:'; + LANGenGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGenGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGenGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGenGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGenGtkMountOperation_RememberForever = 'Remember _forever'; + LANGenFSymlink_RelativePath = '_Relative path'; + LANGenFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGenFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGenFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGenFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGenFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGenFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGenFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGenFQuickConnect_Caption = 'Quick connect'; + LANGenFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGenFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGenLinkToS = 'Link to %s'; + LANGenOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGenTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGenTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + + (********************************************************************************************************************************) procedure SetTranslation; @@ -1310,6 +1337,31 @@ begin LANGPreferences_RightClickSelectCheckBox := LANGenPreferences_RightClickSelectCheckBox; LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGenPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGenGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGenGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGenGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGenGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGenGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGenGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGenGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGenGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGenGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGenGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGenFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGenFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGenFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGenFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGenFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGenFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGenFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGenFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGenFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGenFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGenFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGenLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGenOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGenTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGenTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_ES.pas b/translations/UTranslation_ES.pas index b3018c5..dc419b8 100644 --- a/translations/UTranslation_ES.pas +++ b/translations/UTranslation_ES.pas @@ -662,6 +662,35 @@ const LANGesF2Button_Caption = 'F2 - Renombrar'; LANGesPreferences_VFSTempPathLabel_Caption = 'Archivos temporales _VFS:'; LANGesPreferences_VFSTempPathEntry_Tooltip = 'Ruta para los archivos temporales utilizados por el subsistema VFS, por ejemplo cuando se abren directamente los archivos que contiene un archivo comprimido. Todos los archivos temporales son eliminados cuando se cierra la aplicación.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGesPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGesPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGesGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGesGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGesGtkMountOperation_Username = '_Username:'; + LANGesGtkMountOperation_Domain = '_Domain:'; + LANGesGtkMountOperation_Password = '_Password:'; + LANGesGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGesGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGesGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGesGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGesGtkMountOperation_RememberForever = 'Remember _forever'; + LANGesFSymlink_RelativePath = '_Relative path'; + LANGesFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGesFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGesFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGesFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGesFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGesFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGesFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGesFQuickConnect_Caption = 'Quick connect'; + LANGesFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGesFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGesLinkToS = 'Link to %s'; + LANGesOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGesTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGesTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1293,6 +1322,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGesPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGesPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGesPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGesPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGesPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGesGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGesGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGesGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGesGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGesGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGesGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGesGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGesGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGesGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGesGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGesFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGesFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGesFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGesFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGesFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGesFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGesFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGesFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGesFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGesFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGesFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGesLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGesOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGesTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGesTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_FR.pas b/translations/UTranslation_FR.pas index 35e4b3f..fd301f2 100644 --- a/translations/UTranslation_FR.pas +++ b/translations/UTranslation_FR.pas @@ -663,6 +663,35 @@ const LANGfrF2Button_Caption = 'F2 - Renommer'; 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.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGfrPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGfrPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGfrGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGfrGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGfrGtkMountOperation_Username = '_Username:'; + LANGfrGtkMountOperation_Domain = '_Domain:'; + LANGfrGtkMountOperation_Password = '_Password:'; + LANGfrGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGfrGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGfrGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGfrGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGfrGtkMountOperation_RememberForever = 'Remember _forever'; + LANGfrFSymlink_RelativePath = '_Relative path'; + LANGfrFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGfrFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGfrFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGfrFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGfrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGfrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGfrFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGfrFQuickConnect_Caption = 'Quick connect'; + LANGfrFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGfrFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGfrLinkToS = 'Link to %s'; + LANGfrOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGfrTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGfrTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) @@ -1295,6 +1324,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGfrPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGfrPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGfrPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGfrPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGfrPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGfrGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGfrGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGfrGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGfrGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGfrGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGfrGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGfrGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGfrGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGfrGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGfrGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGfrFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGfrFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGfrFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGfrFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGfrFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGfrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGfrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGfrFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGfrFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGfrFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGfrFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGfrLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGfrOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGfrTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGfrTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_HU.pas b/translations/UTranslation_HU.pas index 3240d64..252d485 100644 --- a/translations/UTranslation_HU.pas +++ b/translations/UTranslation_HU.pas @@ -665,6 +665,35 @@ const LANGhuF2Button_Caption = 'F2 - Átnevezés'; LANGhuPreferences_VFSTempPathLabel_Caption = '_VFS ideiglenes fájlok:'; LANGhuPreferences_VFSTempPathEntry_Tooltip = 'ideiglenes fájlok tárolási helye a VFS fájlrendszerben, süritett fájlok azonnali megnyitásához. Kilépéskor minden átmeneti f´jl törlödik.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGhuPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGhuPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGhuGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGhuGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGhuGtkMountOperation_Username = '_Username:'; + LANGhuGtkMountOperation_Domain = '_Domain:'; + LANGhuGtkMountOperation_Password = '_Password:'; + LANGhuGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGhuGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGhuGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGhuGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGhuGtkMountOperation_RememberForever = 'Remember _forever'; + LANGhuFSymlink_RelativePath = '_Relative path'; + LANGhuFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGhuFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGhuFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGhuFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGhuFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGhuFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGhuFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGhuFQuickConnect_Caption = 'Quick connect'; + LANGhuFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGhuFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGhuLinkToS = 'Link to %s'; + LANGhuOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGhuTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGhuTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) @@ -1297,6 +1326,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGhuPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGhuPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGhuPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGhuPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGhuPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGhuGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGhuGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGhuGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGhuGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGhuGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGhuGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGhuGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGhuGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGhuGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGhuGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGhuFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGhuFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGhuFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGhuFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGhuFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGhuFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGhuFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGhuFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGhuFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGhuFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGhuFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGhuLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGhuOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGhuTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGhuTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_IT.pas b/translations/UTranslation_IT.pas index d3c2b9b..c4f13d3 100644 --- a/translations/UTranslation_IT.pas +++ b/translations/UTranslation_IT.pas @@ -663,6 +663,35 @@ const LANGitF2Button_Caption = 'F2 - Rinomina'; 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.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGitPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGitPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGitGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGitGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGitGtkMountOperation_Username = '_Username:'; + LANGitGtkMountOperation_Domain = '_Domain:'; + LANGitGtkMountOperation_Password = '_Password:'; + LANGitGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGitGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGitGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGitGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGitGtkMountOperation_RememberForever = 'Remember _forever'; + LANGitFSymlink_RelativePath = '_Relative path'; + LANGitFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGitFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGitFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGitFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGitFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGitFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGitFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGitFQuickConnect_Caption = 'Quick connect'; + LANGitFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGitFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGitLinkToS = 'Link to %s'; + LANGitOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGitTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGitTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) @@ -1295,6 +1324,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGitPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGitPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGitPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGitPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGitPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGitGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGitGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGitGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGitGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGitGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGitGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGitGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGitGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGitGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGitGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGitFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGitFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGitFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGitFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGitFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGitFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGitFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGitFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGitFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGitFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGitFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGitLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGitOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGitTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGitTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_PL.pas b/translations/UTranslation_PL.pas index dc83420..8e2243e 100644 --- a/translations/UTranslation_PL.pas +++ b/translations/UTranslation_PL.pas @@ -590,6 +590,35 @@ const LANGplF2Button_Caption = 'F2 - Zmień nazwę'; LANGplPreferences_VFSTempPathLabel_Caption = 'Pliki tymczasowe _VFS:'; LANGplPreferences_VFSTempPathEntry_Tooltip = 'Położenie tymczsowych plików używanych przez podsystem VFS np. przy otwieraniu plików bezpośrednio z archiwów. Pliki są usuwane przy wyjściu.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGplPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGplPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGplGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGplGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGplGtkMountOperation_Username = '_Username:'; + LANGplGtkMountOperation_Domain = '_Domain:'; + LANGplGtkMountOperation_Password = '_Password:'; + LANGplGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGplGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGplGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGplGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGplGtkMountOperation_RememberForever = 'Remember _forever'; + LANGplFSymlink_RelativePath = '_Relative path'; + LANGplFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGplFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGplFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGplFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGplFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGplFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGplFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGplFQuickConnect_Caption = 'Quick connect'; + LANGplFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGplFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGplLinkToS = 'Link to %s'; + LANGplOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGplTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGplTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************) procedure SetTranslation; @@ -1149,6 +1178,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGplPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGplPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGplPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGplPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGplPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGplGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGplGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGplGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGplGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGplGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGplGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGplGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGplGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGplGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGplGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGplFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGplFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGplFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGplFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGplFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGplFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGplFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGplFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGplFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGplFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGplFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGplLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGplOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGplTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGplTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_RU.pas b/translations/UTranslation_RU.pas index d31d4a9..3800651 100644 --- a/translations/UTranslation_RU.pas +++ b/translations/UTranslation_RU.pas @@ -669,6 +669,35 @@ const LANGruF2Button_Caption = 'F2 - Переименов'; LANGruPreferences_VFSTempPathLabel_Caption = 'Временные файлы _VFS:'; LANGruPreferences_VFSTempPathEntry_Tooltip = 'Путь к временным файлам системы VFS, например при открытии архивов. При выходе все временные файлы удаляются.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGruPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGruPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGruGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGruGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGruGtkMountOperation_Username = '_Username:'; + LANGruGtkMountOperation_Domain = '_Domain:'; + LANGruGtkMountOperation_Password = '_Password:'; + LANGruGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGruGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGruGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGruGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGruGtkMountOperation_RememberForever = 'Remember _forever'; + LANGruFSymlink_RelativePath = '_Relative path'; + LANGruFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGruFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGruFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGruFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGruFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGruFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGruFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGruFQuickConnect_Caption = 'Quick connect'; + LANGruFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGruFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGruLinkToS = 'Link to %s'; + LANGruOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGruTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGruTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1300,6 +1329,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGruPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGruPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGruPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGruPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGruPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGruGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGruGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGruGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGruGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGruGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGruGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGruGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGruGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGruGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGruGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGruFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGruFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGruFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGruFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGruFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGruFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGruFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGruFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGruFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGruFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGruFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGruLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGruOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGruTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGruTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_SR.pas b/translations/UTranslation_SR.pas index 3232002..fdb1140 100644 --- a/translations/UTranslation_SR.pas +++ b/translations/UTranslation_SR.pas @@ -670,9 +670,35 @@ const LANGsrF2Button_Caption = 'F2 - Преименуј'; LANGsrPreferences_VFSTempPathLabel_Caption = '_VFS привр. фајлови:'; LANGsrPreferences_VFSTempPathEntry_Tooltip = 'Локација привремених фајлова за потребе VFS система, нпр. када отварате фајлове директно из архива. Они се бришу при изласку из програма.'; - (*************** STRINGS ADDED TO v0.6.55 **********************************************************************************) + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) LANGsrPreferences_RightClickSelectCheckBox = 'Избор десним тастером миша'; LANGsrPreferences_RightClickSelectCheckBox_Tooltip = 'Користи десни тастер миша за обележавање, као у mc.'; + LANGsrGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGsrGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGsrGtkMountOperation_Username = '_Username:'; + LANGsrGtkMountOperation_Domain = '_Domain:'; + LANGsrGtkMountOperation_Password = '_Password:'; + LANGsrGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGsrGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGsrGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGsrGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGsrGtkMountOperation_RememberForever = 'Remember _forever'; + LANGsrFSymlink_RelativePath = '_Relative path'; + LANGsrFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGsrFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGsrFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGsrFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGsrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGsrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGsrFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGsrFQuickConnect_Caption = 'Quick connect'; + LANGsrFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGsrFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGsrLinkToS = 'Link to %s'; + LANGsrOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGsrTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGsrTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1307,6 +1333,31 @@ begin LANGPreferences_RightClickSelectCheckBox := LANGsrPreferences_RightClickSelectCheckBox; LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGsrPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGsrGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGsrGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGsrGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGsrGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGsrGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGsrGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGsrGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGsrGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGsrGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGsrGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGsrFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGsrFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGsrFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGsrFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGsrFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGsrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGsrFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGsrFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGsrFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGsrFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGsrFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGsrLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGsrOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGsrTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGsrTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_SV.pas b/translations/UTranslation_SV.pas index a51f293..ea484bb 100644 --- a/translations/UTranslation_SV.pas +++ b/translations/UTranslation_SV.pas @@ -662,6 +662,35 @@ const LANGsvF2Button_Caption = 'F2 - Byt namn'; 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.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGsvPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGsvPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGsvGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGsvGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGsvGtkMountOperation_Username = '_Username:'; + LANGsvGtkMountOperation_Domain = '_Domain:'; + LANGsvGtkMountOperation_Password = '_Password:'; + LANGsvGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGsvGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGsvGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGsvGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGsvGtkMountOperation_RememberForever = 'Remember _forever'; + LANGsvFSymlink_RelativePath = '_Relative path'; + LANGsvFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGsvFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGsvFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGsvFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGsvFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGsvFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGsvFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGsvFQuickConnect_Caption = 'Quick connect'; + LANGsvFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGsvFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGsvLinkToS = 'Link to %s'; + LANGsvOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGsvTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGsvTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; begin @@ -1292,6 +1321,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGsvPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGsvPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGsvPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGsvPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGsvPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGsvGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGsvGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGsvGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGsvGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGsvGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGsvGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGsvGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGsvGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGsvGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGsvGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGsvFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGsvFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGsvFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGsvFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGsvFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGsvFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGsvFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGsvFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGsvFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGsvFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGsvFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGsvLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGsvOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGsvTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGsvTheArchiveIsEncryptedAndRequiresPassword; end; initialization diff --git a/translations/UTranslation_UA.pas b/translations/UTranslation_UA.pas index 5e83420..434de72 100644 --- a/translations/UTranslation_UA.pas +++ b/translations/UTranslation_UA.pas @@ -674,6 +674,35 @@ const LANGuaF2Button_Caption = 'F2 - Перейменувати'; LANGuaPreferences_VFSTempPathEntry_Tooltip = 'Розташування тимчасових файлів, використовується підсистемою VFS, наприклад при відкритті файлів безпосередньо з архівів.' + ' Усі тимчасові файли витираються на виході.'; + (*************** STRINGS ADDED TO v0.6.67 **********************************************************************************) + LANGuaPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode'; + LANGuaPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.'; + LANGuaGtkMountOperation_ConnectAnonymously = 'Connect _anonymously'; + LANGuaGtkMountOperation_ConnectAsUser = 'Connect as u_ser:'; + LANGuaGtkMountOperation_Username = '_Username:'; + LANGuaGtkMountOperation_Domain = '_Domain:'; + LANGuaGtkMountOperation_Password = '_Password:'; + LANGuaGtkMountOperation_DoNotSavePassword = 'Do not save password'; + LANGuaGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately'; + LANGuaGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout'; + LANGuaGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager'; + LANGuaGtkMountOperation_RememberForever = 'Remember _forever'; + LANGuaFSymlink_RelativePath = '_Relative path'; + LANGuaFConnectionManager_DuplicateButton_Caption = 'D_uplicate...'; + LANGuaFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection'; + LANGuaFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)'; + LANGuaFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.'; + LANGuaFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring'; + LANGuaFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.'; + LANGuaFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...'; + LANGuaFQuickConnect_Caption = 'Quick connect'; + LANGuaFQuickConnect_TitleLabel_Caption = 'Quick connect'; + LANGuaFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:'; + LANGuaLinkToS = 'Link to %s'; + LANGuaOpenDirectoryInBackgroundTab = 'Open directory in _background tab'; + LANGuaTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s'; + LANGuaTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password'; + (********************************************************************************************************************************) procedure SetTranslation; @@ -1305,6 +1334,34 @@ begin LANGPreferences_TempPathLabel_Caption := LANGuaPreferences_TempPathLabel_Caption; LANGPreferences_VFSTempPathLabel_Caption := LANGuaPreferences_VFSTempPathLabel_Caption; LANGPreferences_VFSTempPathEntry_Tooltip := LANGuaPreferences_VFSTempPathEntry_Tooltip; + + LANGPreferences_RightClickSelectCheckBox := LANGuaPreferences_RightClickSelectCheckBox; + LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGuaPreferences_RightClickSelectCheckBox_Tooltip; + LANGGtkMountOperation_ConnectAnonymously := LANGuaGtkMountOperation_ConnectAnonymously; + LANGGtkMountOperation_ConnectAsUser := LANGuaGtkMountOperation_ConnectAsUser; + LANGGtkMountOperation_Username := LANGuaGtkMountOperation_Username; + LANGGtkMountOperation_Domain := LANGuaGtkMountOperation_Domain; + LANGGtkMountOperation_Password := LANGuaGtkMountOperation_Password; + LANGGtkMountOperation_DoNotSavePassword := LANGuaGtkMountOperation_DoNotSavePassword; + LANGGtkMountOperation_ForgetPasswordImmediately := LANGuaGtkMountOperation_ForgetPasswordImmediately; + LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGuaGtkMountOperation_RememberPasswordUntilYouLogout; + LANGGtkMountOperation_SavePasswordInConnectionManager := LANGuaGtkMountOperation_SavePasswordInConnectionManager; + LANGGtkMountOperation_RememberForever := LANGuaGtkMountOperation_RememberForever; + LANGFSymlink_RelativePath := LANGuaFSymlink_RelativePath; + LANGFConnectionManager_DuplicateButton_Caption := LANGuaFConnectionManager_DuplicateButton_Caption; + LANGFConnectionManager_DuplicateButton_Tooltip := LANGuaFConnectionManager_DuplicateButton_Tooltip; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGuaFConnectionManager_DoNotSavePasswordsCheckBox_Label; + LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGuaFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGuaFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label; + LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGuaFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip; + LANGFConnectionManager_DuplicateMenuItem_Caption := LANGuaFConnectionManager_DuplicateMenuItem_Caption; + LANGFQuickConnect_Caption := LANGuaFQuickConnect_Caption; + LANGFQuickConnect_TitleLabel_Caption := LANGuaFQuickConnect_TitleLabel_Caption; + LANGFQuickConnect_ConnectToURILabel_Caption := LANGuaFQuickConnect_ConnectToURILabel_Caption; + LANGLinkToS := LANGuaLinkToS; + LANGOpenDirectoryInBackgroundTab := LANGuaOpenDirectoryInBackgroundTab; + LANGTheActiveConnectionHasNotBeenSaved := LANGuaTheActiveConnectionHasNotBeenSaved; + LANGTheArchiveIsEncryptedAndRequiresPassword := LANGuaTheArchiveIsEncryptedAndRequiresPassword; end; initialization -- cgit v1.2.3